diff --git a/.gitignore b/.gitignore index 30bdff2..6db9f7d 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,9 @@ *.tfstate *.tfstate.* +# Terraform lockfiles +*.terraform.lock.hcl + # Crash log files crash.log crash.*.log @@ -36,4 +39,6 @@ override.tf.json .terraformrc terraform.rc +# Local scratch / retired assets, not meant for version control +junkyard/ diff --git a/.idea/templateLanguages.xml b/.idea/templateLanguages.xml index 8a69eb3..61078d0 100644 --- a/.idea/templateLanguages.xml +++ b/.idea/templateLanguages.xml @@ -1,8 +1,9 @@ - + + \ No newline at end of file diff --git a/.idea/terraform.xml b/.idea/terraform.xml index d65c12f..7fa9048 100644 --- a/.idea/terraform.xml +++ b/.idea/terraform.xml @@ -2,5 +2,10 @@ \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml index 35eb1dd..05b0212 100644 --- a/.idea/vcs.xml +++ b/.idea/vcs.xml @@ -2,5 +2,6 @@ + \ No newline at end of file diff --git a/.kilocodemodes.yaml b/.kilocodemodes.yaml new file mode 100644 index 0000000..d738501 --- /dev/null +++ b/.kilocodemodes.yaml @@ -0,0 +1,143 @@ +customModes: + - slug: service-deployment + name: "🚀 Service Deployment" + description: Deploy new services to the mars ship infrastructure using quadlets/modules + roleDefinition: | + You are an expert DevOps engineer tasked with deploying new services to the mars ship infrastructure. Your goal is to create new quadlet modules for services and add them to the mars ship configuration. You specialize in adapting Docker Compose deployments to the quadlet-app module structure, integrating with existing services, and following established infrastructure patterns. + groups: + - read + - edit + - command + - browser + - mcp + whenToUse: | + When you want to deploy a new service to the mars ship infrastructure and need to: + - Create a new quadlet module for the service + - Adapt Docker Compose configurations to the quadlet-app structure + - Integrate with existing services (postgres, valkey, minio, rabbitmq) + - Add the service to the mars ship configuration + customInstructions: | + **Initial Question:** + Always start by asking: "Please provide the OCI container image/tag that you want to deploy to the mars ship." + + **Deployment Process:** + + 1. **Research the Service Deployment:** + - Research how the service is typically deployed using Docker Compose + - Look for official documentation and Docker Compose examples + - Identify required environment variables, ports, volumes, and health checks + - Determine dependencies on other services + + 2. **Analyze Existing Mars Ship Services:** + - Review available services for dependencies: + - **postgres**: Database service (port 5432) + - **valkey**: Redis-compatible key-value store (port 6379) + - **minio**: S3-compatible object storage (ports 9000, 9001) + - **rabbitmq**: Message queue (port 5672) + - **oci-proxy**: Docker socket proxy (port 2375) + - Understand existing environment variable patterns + - Follow established port allocation and volume mounting patterns + + 3. **Create the Quadlet Module:** + - Create directory: `quadlets/modules/[service-name]/main.tf` + - Use the quadlet-app base module with this structure: + ```hcl + variable "wait_on" { + type = any + description = "Resources to wait on" + default = true + } + + variable "server_ip" { + type = string + } + + variable "ssh_private_key_path" { + type = string + } + + variable "server_domain" { + type = string + } + + module "[service-name]" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "[service-name]" + image = "[oci-image-from-user]" + ports = ["port:port"] + volumes = ["/host/path:/container/path:Z"] + environment = { + ENV_VAR = "value" + } + command = ["command", "args"] + healthcmd = "health-check-command" + + haproxy_services = [ + { + name = "service-name" + domain = "service-name.${var.server_domain}" + port = "port" + host = "127.0.0.1" + tls = false + } + ] + } + + output "app_urls" { + value = module.[service-name].app_urls + } + + output "installed" { + value = true + depends_on = [module.[service-name].installed] + } + ``` + + 4. **Configure Service Integration:** + - **Database Integration**: Use postgres connection: `postgres:5432` + - **Redis/Valkey Integration**: Use valkey connection: `valkey:6379` + - **MinIO/S3 Integration**: Use minio connection: `minio:9000` + - **RabbitMQ Integration**: Use rabbitmq connection: `rabbitmq:5672` + + 5. **Add to Mars Ship Configuration:** + - Add the module to `ships/mars/main.tf`: + ```hcl + module "[service-name]" { + wait_on = null_resource.is_up + source = "../../quadlets/modules/[service-name]" + server_ip = var.server + server_domain = var.server_domain + ssh_private_key_path = var.ssh_private_key_path + } + ``` + - Place appropriately based on dependencies (use `module.oci-proxy.installed` if needed) + + 6. **Handle Special Configurations:** + - **For passwords**: Use `random_password` resource like postgres/minio modules + - **For multiple ports**: Configure all ports and create separate HAProxy entries + - **For volumes**: Use pattern `/opt/storage/data/[service-name]:/container/path:Z` + + 7. **Ask Follow-up Questions When:** + - Service requires multiple containers (infrastructure only supports single containers) + - Service needs unusual configurations not seen in existing modules + - Dependencies on existing services are unclear + - Special security configurations are required + + 8. **Final Implementation:** + - Create the complete module file + - Add the module to mars ship configuration + - Provide exact files that need to be created/modified + - Include necessary deployment commands + + **Key Points to Remember:** + - All services use the `quadlet-app` base module + - Services are deployed as single containers (no multi-container docker-compose) + - Use existing services for dependencies + - Follow established patterns for ports, volumes, and environment variables + - Always include HAProxy configuration for web services + - Use the mars ship domain for service URLs \ No newline at end of file diff --git a/bridge/.idea/workspace.xml b/bridge/.idea/workspace.xml new file mode 100644 index 0000000..8165e1c --- /dev/null +++ b/bridge/.idea/workspace.xml @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + { + "associatedIndex": 1 +} + + + + + + + + + + + + + + + 1731596143702 + + + + + + \ No newline at end of file diff --git a/infra/clusters/app-365zon/.terraform.lock.hcl b/infra/clusters/app-365zon/.terraform.lock.hcl index 318f927..551dec1 100644 --- a/infra/clusters/app-365zon/.terraform.lock.hcl +++ b/infra/clusters/app-365zon/.terraform.lock.hcl @@ -2,22 +2,22 @@ # Manual edits may be lost in future updates. provider "registry.terraform.io/aminueza/minio" { - version = "2.5.1" - constraints = "~> 2.5.0" + version = "3.3.0" + constraints = "~> 3.3.0" hashes = [ - "h1:03gfmXf78G9h9XCHwavPwAwCjg1xmQIp4e5aAv6xIbI=", - "zh:0710a1fcd8e3501237990344160b0193860c2e643e73c728bf832e3d3fde971a", - "zh:0b2f25fbb59d056299faec7fb09012ef0545bd25e7ffa55a04a5c10c28908713", - "zh:0e0179fe12c855bcf5dbcf6858373eaa6e9dd790010096a3fcc667a23224388d", - "zh:23f6118cefb2fae443de98197490a9ba56fa51f1e324d1811709e0fdfc22ed7d", - "zh:34875cbaf07fbed8b8c639f38146f19188e57fc2eac4cdeac638b3d675b82ad4", - "zh:5b0fc4934533557af0001630801e9e637ab0e1588fd086f0cd04a52f4a13474f", - "zh:5d8eda5611ce4017688694e566c00609508a2c3a0e9aa587f6a58dcd1cb9846c", - "zh:70855ab6327a1b79b0619d0ed3538513f98fdfadae6fe60e986dbbf2891151f8", - "zh:7330d66c56a67a4c36f2fc2f1d7042503f5b4d0ec66a9bbe2b72920fb56b85de", - "zh:764597f7be92426cd63f7ae82d2845a1f2677d2b86921f19facf93fdbb80f503", - "zh:7dd947c72366377a16adc7bf0c0d09c32ade09dcedbcbf411da057ca970fb9e8", - "zh:9db57839cdc1d667271d5589ca4d9e791b665c0248e37c9ccdc79c0cef39aaed", + "h1:apkVsmgFVWd1jpCMnPR1Kd8WJB2UkYRiS2kc1Meefz8=", + "zh:0c0ac1602465eaeb7045410a8ad22ee6eb82233f7bfda78bb07c58d3697bf62b", + "zh:26a097f7523b222bb7808b76ec9fdac8c5974e440dc2438d16ef8fa4562bf297", + "zh:47ade5b7a7ce2755291e0e4ae2125298bef682190a9917a4ca384edb23a338f4", + "zh:74769c5e1615b3fc930b9acc2f966dd7c053c31146d1eca19666bee8a7512088", + "zh:8b4a72b05ce50f41b6b1c8f2cd692509c0814f2d5fb4869a98e42b9eb22430f3", + "zh:8bcb1c844ab14b780c4547834d4f7755e4f2ac643f8061e8cfaa98becc6a78b5", + "zh:8e44bae37b1f984908f427d64154c090136b6e8b8e0c1229df7b03945e59509d", + "zh:974bba8e806aa3265ddc558657f93b0465877a8687f691d366dd34a90e059f97", + "zh:a5d029fb41b6e0f1f4d742e326918e725f3ebd57cb5170fdb39f82a26ce52d1c", + "zh:a7a405574406ff525105880ca7b86614b5bced701f74b7e748d8e2976b5880cd", + "zh:f83cf18fd194129ca06dfa3fc5bc8b951df71fa04cdbcb0bf651277f06c17d5f", + "zh:fa2eefadf213ad934c75bc1679408ad4b765ff86853b473f837ad83b68a44c77", ] } @@ -39,78 +39,183 @@ provider "registry.terraform.io/argoproj-labs/argocd" { ] } -provider "registry.terraform.io/hashicorp/helm" { - version = "2.16.1" +provider "registry.terraform.io/hashicorp/external" { + version = "2.3.5" hashes = [ - "h1:TerRBdq69SxIWg3ET2VE0bcP0BYRIWZOp1QxXj/14Fk=", - "zh:0003f6719a32aee9afaeeb001687fc0cfc8c2d5f54861298cf1dc5711f3b4e65", - "zh:16cd5bfee09e7bb081b8b4470f31a9af508e52220fd97fd81c6dda725d9422fe", - "zh:51817de8fdc2c2e36785f23fbf4ec022111bd1cf7679498c16ad0ad7471c16db", - "zh:51b95829b2873be40a65809294bffe349e40cfccc3ff6fee0f471d01770e0ebd", - "zh:56b158dde897c47e1460181fc472c3e920aa23db40579fdc2aad333c1456d2dd", - "zh:916641d26c386959eb982e680028aa677b787687ef7c1283241e45620bc8df50", - "zh:aec15ca8605babba77b283f2ca35daca53e006d567e1c3a3daf50497035b820b", - "zh:c2cecf710b87c8f3a4d186da2ea12cf08041f97ae0c6db82649720d6ed929d65", - "zh:dbdd96f17aea25c7db2d516ab8172a5e683c6686c72a1a44173d2fe96319be39", - "zh:de11e180368434a796b1ab6f20fde7554dc74f7800e063b8e4c8ec3a86d0be63", + "h1:smKSos4zs57pJjQrNuvGBpSWth2el9SgePPbPHo0aps=", + "zh:6e89509d056091266532fa64de8c06950010498adf9070bf6ff85bc485a82562", + "zh:78d5eefdd9e494defcb3c68d282b8f96630502cac21d1ea161f53cfe9bb483b3", + "zh:86868aec05b58dc0aa1904646a2c26b9367d69b890c9ad70c33c0d3aa7b1485a", + "zh:a2ce38fda83a62fa5fb5a70e6ca8453b168575feb3459fa39803f6f40bd42154", + "zh:a6c72798f4a9a36d1d1433c0372006cc9b904e8cfd60a2ae03ac5b7d2abd2398", + "zh:a8a3141d2fc71c86bf7f3c13b0b3be8a1b0f0144a47572a15af4dfafc051e28a", + "zh:aa20a1242eb97445ad26ebcfb9babf2cd675bdb81cac5f989268ebefa4ef278c", + "zh:b58a22445fb8804e933dcf835ab06c29a0f33148dce61316814783ee7f4e4332", + "zh:cb5626a661ee761e0576defb2a2d75230a3244799d380864f3089c66e99d0dcc", + "zh:d1acb00d20445f682c4e705c965e5220530209c95609194c2dc39324f3d4fcce", + "zh:d91a254ba77b69a29d8eae8ed0e9367cbf0ea6ac1a85b58e190f8cb096a40871", + "zh:f6592327673c9f85cdb6f20336faef240abae7621b834f189c4a62276ea5db41", + ] +} + +provider "registry.terraform.io/hashicorp/helm" { + version = "3.0.2" + constraints = ">= 2.0.0" + hashes = [ + "h1:+tHGl509bhyUrvvj9GQTBsdK+ImHJnRuo6ppDZPavqY=", + "zh:2778de76c7dfb2e85c75fe6de3c11172a25551ed499bfb9e9f940a5be81167b0", + "zh:3b4c436a41e4fbae5f152852a9bd5c97db4460af384e26977477a40adf036690", + "zh:617a372f5bb2288f3faf5fd4c878a68bf08541cf418a3dbb8a19bc41ad4a0bf2", + "zh:84de431479548c96cb61c495278e320f361e80ab4f8835a5425ece24a9b6d310", + "zh:8b4cf5f81d10214e5e1857d96cff60a382a22b9caded7f5d7a92e5537fc166c1", + "zh:baeb26a00ffbcf3d507cdd940b2a2887eee723af5d3319a53eec69048d5e341e", + "zh:ca05a8814e9bf5fbffcd642df3a8d9fae9549776c7057ceae6d6f56471bae80f", + "zh:ca4bf3f94dedb5c5b1a73568f2dad7daf0ef3f85e688bc8bc2d0e915ec148366", + "zh:d331f2129fd3165c4bda875c84a65555b22eb007801522b9e017d065ac69b67e", + "zh:e583b2b478dde67da28e605ab4ef6521c2e390299b471d7d8ef05a0b608dcdad", + "zh:f238b86611647c108c073d265f8891a2738d3158c247468ae0ff5b1a3ac4122a", "zh:f569b65999264a9416862bca5cd2a6177d94ccb0424f3a4ef424428912b9cb3c", - "zh:f827a9c1540d210c56053a2d5d5a6abda924896ffa8eeedc94054cf6d44c5f60", ] } provider "registry.terraform.io/hashicorp/kubernetes" { - version = "2.34.0" + version = "2.31.0" + constraints = ">= 2.0.0, 2.31.0" hashes = [ - "h1:QOiO85qZnkUm7kAtuPkfblchuKPWUqRdNVWE5agpr8k=", - "zh:076b451dc8629c49f4260de6d43595e98ac5f1bdbebb01d112659ef94d99451f", - "zh:0c29855dbd3c6ba82fce680fa5ac969d4e09e20fecb4ed40166b778bd19895a4", - "zh:583b4dfcea4d8392dd7904c00b2ff41bbae78d238e8b72e5ad580370a24a4ecb", - "zh:5e20844d8d1af052381d00de4febd4055ad0f3c3c02795c361265b9ef72a1075", - "zh:766b7ab7c4727c62b5887c3922e0467c4cc355ba0dc3aabe465ebb86bc1caabb", - "zh:776a5000b441d7c8262d17d4a4aa4aa9760ae64de4cb7172961d9e007e0be1e5", - "zh:7838f509235116e55adeeecbe6def3da1b66dd3c4ce0de02fc7dc66a60e1d630", - "zh:931e5581ec66c145c1d29198bd23fddc8d0c5cbf4cda22e02dba65644c7842f2", - "zh:95e728efa2a31a63b879fd093507466e509e3bfc9325eb35ea3dc28fed15c6f7", - "zh:972b9e3ca2b6a1057dcf5003fc78cabb0dd8847580bddeb52d885ebd64df38ea", - "zh:ef6114217965d55f5bddbd7a316b8f85f15b8a77c075fcbed95813039d522e0a", + "h1:wGHbATbv/pBVTST1MtEn0zyVhZbzZJD2NYq2EddASHY=", + "zh:0d16b861edb2c021b3e9d759b8911ce4cf6d531320e5dc9457e2ea64d8c54ecd", + "zh:1bad69ed535a5f32dec70561eb481c432273b81045d788eb8b37f2e4a322cc40", + "zh:43c58e3912fcd5bb346b5cb89f31061508a9be3ca7dd4cd8169c066203bcdfb3", + "zh:4778123da9206918a92dfa73cc711475d2b9a8275ff25c13a30513c523ac9660", + "zh:8bfa67d2db03b3bfae62beebe6fb961aee8d91b7a766efdfe4d337b33dfd23dd", + "zh:9020bb5729db59a520ade5e24984b737e65f8b81751fbbd343926f6d44d22176", + "zh:90431dbfc5b92498bfbce38f0b989978c84421a6c33245b97788a46b563fbd6e", + "zh:b71a061dda1244f6a52500e703a9524b851e7b11bbf238c17bbd282f27d51cb2", + "zh:d6232a7651b834b89591b94bf4446050119dcde740247e6083a4d55a2cefd28a", + "zh:d89fba43e699e28e2b5e92fff2f75fc03dbc8de0df9dacefe1a8836f8f430753", + "zh:ef85c0b744f5ba1b10dadc3c11e331ba4225c45bb733e024d7218c24b02b0512", "zh:f569b65999264a9416862bca5cd2a6177d94ccb0424f3a4ef424428912b9cb3c", ] } -provider "registry.terraform.io/hashicorp/random" { - version = "3.6.3" +provider "registry.terraform.io/hashicorp/local" { + version = "2.5.3" hashes = [ - "h1:Fnaec9vA8sZ8BXVlN3Xn9Jz3zghSETIKg7ch8oXhxno=", - "zh:04ceb65210251339f07cd4611885d242cd4d0c7306e86dda9785396807c00451", - "zh:448f56199f3e99ff75d5c0afacae867ee795e4dfda6cb5f8e3b2a72ec3583dd8", - "zh:4b4c11ccfba7319e901df2dac836b1ae8f12185e37249e8d870ee10bb87a13fe", - "zh:4fa45c44c0de582c2edb8a2e054f55124520c16a39b2dfc0355929063b6395b1", - "zh:588508280501a06259e023b0695f6a18149a3816d259655c424d068982cbdd36", - "zh:737c4d99a87d2a4d1ac0a54a73d2cb62974ccb2edbd234f333abd079a32ebc9e", + "h1:1Nkh16jQJMp0EuDmvP/96f5Unnir0z12WyDuoR6HjMo=", + "zh:284d4b5b572eacd456e605e94372f740f6de27b71b4e1fd49b63745d8ecd4927", + "zh:40d9dfc9c549e406b5aab73c023aa485633c1b6b730c933d7bcc2fa67fd1ae6e", + "zh:6243509bb208656eb9dc17d3c525c89acdd27f08def427a0dce22d5db90a4c8b", "zh:78d5eefdd9e494defcb3c68d282b8f96630502cac21d1ea161f53cfe9bb483b3", - "zh:a357ab512e5ebc6d1fda1382503109766e21bbfdfaa9ccda43d313c122069b30", - "zh:c51bfb15e7d52cc1a2eaec2a903ac2aff15d162c172b1b4c17675190e8147615", - "zh:e0951ee6fa9df90433728b96381fb867e3db98f66f735e0c3e24f8f16903f0ad", - "zh:e3cdcb4e73740621dabd82ee6a37d6cfce7fee2a03d8074df65086760f5cf556", - "zh:eff58323099f1bd9a0bec7cb04f717e7f1b2774c7d612bf7581797e1622613a0", + "zh:885d85869f927853b6fe330e235cd03c337ac3b933b0d9ae827ec32fa1fdcdbf", + "zh:bab66af51039bdfcccf85b25fe562cbba2f54f6b3812202f4873ade834ec201d", + "zh:c505ff1bf9442a889ac7dca3ac05a8ee6f852e0118dd9a61796a2f6ff4837f09", + "zh:d36c0b5770841ddb6eaf0499ba3de48e5d4fc99f4829b6ab66b0fab59b1aaf4f", + "zh:ddb6a407c7f3ec63efb4dad5f948b54f7f4434ee1a2607a49680d494b1776fe1", + "zh:e0dafdd4500bec23d3ff221e3a9b60621c5273e5df867bc59ef6b7e41f5c91f6", + "zh:ece8742fd2882a8fc9d6efd20e2590010d43db386b920b2a9c220cfecc18de47", + "zh:f4c6b3eb8f39105004cf720e202f04f57e3578441cfb76ca27611139bc116a82", + ] +} + +provider "registry.terraform.io/hashicorp/null" { + version = "3.2.4" + hashes = [ + "h1:hkf5w5B6q8e2A42ND2CjAvgvSN3puAosDmOJb3zCVQM=", + "zh:59f6b52ab4ff35739647f9509ee6d93d7c032985d9f8c6237d1f8a59471bbbe2", + "zh:78d5eefdd9e494defcb3c68d282b8f96630502cac21d1ea161f53cfe9bb483b3", + "zh:795c897119ff082133150121d39ff26cb5f89a730a2c8c26f3a9c1abf81a9c43", + "zh:7b9c7b16f118fbc2b05a983817b8ce2f86df125857966ad356353baf4bff5c0a", + "zh:85e33ab43e0e1726e5f97a874b8e24820b6565ff8076523cc2922ba671492991", + "zh:9d32ac3619cfc93eb3c4f423492a8e0f79db05fec58e449dee9b2d5873d5f69f", + "zh:9e15c3c9dd8e0d1e3731841d44c34571b6c97f5b95e8296a45318b94e5287a6e", + "zh:b4c2ab35d1b7696c30b64bf2c0f3a62329107bd1a9121ce70683dec58af19615", + "zh:c43723e8cc65bcdf5e0c92581dcbbdcbdcf18b8d2037406a5f2033b1e22de442", + "zh:ceb5495d9c31bfb299d246ab333f08c7fb0d67a4f82681fbf47f2a21c3e11ab5", + "zh:e171026b3659305c558d9804062762d168f50ba02b88b231d20ec99578a6233f", + "zh:ed0fe2acdb61330b01841fa790be00ec6beaac91d41f311fb8254f74eb6a711f", + ] +} + +provider "registry.terraform.io/hashicorp/random" { + version = "3.7.2" + hashes = [ + "h1:356j/3XnXEKr9nyicLUufzoF4Yr6hRy481KIxRVpK0c=", + "zh:14829603a32e4bc4d05062f059e545a91e27ff033756b48afbae6b3c835f508f", + "zh:1527fb07d9fea400d70e9e6eb4a2b918d5060d604749b6f1c361518e7da546dc", + "zh:1e86bcd7ebec85ba336b423ba1db046aeaa3c0e5f921039b3f1a6fc2f978feab", + "zh:24536dec8bde66753f4b4030b8f3ef43c196d69cccbea1c382d01b222478c7a3", + "zh:29f1786486759fad9b0ce4fdfbbfece9343ad47cd50119045075e05afe49d212", + "zh:4d701e978c2dd8604ba1ce962b047607701e65c078cb22e97171513e9e57491f", + "zh:78d5eefdd9e494defcb3c68d282b8f96630502cac21d1ea161f53cfe9bb483b3", + "zh:7b8434212eef0f8c83f5a90c6d76feaf850f6502b61b53c329e85b3b281cba34", + "zh:ac8a23c212258b7976e1621275e3af7099e7e4a3d4478cf8d5d2a27f3bc3e967", + "zh:b516ca74431f3df4c6cf90ddcdb4042c626e026317a33c53f0b445a3d93b720d", + "zh:dc76e4326aec2490c1600d6871a95e78f9050f9ce427c71707ea412a2f2f1a62", + "zh:eac7b63e86c749c7d48f527671c7aee5b4e26c10be6ad7232d6860167f99dbb0", ] } provider "registry.terraform.io/hashicorp/vault" { - version = "4.5.0" + version = "5.1.0" hashes = [ - "h1:oKiQcEqj/HTCMzgGtZ531D/jnnM0i7iguSM8pU7aK8U=", - "zh:0a9301aa6a9b59db97682be568329526033bb50a4a308ad695c2a1877c1241c3", - "zh:0f8fee69ea4eaa27b86a391edc7de8e8b215e3c48f7074bab799986d5f707014", - "zh:2a2e51fe280e07700920bc8ed29b77e5c79fada0e4d5315d55ec0d2893bb5eed", - "zh:3fc7d9016bebe26a4c779ce6b87b181ed6a1af12499419726b8b0a0e3eaa7234", + "h1:x9cfzSpsdqUfrKM4qD/Mfqvy66ZWKrLtA+PZx7HhqZ8=", + "zh:121c84975a3732d2c68db6b555c37a4520f3c283fd916e25e472e784518662a7", + "zh:2a80da4424db091d3b9846a569b0ae3e60f3e95b0a988ff94f3986391a62c93d", + "zh:2bcb3aadf97aecf0b9f98393affd766b929eafd3cb68ed4f26419405c3e8ec64", + "zh:5a5f11db49784e9be251fbad2bb3a46c5f9999ab4e1ea7940f120b3743afca28", "zh:78d5eefdd9e494defcb3c68d282b8f96630502cac21d1ea161f53cfe9bb483b3", - "zh:813a9e4875e58dbca2526b3088c0f76dbb2a66b10b910497a0b703518eaa73cd", - "zh:889ed6f21b94f89b8cbc4224454ced01a2792f12f53379d2fb1a2f2749bf624a", - "zh:acf9c01d403584015005083e64d8479d167e4f54e87e540311010133fcb5b023", - "zh:b377945a4b6a75c79793cb92c873aacc9c087c2a6e5792a1613f3aa2f3693848", - "zh:be243567b2a76ba2a546449e89764f707477cf25dcdd6d7f3b808ddf40aaf9f6", - "zh:d879fa16f391fb75b779067c751f3b8f80f5f4d73b2ff86814662038878a0ce4", - "zh:e47fb3daac933f5dcb034379fe77c0bf834512da7348e7643457c9af3b2ab36b", + "zh:976b000cf6fa75c33c3b3a3c2e5c67a8c1958744b0521a1f807de9f8855dc961", + "zh:a4321ce4ff9422d90c3c85bb4835a84563eb761d0714d1db9c81ca810a48fd7c", + "zh:a7464751eaf0b9cc7afb03e098d7efcf8c559215f3de7f34a56458e75709c94d", + "zh:ae434febd2590e58040308d18bf772f796b2fad90670be263acdd447db8fb106", + "zh:c61a27d8c9daa483feb4e3fecd42fa9f2887c5588433bb15df6d62572a7bb6f4", + "zh:dd2e8bdc76f09f8a47485d129140cd6126ad722014f6704ad5d8c4f18014571d", + "zh:f15d32b1eaeb419533e586b0c2c1e2b2f732925b3a094e31e9669cd6e6e735f0", + ] +} + +provider "registry.terraform.io/public-cloud-wl/slugify" { + version = "0.1.1" + constraints = "0.1.1" + hashes = [ + "h1:iOJEMYX1bLfUnKjSxluQkKijr5NgWSqb2lU9Ag2Q12w=", + "zh:13f77dedcc74256053ac51512372510d722116bf58e119fac203fe599d667720", + "zh:2223be634f684f76e265efdaafdf95a948ba9e44f09f8a89540bdb564eff17f1", + "zh:73e8b763c796d57186756cf0bab75323e2d92c873f1df8eccd8a7e336a2e3e81", + "zh:890df766e9b839623b1f0437355032a3c006226a6c200cd911e15ee1a9014e9f", + "zh:9f83adcf17de03afb5c27111cb26c580dc5296dffd40fca4571e81ad0bad3bad", + "zh:a5414ade8cbae9aea10dee79e43da247ceecb7e4a54e76d39906ee60b7365a7d", + "zh:bd118ead731e129c92c0dfe3c9a2ebbd8fa25ba6508deaaaccb9ac3a7f70af2d", + "zh:c8ce48ad921956edcee0643cb6184442f3deb438e5605a53794dfd6e8f89a559", + "zh:d96da8a32ef2b807ed3bd943294c6e1d0bd5fc3a793deb762f74d0c54aeff335", + "zh:e30a218b474afe082e005faf51c323ed8747d46845bfacab4cd3adc0c51704ec", + "zh:e3cd265c38da6e65974ac1b9b6be608ba0534178f16f059ad13672de6846e32e", + "zh:f2ded7f8c771a603ad3e2df84986b5f175c38049b7a9ab4a3cd384abafb33dff", + "zh:f2ece1996cf686583afd19384041204a32e08389dc6f4f105501584e653e797d", + "zh:fa2418b74cea55d29dad24f5095aaf30d6253d63ebac3c0c47949b3de8087c88", + "zh:fdc8d3fbca6a19db203802e7a7337075e39b9ffb7a3887a7583e379be61bde17", + ] +} + +provider "registry.terraform.io/zitadel/zitadel" { + version = "2.0.2" + constraints = "2.0.2" + hashes = [ + "h1:iymeaNBrZ4smcr7eHrxO4gbXQ6bx/enKyj3RQ6xZRYA=", + "zh:01e16af0dda9372696b5e1d43ec709aed79829b49ee69a4f9606a248752f672d", + "zh:048c4e726fb846cfe9ab0a0a1f86d3f8922442154b086e2bd8e389b32f69f2f0", + "zh:3a3f6bea621c9d480f1f288cffebace8620979b9260cfeae8f9af5d9a25ed490", + "zh:4d349e584786589bc2037cee691ff1678296f5351e6491aa34dcb08ecbe1dcb7", + "zh:80741c78179788be8d7e33e471e1311197cd4e1067803d438463d0a8ac871a60", + "zh:89178d30f5ec49551e6a6ebc5eb589ab6631012dcec0d03ea7130b1029890e51", + "zh:94cd3b1fe3d1d39bcb3b70208b044bde4c5ce5152e12b29f0fa0ff1085e12863", + "zh:97299c172ada852705f8ca9fa91eeee12c6259263baae3ca53cf41e3130b1731", + "zh:a33d53acc640dc93b81352ba633cf392bc8c7614a72d320d59d3dcdb22d73fc4", + "zh:a95c15960baf8157f79a6490361455767d48e4dd3ce2ef1d0051743f6152733b", + "zh:ae66ad95c7039e6ef844c39389c9077ce7dbb501b6af02afb26a223fd289dbcb", + "zh:b8a9cb3b53653c06d52607368c406112ee1abc6d66dc4aedaedddbb46a66ea8f", + "zh:d48693ecdc985bb4167af0c3164240c13c4ea48167d28f706e7893cbdb20540a", + "zh:f6db1ec30bfbcf4423ab2d29979b775423ba37008fd48a766b5a1cf87a131859", + "zh:fed4e95dc9aaf361c8ff57f819d31fa25152b9e6cb90b7202d8be9ab1446b081", ] } diff --git a/infra/clusters/app-365zon/.terraform/terraform.tfstate b/infra/clusters/app-365zon/.terraform/terraform.tfstate index 2ed0cb9..752167c 100644 --- a/infra/clusters/app-365zon/.terraform/terraform.tfstate +++ b/infra/clusters/app-365zon/.terraform/terraform.tfstate @@ -1,6 +1,6 @@ { "version": 3, - "terraform_version": "1.10.0", + "terraform_version": "1.12.1", "backend": { "type": "s3", "config": { diff --git a/infra/clusters/app-365zon/app-365zon.yaml b/infra/clusters/app-365zon/app-365zon.yaml new file mode 100644 index 0000000..5a10355 --- /dev/null +++ b/infra/clusters/app-365zon/app-365zon.yaml @@ -0,0 +1,20 @@ +apiVersion: v1 +kind: Config +clusters: +- name: "app-365zon" + cluster: + server: "https://rancher.bridge.fourlights.dev/k8s/clusters/c-m-fh8pgmtb" + +users: +- name: "app-365zon" + user: + token: "kubeconfig-user-9slw5nc6r2:7xq7zjsdfsvnjx9wnhh78r8nwmgqjfk4272mjsc4vwzhh5tcqv5swb" + + +contexts: +- name: "app-365zon" + context: + user: "app-365zon" + cluster: "app-365zon" + +current-context: "app-365zon" diff --git a/infra/clusters/app-365zon/kubeconfig b/infra/clusters/app-365zon/kubeconfig new file mode 100644 index 0000000..c33d2ba --- /dev/null +++ b/infra/clusters/app-365zon/kubeconfig @@ -0,0 +1,20 @@ +apiVersion: v1 +kind: Config +clusters: +- name: "app-365zon" + cluster: + server: "https://rancher.bridge.fourlights.dev/k8s/clusters/c-m-fh8pgmtb" + +users: +- name: "app-365zon" + user: + token: "kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" + + +contexts: +- name: "app-365zon" + context: + user: "app-365zon" + cluster: "app-365zon" + +current-context: "app-365zon" diff --git a/infra/clusters/app-365zon/main.tf b/infra/clusters/app-365zon/main.tf index 7d7f496..82334db 100644 --- a/infra/clusters/app-365zon/main.tf +++ b/infra/clusters/app-365zon/main.tf @@ -8,30 +8,32 @@ locals { module "cluster-init" { source = "../../modules/cluster/init-rke2" - k8s_config_yaml = data.minio_s3_object.k8s_yaml.content + k8s_config_yaml = local.k8s_config_yaml } module "minio" { source = "../../modules/minio" wait_on = module.cluster-init.installed - k8s_config_yaml = data.minio_s3_object.k8s_yaml.content + k8s_config_yaml = local.k8s_config_yaml server_dns = local.cluster_dns service_name = "storage" namespace = "minio" + mode = "distributed" + replicas = local.node_count admin_server_dns = local.cluster_dns # Restricted admin access, access via bridge tls = false # TLS termination happens on the bridge ingress admin = true ingressClass = "nginx" - storageSize = "40Gi" + storageSize = "20Gi" } module "mongodb" { source = "../../modules/mongodb" wait_on = module.cluster-init.installed - k8s_config_yaml = data.minio_s3_object.k8s_yaml.content + k8s_config_yaml = local.k8s_config_yaml namespace = "mongodb" replicas = local.node_count @@ -50,7 +52,7 @@ module "mongodb" { module "rabbitmq" { source = "../../modules/rabbitmq" wait_on = module.cluster-init.installed - k8s_config_yaml = data.minio_s3_object.k8s_yaml.content + k8s_config_yaml = local.k8s_config_yaml server_dns = "local" # Restricted admin access, access via bridge @@ -62,28 +64,155 @@ module "rabbitmq" { ingressClass = "nginx" } -# THESE SHOULD BE IN BRIDGE -# generate ed25519 for argocd: `ssh-keygen -t ed25519 -C "argocd.bridge.fourlights.dev" -f argocd.bridge.fourlights.dev -# add ed25519.pub to github repo deploy keys -# add argocd repo secret -# add argocd updated github.com known hosts -# add argocd application -# setup secrets +module "postgresql" { + source = "../../modules/postgresql" -resource "vault_kv_secret_v2" "cluster" { - mount = var.cluster - name = "minio" - delete_all_versions = true - - data_json = jsonencode({ - access_key = minio_iam_service_account.cluster.access_key - secret_key = minio_iam_service_account.cluster.secret_key - }) - - depends_on = [ - var.wait_on, - minio_iam_service_account.cluster - ] + namespace = "postgresql" + k8s_config_yaml = local.k8s_config_yaml + username = "bridge" +} + +module "zitadel-db" { + source = "../../modules/postgresql/tenant" + wait_on = module.postgresql.installed + + name = "zitadel" + root_password = module.postgresql.root_password + k8s_config_yaml = local.k8s_config_yaml +} + +module "zitadel" { + source = "../../modules/zitadel" + wait_on = module.zitadel-db.installed + k8s_config_yaml = local.k8s_config_yaml + + server_dns = local.cluster_dns + + service_name = "zitadel" + namespace = "zitadel" + + database_password = module.zitadel-db.password + database_root_password = module.postgresql.root_password + + display_on_homepage = true + ingressClass = "nginx" +} + +module "zitadel-bootstrap" { + source = "../../tenants/fourlights/zitadel" + + domain = module.zitadel.server + jwt_profile_file = module.zitadel.jwt_profile_file + k8s_config_yaml = local.k8s_config_yaml +} + +module "redis" { + source = "../../modules/redis" + + namespace = "redis" + k8s_config_yaml = local.k8s_config_yaml +} + +module "tenant-365zon" { + source = "../../tenants/365zon" + + wait_on = module.minio.installed + + k8s_config_yaml = local.k8s_config_yaml + org_id = module.zitadel-bootstrap.org_id + user_id = module.zitadel-bootstrap.user_id + domain = module.zitadel.server + jwt_profile_file = module.zitadel.jwt_profile_file + + minio_access_key = module.minio.minio_access_key + minio_secret_key = module.minio.minio_secret_key + minio_server = module.minio.minio_server + minio_api_uri = module.minio.minio_api_uri + + mongodb_connection_string = module.mongodb.connection_string + rabbitmq_connection_string = module.rabbitmq.connection_string +} + +module "zitadel-argocd" { + source = "../../tenants/argocd/zitadel" + + org_id = module.zitadel-bootstrap.org_id + user_id = module.zitadel-bootstrap.user_id + domain = module.zitadel.server + jwt_profile_file = module.zitadel.jwt_profile_file + + argocd_service_domain = "argocd.${ local.cluster_dns}" +} + +module "argocd" { + source = "../../modules/argocd" + wait_on = module.zitadel-argocd.installed + + namespace = "argocd" + k8s_config_yaml = local.k8s_config_yaml + + redis_db_start_index = 0 + redis_password = module.redis.password + server_dns = local.cluster_dns + + oauth_uri = module.zitadel.server + oauth_client_id = module.zitadel-argocd.client_id + oauth_client_secret = module.zitadel-argocd.client_secret + oauth_redirect_uri = "https://${module.zitadel.server}/${module.zitadel-argocd.logoutSuffix}" + oauth_issuer = "https://${module.zitadel.server}" + + ingressClass = "nginx" +} + +module "monitoring" { + source = "../../modules/monitoring" + wait_on = module.argocd.installed + + namespace = "monitoring" + k8s_config_yaml = local.k8s_config_yaml + + server_dns = local.cluster_dns + ingressClass = "nginx" +} + +output "argocd-root-password" { + value = module.argocd.admin_password + sensitive = true +} + +output "mongodb-connection-string" { + value = module.mongodb.connection_string + sensitive = true +} + +output "rabbitmq-connection-string" { + value = module.rabbitmq.connection_string + sensitive = true +} + +output "minio-access-key" { + value = module.tenant-365zon.minio_access_key + sensitive = true +} + +output "minio-secret-key" { + value = module.tenant-365zon.minio_secret_key + sensitive = true +} + +output "monitoring" { + value = module.monitoring.access_instructions + sensitive = true +} + +output "minio-root-access-key" { + value = module.minio.minio_access_key + sensitive = true +} + +output "minio-root-secret-key" { + value = module.minio.minio_secret_key + sensitive = true } diff --git a/infra/clusters/app-365zon/provider.tf b/infra/clusters/app-365zon/provider.tf index 486b802..43d3be9 100644 --- a/infra/clusters/app-365zon/provider.tf +++ b/infra/clusters/app-365zon/provider.tf @@ -2,7 +2,7 @@ terraform { required_providers { minio = { source = "aminueza/minio" - version = "~> 2.5.0" + version = "~> 3.3.0" } } } @@ -21,7 +21,8 @@ data "minio_s3_object" "k8s_yaml" { } locals { - k8s_config = yamldecode(data.minio_s3_object.k8s_yaml.content) + k8s_config_yaml = file("./kubeconfig") + k8s_config = yamldecode(local.k8s_config_yaml) k8s_host = local.k8s_config.clusters[0].cluster.server k8s_auth = try( { diff --git a/infra/clusters/app-365zon/terraform-debug.log b/infra/clusters/app-365zon/terraform-debug.log new file mode 100644 index 0000000..1f47d2b --- /dev/null +++ b/infra/clusters/app-365zon/terraform-debug.log @@ -0,0 +1,23036 @@ +2025-07-11T08:52:33.437+0200 [INFO] Terraform version: 1.12.1 +2025-07-11T08:52:33.437+0200 [DEBUG] using github.com/hashicorp/go-tfe v1.74.1 +2025-07-11T08:52:33.437+0200 [DEBUG] using github.com/hashicorp/hcl/v2 v2.23.1-0.20250203194505-ba0759438da2 +2025-07-11T08:52:33.437+0200 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1 +2025-07-11T08:52:33.437+0200 [DEBUG] using github.com/zclconf/go-cty v1.16.2 +2025-07-11T08:52:33.437+0200 [INFO] Go runtime version: go1.24.3 +2025-07-11T08:52:33.437+0200 [INFO] CLI args: []string{"terraform", "apply"} +2025-07-11T08:52:33.437+0200 [DEBUG] Attempting to open CLI config file: /home/lamelos/.terraformrc +2025-07-11T08:52:33.437+0200 [INFO] Loading CLI configuration from /home/lamelos/.terraformrc +2025-07-11T08:52:33.437+0200 [DEBUG] checking for credentials in "/home/lamelos/.terraform.d/plugins" +2025-07-11T08:52:33.437+0200 [DEBUG] Explicit provider installation configuration is set +2025-07-11T08:52:33.437+0200 [INFO] CLI command args: []string{"apply"} +2025-07-11T08:52:33.439+0200 [DEBUG] backend-s3.aws-base: Resolving credentials provider: tf_backend.operation=Configure tf_backend.req_id=99194c86-5888-9bf0-4f3c-02ae2b57f3fc tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T08:52:33.439+0200 [DEBUG] backend-s3.aws-base: Using authentication parameters: tf_backend.operation=Configure tf_backend.req_id=99194c86-5888-9bf0-4f3c-02ae2b57f3fc tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate tf_aws.auth_fields=["access key", "secret key"] tf_aws.auth_fields.source=provider +2025-07-11T08:52:33.439+0200 [INFO] backend-s3.aws-base: Retrieved credentials: tf_backend.operation=Configure tf_backend.req_id=99194c86-5888-9bf0-4f3c-02ae2b57f3fc tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate tf_aws.credentials_source=StaticCredentials +2025-07-11T08:52:33.439+0200 [DEBUG] backend-s3.aws-base: Loading configuration: tf_backend.operation=Configure tf_backend.req_id=99194c86-5888-9bf0-4f3c-02ae2b57f3fc tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T08:52:33.441+0200 [DEBUG] Provider registry.terraform.io/hashicorp/helm is overridden by dev_overrides +2025-07-11T08:52:33.634+0200 [DEBUG] Provider registry.terraform.io/hashicorp/helm is overridden to load from /home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64 +2025-07-11T08:52:33.634+0200 [DEBUG] checking for provisioner in "." +2025-07-11T08:52:33.641+0200 [DEBUG] checking for provisioner in "/usr/bin" +2025-07-11T08:52:33.641+0200 [DEBUG] checking for provisioner in "/home/lamelos/.terraform.d/plugins" +2025-07-11T08:52:33.643+0200 [DEBUG] Provider registry.terraform.io/hashicorp/helm is overridden by dev_overrides +2025-07-11T08:52:33.643+0200 [INFO] backend/local: starting Apply operation +2025-07-11T08:52:33.644+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon rpc.method=ListObjectsV2 rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Workspaces tf_backend.req_id=c77b5f13-2b83-5c86-5f5a-b3880f0d7096 tf_backend.s3.bucket=app-365zon tf_backend.workspace-prefix=env:/ http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.x_amz_date=20250711T065233Z http.request.header.amz_sdk_request="attempt=1; max=5" http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.method=GET http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 m/C" http.request.header.accept_encoding=identity http.request.header.amz_sdk_invocation_id=3c0c7bf9-786f-4bae-a175-727470ad48c5 http.request.body="" http.url="https://storage.bridge.fourlights.dev/app-365zon?list-type=2&max-keys=1000&prefix=env%3A%2F" net.peer.name=storage.bridge.fourlights.dev +2025-07-11T08:52:34.733+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon rpc.method=ListObjectsV2 rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Workspaces tf_backend.req_id=c77b5f13-2b83-5c86-5f5a-b3880f0d7096 tf_backend.s3.bucket=app-365zon tf_backend.workspace-prefix=env:/ http.status_code=200 http.response.header.content_type=application/xml http.response.header.date="Fri, 11 Jul 2025 06:52:34 GMT" http.response.header.x_ratelimit_remaining=57 + http.response.body= + | + | app-365zonenv:/01000false + http.response_content_length=246 http.response.header.x_xss_protection="1; mode=block" http.response.header.server=MinIO http.response.header.x_content_type_options=nosniff http.response.header.x_ratelimit_limit=57 http.response.header.accept_ranges=bytes http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.x_amz_request_id=18511FDAB02CA2AA http.duration=1088 http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 +2025-07-11T08:52:34.734+0200 [INFO] backend-s3: Downloading remote state: tf_backend.operation=Get tf_backend.req_id=2d4c4f1a-3347-3e00-9ba6-4b5a7dc5e5cb tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T08:52:34.734+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=HeadObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=2d4c4f1a-3347-3e00-9ba6-4b5a7dc5e5cb tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate net.peer.name=storage.bridge.fourlights.dev http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2" http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.amz_sdk_invocation_id=703afe47-39cc-497e-9141-fea61a61c574 http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.request.header.x_amz_date=20250711T065234Z http.request.body="" http.method=HEAD http.request.header.accept_encoding=identity http.request.header.amz_sdk_request="attempt=1; max=5" +2025-07-11T08:52:34.878+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=HeadObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=2d4c4f1a-3347-3e00-9ba6-4b5a7dc5e5cb tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.response.header.date="Fri, 11 Jul 2025 06:52:34 GMT" http.response.header.x_ratelimit_remaining=57 http.response.header.x_ratelimit_limit=57 http.response.header.content_type=application/json http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.x_content_type_options=nosniff http.duration=144 http.response.header.server=MinIO http.response.header.vary=["Origin", "Accept-Encoding"] http.response.body="" http.response_content_length=123360 http.response.header.etag="\"c3efa69e51739d9428a69063bfc06941\"" http.response.header.x_amz_request_id=18511FDAD48E0FDA http.response.header.accept_ranges=bytes http.status_code=200 http.response.header.last_modified="Fri, 11 Jul 2025 06:47:50 GMT" http.response.header.x_xss_protection="1; mode=block" +2025-07-11T08:52:34.879+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=2d4c4f1a-3347-3e00-9ba6-4b5a7dc5e5cb tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.request.header.x_amz_date=20250711T065234Z http.request.header.x_amz_checksum_mode=ENABLED http.request.header.amz_sdk_invocation_id=b0b56ff9-f164-408a-ad3b-f5ea525a9c81 http.request.body="" http.method=GET http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate?x-id=GetObject http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 ft/s3-transfer m/G,b" http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;range;x-amz-checksum-mode;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.amz_sdk_request="attempt=1; max=5" http.request.header.range=bytes=0-5242879 http.request.header.accept_encoding=identity net.peer.name=storage.bridge.fourlights.dev +2025-07-11T08:52:35.039+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=2d4c4f1a-3347-3e00-9ba6-4b5a7dc5e5cb tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.duration=159 http.response_content_length=123360 http.response.header.x_ratelimit_remaining=57 http.response.header.x_amz_request_id=18511FDADDC52FD4 http.response.header.content_range="bytes 0-123359/123360" http.response.body="[Redacted: 120.5 KB (123,360 bytes), Type: application/json]" http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.x_content_type_options=nosniff http.response.header.x_xss_protection="1; mode=block" http.response.header.x_ratelimit_limit=57 http.response.header.last_modified="Fri, 11 Jul 2025 06:47:50 GMT" http.response.header.accept_ranges=bytes http.response.header.etag="\"c3efa69e51739d9428a69063bfc06941\"" http.response.header.server=MinIO http.response.header.content_type=application/json http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.status_code=206 http.response.header.date="Fri, 11 Jul 2025 06:52:35 GMT" +2025-07-11T08:52:35.039+0200 [WARN] backend-s3: Response has no supported checksum. Not validating response payload.: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=2d4c4f1a-3347-3e00-9ba6-4b5a7dc5e5cb tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T08:52:35.818+0200 [DEBUG] Config.VerifyDependencySelections: skipping registry.terraform.io/hashicorp/helm because it's overridden by a special configuration setting +2025-07-11T08:52:35.819+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:35.819+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:35.831+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:52:35.831+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=968337 +2025-07-11T08:52:35.831+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:52:35.837+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:52:35.837+0200" +2025-07-11T08:52:35.864+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:35.864+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: network=unix address=/tmp/plugin951402443 timestamp="2025-07-11T08:52:35.864+0200" +2025-07-11T08:52:35.879+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:35.880+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=968337 +2025-07-11T08:52:35.880+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:35.880+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:35.880+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:35.885+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 args=[".terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2"] +2025-07-11T08:52:35.885+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 pid=968353 +2025-07-11T08:52:35.885+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 +2025-07-11T08:52:35.909+0200 [INFO] provider.terraform-provider-argocd_v7.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:35.909+0200" +2025-07-11T08:52:35.920+0200 [DEBUG] provider.terraform-provider-argocd_v7.0.2: plugin address: address=/tmp/plugin2897577140 network=unix timestamp="2025-07-11T08:52:35.920+0200" +2025-07-11T08:52:35.920+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:35.947+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:35.949+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 id=968353 +2025-07-11T08:52:35.949+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:35.949+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:35.949+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:35.954+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5"] +2025-07-11T08:52:35.954+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 pid=968373 +2025-07-11T08:52:35.954+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 +2025-07-11T08:52:35.957+0200 [INFO] provider.terraform-provider-external_v2.3.5_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:35.956+0200" +2025-07-11T08:52:35.968+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:35.968+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: plugin address: address=/tmp/plugin928797338 network=unix timestamp="2025-07-11T08:52:35.968+0200" +2025-07-11T08:52:35.977+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:52:35.977+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:35.978+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 id=968373 +2025-07-11T08:52:35.978+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:35.978+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:35.978+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:35.982+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:52:35.982+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=968384 +2025-07-11T08:52:35.982+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:52:35.997+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:35.997+0200" +2025-07-11T08:52:36.009+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:36.009+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin3141403257 network=unix timestamp="2025-07-11T08:52:36.009+0200" +2025-07-11T08:52:36.019+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:52:36.020+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:36.022+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=968384 +2025-07-11T08:52:36.022+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:36.022+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.022+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.026+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:52:36.027+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=968403 +2025-07-11T08:52:36.027+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:52:36.045+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.045+0200" +2025-07-11T08:52:36.053+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:36.053+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: network=unix address=/tmp/plugin3579226116 timestamp="2025-07-11T08:52:36.053+0200" +2025-07-11T08:52:36.103+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:36.105+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=968403 +2025-07-11T08:52:36.105+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:36.105+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.105+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.109+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5"] +2025-07-11T08:52:36.110+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 pid=968421 +2025-07-11T08:52:36.110+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 +2025-07-11T08:52:36.112+0200 [INFO] provider.terraform-provider-local_v2.5.3_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.112+0200" +2025-07-11T08:52:36.124+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:36.124+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: plugin address: address=/tmp/plugin1493218598 network=unix timestamp="2025-07-11T08:52:36.124+0200" +2025-07-11T08:52:36.133+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:52:36.134+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:36.134+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 id=968421 +2025-07-11T08:52:36.134+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:36.134+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.134+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.139+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5"] +2025-07-11T08:52:36.139+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 pid=968430 +2025-07-11T08:52:36.139+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 +2025-07-11T08:52:36.142+0200 [INFO] provider.terraform-provider-null_v3.2.4_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.142+0200" +2025-07-11T08:52:36.153+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:36.153+0200 [DEBUG] provider.terraform-provider-null_v3.2.4_x5: plugin address: address=/tmp/plugin1129871554 network=unix timestamp="2025-07-11T08:52:36.153+0200" +2025-07-11T08:52:36.162+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:52:36.162+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:36.163+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 id=968430 +2025-07-11T08:52:36.163+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:36.163+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.163+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.167+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5"] +2025-07-11T08:52:36.167+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 pid=968439 +2025-07-11T08:52:36.167+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 +2025-07-11T08:52:36.170+0200 [INFO] provider.terraform-provider-random_v3.7.2_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.170+0200" +2025-07-11T08:52:36.181+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:36.181+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: plugin address: network=unix address=/tmp/plugin3700259241 timestamp="2025-07-11T08:52:36.181+0200" +2025-07-11T08:52:36.191+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:52:36.191+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:36.192+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 id=968439 +2025-07-11T08:52:36.192+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:36.192+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.192+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.196+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/vault/5.1.0/linux_amd64/terraform-provider-vault_v5.1.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/vault/5.1.0/linux_amd64/terraform-provider-vault_v5.1.0_x5"] +2025-07-11T08:52:36.196+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/vault/5.1.0/linux_amd64/terraform-provider-vault_v5.1.0_x5 pid=968448 +2025-07-11T08:52:36.196+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/vault/5.1.0/linux_amd64/terraform-provider-vault_v5.1.0_x5 +2025-07-11T08:52:36.205+0200 [INFO] provider.terraform-provider-vault_v5.1.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.205+0200" +2025-07-11T08:52:36.217+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:36.217+0200 [DEBUG] provider.terraform-provider-vault_v5.1.0_x5: plugin address: address=/tmp/plugin3249955139 network=unix timestamp="2025-07-11T08:52:36.217+0200" +2025-07-11T08:52:36.247+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:36.249+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/vault/5.1.0/linux_amd64/terraform-provider-vault_v5.1.0_x5 id=968448 +2025-07-11T08:52:36.249+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:36.249+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.249+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.253+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 args=[".terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1"] +2025-07-11T08:52:36.253+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 pid=968466 +2025-07-11T08:52:36.253+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 +2025-07-11T08:52:36.256+0200 [INFO] provider.terraform-provider-slugify_v0.1.1: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.256+0200" +2025-07-11T08:52:36.267+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:36.267+0200 [DEBUG] provider.terraform-provider-slugify_v0.1.1: plugin address: address=/tmp/plugin3180112236 network=unix timestamp="2025-07-11T08:52:36.267+0200" +2025-07-11T08:52:36.276+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:52:36.276+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:36.277+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 id=968466 +2025-07-11T08:52:36.277+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:36.277+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.277+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.281+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:52:36.282+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=968476 +2025-07-11T08:52:36.282+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:52:36.290+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.290+0200" +2025-07-11T08:52:36.302+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:36.302+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin1416900652 network=unix timestamp="2025-07-11T08:52:36.302+0200" +2025-07-11T08:52:36.316+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:36.317+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=968476 +2025-07-11T08:52:36.317+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:36.318+0200 [DEBUG] Building and walking validate graph +2025-07-11T08:52:36.326+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/zitadel/zitadel"], implied first by module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:52:36.326+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/random"], implied first by module.monitoring.random_password.grafana_admin_password +2025-07-11T08:52:36.326+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/external"], implied first by module.argocd.data.external.processed_values +2025-07-11T08:52:36.326+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/local"], implied first by module.zitadel.local_file.zitadel_jwt_profile_file +2025-07-11T08:52:36.326+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/null"], implied first by module.tenant-365zon.module.minio.null_resource.health_check +2025-07-11T08:52:36.327+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.327+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.storage" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.327+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.327+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_root_password" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:36.327+0200 [DEBUG] ProviderTransformer: "module.zitadel.helm_release.zitadel" (*terraform.NodeValidatableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:36.327+0200 [DEBUG] ProviderTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/local"] +2025-07-11T08:52:36.327+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.327+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_secret.argocd-tls" (*terraform.NodeValidatableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.327+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.327+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_secret.zitadel" (*terraform.NodeValidatableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.327+0200 [DEBUG] ProviderTransformer: "module.monitoring.random_password.grafana_admin_password" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:36.327+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.327+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.327+0200 [DEBUG] ProviderTransformer: "module.argocd.data.kubernetes_secret.bridge-tls" (*terraform.NodeValidatableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.327+0200 [DEBUG] ProviderTransformer: "module.argocd.random_password.admin_password" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:36.327+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default" (*terraform.NodeValidatableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.327+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.327+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.327+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.327+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default" (*terraform.NodeValidatableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_access_key" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_root_password" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.random_password.password" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.argocd.helm_release.argocd" (*terraform.NodeValidatableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_secret.redis" (*terraform.NodeValidatableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_user_password" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay" (*terraform.NodeValidatableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "data.minio_s3_object.k8s_yaml" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin" (*terraform.NodeValidatableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.random_password.tenant" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_secret.postgresql_auth" (*terraform.NodeValidatableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_namespace.postgresql" (*terraform.NodeValidatableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay" (*terraform.NodeValidatableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.redis.random_password.redis" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_namespace.mongodb" (*terraform.NodeValidatableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.argocd.data.external.processed_values" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/external"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay" (*terraform.NodeValidatableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_secret.mongodb_auth" (*terraform.NodeValidatableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config" (*terraform.NodeValidatableResource) needs module.cluster-init.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_namespace.zitadel" (*terraform.NodeValidatableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_secret_key" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default" (*terraform.NodeValidatableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay" (*terraform.NodeValidatableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.mongodb.helm_release.mongodb" (*terraform.NodeValidatableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_namespace.tenant" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay" (*terraform.NodeValidatableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.redis.helm_release.redis" (*terraform.NodeValidatableResource) needs module.redis.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_replica_set_key" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_namespace.monitoring" (*terraform.NodeValidatableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.zitadel.random_password.zitadel_masterkey" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth" (*terraform.NodeValidatableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_namespace.argocd" (*terraform.NodeValidatableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.minio.helm_release.minio" (*terraform.NodeValidatableResource) needs module.minio.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default" (*terraform.NodeValidatableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.kubernetes_job.create-tenant" (*terraform.NodeValidatableResource) needs module.zitadel-db.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.null_resource.health_check" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/null"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.helm_release.rabbitmq" (*terraform.NodeValidatableResource) needs module.rabbitmq.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay" (*terraform.NodeValidatableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.328+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.329+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.329+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.329+0200 [DEBUG] ProviderTransformer: "module.monitoring.helm_release.kube_prometheus_stack" (*terraform.NodeValidatableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:36.329+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.329+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_namespace.redis" (*terraform.NodeValidatableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.329+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.329+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.329+0200 [DEBUG] ProviderTransformer: "module.postgresql.helm_release.postgresql" (*terraform.NodeValidatableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:36.329+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_action.groups-claim" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.329+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default" (*terraform.NodeValidatableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.329+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.329+0200 [DEBUG] ProviderTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn" (*terraform.NodeValidatableResource) needs module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:36.330+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.330+0200 [DEBUG] pruning unused module.cluster-init.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:36.330+0200 [DEBUG] pruning unused module.zitadel-db.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:36.330+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:36.330+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/vault"] +2025-07-11T08:52:36.330+0200 [DEBUG] pruning unused module.postgresql.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:52:36.330+0200 [DEBUG] pruning unused provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:36.330+0200 [DEBUG] pruning unused module.mongodb.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:52:36.330+0200 [DEBUG] pruning unused module.argocd.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:52:36.330+0200 [DEBUG] pruning unused module.minio.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.330+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.330+0200 [DEBUG] pruning unused module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.330+0200 [DEBUG] pruning unused module.tenant-365zon.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:36.330+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:36.330+0200 [DEBUG] pruning unused module.rabbitmq.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.wait_on (expand)" references: [] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.minio.var.mode (expand)" references: [] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.username (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.installed (expand)" references: [module.argocd.helm_release.argocd] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.redis_db_next_start_index (expand)" references: [module.argocd.var.redis_db_start_index (expand)] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (close)" references: [] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.argocd.random_password.admin_password" references: [] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (expand)" references: [] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file" references: [module.zitadel.data.kubernetes_secret.zitadel_admin] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.redis.var.namespace (expand)" references: [] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.display_on_homepage (expand)" references: [] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.name (expand)" references: [module.zitadel-argocd.var.name (expand)] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.wait_on (expand)" references: [module.zitadel-argocd.output.installed (expand)] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "data.minio_s3_object.k8s_yaml" references: [var.bucket] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand)] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.output.installed (expand)" references: [module.cluster-init.module.longhorn.helm_release.longhorn] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (expand)" references: [] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (close)" references: [] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand)] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)" references: [module.tenant-365zon.kubernetes_namespace.tenant] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.wait_on (expand)" references: [module.argocd.output.installed (expand)] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_config (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_host (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_server (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default" references: [module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.email (expand) module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand)] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_secret.mongodb_auth" references: [module.mongodb.var.wait_on (expand) module.mongodb.random_password.mongodb_root_password module.mongodb.random_password.mongodb_replica_set_key module.mongodb.kubernetes_namespace.mongodb] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.databases (expand)" references: [] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:52:36.341+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.grafana_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)" references: [module.tenant-365zon.var.user_id (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (close)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.minio (expand)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_secret.redis" references: [module.redis.random_password.redis module.redis.kubernetes_namespace.redis] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.access_key (expand)" references: [module.tenant-365zon.var.minio_access_key (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.admin (expand)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "output.rabbitmq-connection-string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin_server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.minio.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.minio.local.k8s_host (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (close)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.server (expand)" references: [module.tenant-365zon.var.minio_server (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.root_password (expand)" references: [module.postgresql.random_password.postgresql_root_password] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.redis (expand)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.redis.output.installed (expand)" references: [module.redis.helm_release.redis] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "output.monitoring (expand)" references: [module.monitoring.output.access_instructions (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_password (expand)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.installed (expand)" references: [module.rabbitmq.helm_release.rabbitmq] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_access_key" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay module.tenant-365zon.module.minio.minio_iam_policy.overlay module.tenant-365zon.module.minio.minio_iam_policy.overlay module.tenant-365zon.module.minio.minio_iam_user.overlay] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.null_resource.health_check" references: [module.tenant-365zon.module.minio.var.wait_on (expand) module.tenant-365zon.module.minio.var.server (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_read_url (expand)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (close)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin" references: [module.zitadel.helm_release.zitadel module.zitadel.var.namespace (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_secret.argocd-tls" references: [module.argocd.data.kubernetes_secret.bridge-tls module.argocd.data.kubernetes_secret.bridge-tls module.argocd.kubernetes_namespace.argocd] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_replica_set_key" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.namespace (expand)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.redis.output.password (expand)" references: [module.redis.random_password.redis] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.postgresql.helm_release.postgresql" references: [module.postgresql.var.wait_on (expand) module.postgresql.kubernetes_secret.postgresql_auth module.postgresql.var.enabled (expand) module.postgresql.kubernetes_namespace.postgresql module.postgresql.var.username (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.enabled (expand)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (close)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.zitadel (close)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.monitoring (close)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand)" references: [] +2025-07-11T08:52:36.342+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_config (expand)" references: [module.tenant-365zon.var.k8s_config_yaml (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.uri (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.minio.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "local.k8s_host (expand)" references: [local.k8s_config (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_secret_key (expand)" references: [module.minio.random_password.minio_secret_key] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.usernames (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (close)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.minio.var.storageSize (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (close)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_config (expand)" references: [module.rabbitmq.var.k8s_config_yaml (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_config (expand)" references: [module.zitadel-bootstrap.var.k8s_config_yaml (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.bucket (expand)" references: [module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.access_instructions (expand)" references: [module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.random_password.grafana_admin_password] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.helm_release.rabbitmq" references: [module.rabbitmq.random_password.password module.rabbitmq.var.wait_on (expand) module.rabbitmq.var.namespace (expand) module.rabbitmq.local.service_uri (expand) module.rabbitmq.var.admin (expand) module.rabbitmq.var.tls (expand) module.rabbitmq.var.ingressClass (expand) module.rabbitmq.random_password.password module.rabbitmq.var.replicas (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (close)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "var.region" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.service_uri (expand)" references: [module.zitadel.var.service_name (expand) module.zitadel.var.server_dns (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_host (expand)" references: [module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.argocd_service_domain (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)" references: [module.zitadel-bootstrap.var.domain (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.rabbitmq.local.k8s_host (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_host (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (close)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_url (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.minio.var.service_name (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_host (expand)" references: [module.redis.local.k8s_config (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.secret_key (expand)" references: [module.tenant-365zon.var.minio_secret_key (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.email (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_iam_user.overlay] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "var.vault_token" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.redis.var.wait_on (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_auth (expand)" references: [module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "local.cluster_shortname (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_access_key (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand)] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (expand)" references: [] +2025-07-11T08:52:36.343+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_namespace.argocd" references: [module.argocd.var.namespace (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.minio.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_action.groups-claim" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.wait_on (expand)" references: [module.zitadel-db.output.installed (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "local.bridge_dns (expand)" references: [local.tld (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_config (expand)" references: [module.redis.var.k8s_config_yaml (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default" references: [module.zitadel-argocd.module.zitadel_project.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project.var.name (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "var.access_key" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.ingressClass (expand)" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_username (expand)" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand)" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-bootstrap.var.jwt_profile_file (expand) module.zitadel-bootstrap.var.domain (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (close)" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_namespace.postgresql" references: [module.postgresql.var.enabled (expand) module.postgresql.var.namespace (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.service_name (expand)" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.minio.var.replicas (expand)" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_config (expand)" references: [module.mongodb.var.k8s_config_yaml (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.secret_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default" references: [module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_username (expand)" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_host (expand)" references: [module.zitadel.local.k8s_config (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "local.node_count (expand)" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_secret.zitadel" references: [module.zitadel.var.enabled (expand) module.zitadel.random_password.zitadel_masterkey module.zitadel.kubernetes_namespace.zitadel] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand)" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "var.endpoints" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.namespace (expand)" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.idp_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (close)" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (expand)" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.monitoring.random_password.grafana_admin_password" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "var.vault_addr" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_namespace.zitadel" references: [module.zitadel.var.enabled (expand) module.zitadel.var.namespace (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_host (expand)" references: [module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_auth (expand)" references: [module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.job_name (expand)" references: [module.zitadel-db.var.enabled (expand) module.zitadel-db.kubernetes_job.create-tenant] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.jwt_profile_file (expand)" references: [module.zitadel.local_file.zitadel_jwt_profile_file] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (close)" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.storage" references: [module.tenant-365zon.module.minio.output.access_key (expand) module.tenant-365zon.module.minio.output.secret_key (expand) module.tenant-365zon.var.minio_api_uri (expand) module.tenant-365zon.module.minio.output.bucket (expand) module.tenant-365zon.kubernetes_namespace.tenant] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "var.bucket" references: [] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.owners (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.minio.output.installed (expand)" references: [module.minio.helm_release.minio] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:52:36.344+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_host (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand)] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_host (expand)] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/null\"]" references: [] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand)] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_auth (expand)" references: [module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_host (expand)] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.mongodb (close)" references: [] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.name (expand)" references: [] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_password (expand)" references: [module.zitadel-db.output.password (expand)] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_auth (expand)" references: [module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand)] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.tls (expand)" references: [] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (expand)" references: [] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_redirect_uri (expand)" references: [module.zitadel.output.server (expand) module.zitadel-argocd.output.logoutSuffix (expand)] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (expand)" references: [] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.service_name (expand)" references: [] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.user_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "output.minio-root-access-key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default" references: [module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)" references: [] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.wait_on (expand)" references: [] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/aminueza/minio\"]" references: [var.region var.access_key var.secret_key var.minio_server] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:52:36.345+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.kubernetes_job.create-tenant" references: [module.zitadel-db.var.wait_on (expand) module.zitadel-db.var.enabled (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.namespace (expand) module.zitadel-db.var.host (expand) module.zitadel-db.var.root_username (expand) module.zitadel-db.var.root_password (expand) module.zitadel-db.var.root_database (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.name (expand) module.zitadel-db.random_password.tenant] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_namespace.tenant" references: [module.tenant-365zon.var.wait_on (expand) module.tenant-365zon.local.name (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.minio.local.service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_host (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.enabled (expand)" references: [] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_host (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (expand)" references: [] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.namespace (expand)" references: [] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_auth (expand)" references: [module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (validation)" references: [] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (close)" references: [] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_secret_key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.namespace (expand)" references: [] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/external\"]" references: [] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.namespace (expand)" references: [] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand)" references: [] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)" references: [] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_uri (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.minio.output.secret_key (expand)" references: [module.minio.random_password.minio_secret_key] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)" references: [] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_secret_key" references: [] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand)" references: [] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand)" references: [] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.wait_on (expand)" references: [module.cluster-init.var.wait_on (expand)] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (expand)" references: [] +2025-07-11T08:52:36.346+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.service_name (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_secret (expand)" references: [module.zitadel-argocd.output.client_secret (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.password (expand)" references: [module.postgresql.random_password.postgresql_user_password] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.installed (expand)" references: [module.zitadel.helm_release.zitadel module.zitadel.local_file.zitadel_jwt_profile_file] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (close)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.username (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.argocd (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.replicas (expand)" references: [local.node_count (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.name (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "local.k8s_config_yaml (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token" references: [module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_auth (expand)" references: [module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default" references: [module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.ingressClass (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_host (expand)" references: [module.argocd.local.k8s_config (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.replicas (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "output.minio-secret-key (expand)" references: [module.tenant-365zon.output.minio_secret_key (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (close)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel.random_password.zitadel_masterkey" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.enabled (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.namespace (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.application_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.postgresql (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.host (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_auth (expand)" references: [module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.name (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.prometheus_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.output.installed (expand)" references: [module.cluster-init.module.longhorn.output.installed (expand) module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn" references: [module.cluster-init.module.longhorn.var.wait_on (expand) module.cluster-init.module.longhorn.var.namespace (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings" references: [module.tenant-365zon.var.mongodb_connection_string (expand) module.tenant-365zon.var.rabbitmq_connection_string (expand) module.tenant-365zon.kubernetes_namespace.tenant] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (close)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_password (expand)" references: [module.redis.output.password (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_config (expand)" references: [module.zitadel-db.var.k8s_config_yaml (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_secret_key (expand)" references: [module.tenant-365zon.module.minio.output.secret_key (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_username (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_host (expand)" references: [module.mongodb.local.k8s_config (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_host (expand)" references: [module.postgresql.local.k8s_config (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.local.argocd_uri (expand)" references: [module.zitadel-argocd.var.argocd_service_domain (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.redis.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.connection_string (expand)" references: [module.rabbitmq.random_password.password module.rabbitmq.var.namespace (expand)] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_db_start_index (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.password (expand)" references: [module.zitadel-db.random_password.tenant] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.zitadel (expand)" references: [] +2025-07-11T08:52:36.347+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_database (expand)" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (close)" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (close)" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default" references: [module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.var.owners (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.minio.var.tls (expand)" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.minio.var.displayOnHomepage (expand)" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.wait_on (expand)" references: [module.postgresql.output.installed (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.wait_on (expand)" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_host (expand)" references: [module.minio.local.k8s_config (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_auth (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_host (expand)" references: [module.monitoring.local.k8s_config (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.mongodb.helm_release.mongodb" references: [module.mongodb.var.wait_on (expand) module.mongodb.kubernetes_secret.mongodb_auth module.mongodb.kubernetes_namespace.mongodb module.mongodb.var.usernames (expand) module.mongodb.var.databases (expand) module.mongodb.var.replicas (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand)" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (expand)" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (close)" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.connection_string (expand)" references: [module.mongodb.random_password.mongodb_root_password module.mongodb.var.replicas (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.rabbitmq_connection_string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_server (expand)" references: [module.minio.output.minio_server (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.namespace (expand)" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.tld (expand)" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.provider[\"registry.terraform.io/aminueza/minio\"]" references: [module.tenant-365zon.module.minio.var.server (expand) module.tenant-365zon.module.minio.var.region (expand) module.tenant-365zon.module.minio.var.access_key (expand) module.tenant-365zon.module.minio.var.secret_key (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (expand)" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_root_password" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.minio.helm_release.minio" references: [module.minio.var.mode (expand) module.minio.var.replicas (expand) module.minio.var.replicas (expand) module.minio.var.storageSize (expand) module.minio.random_password.minio_access_key module.minio.random_password.minio_secret_key module.minio.local.service_uri (expand) module.minio.local.admin_service_uri (expand) module.minio.var.admin (expand) module.minio.var.mode (expand) module.minio.var.tls (expand) module.minio.var.ingressClass (expand) module.minio.var.displayOnHomepage (expand) module.minio.var.namespace (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_auth (expand)" references: [module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_user_password" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_root_password" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.ingressClass (expand)" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.server_dns (expand)" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.ingressClass (expand)" references: [] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:52:36.348+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.name (expand)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_host (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.redis.random_password.redis" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "var.secret_key" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "var.minio_server" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_id (expand)" references: [module.zitadel-argocd.output.client_id (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)" references: [module.tenant-365zon.local.name (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.database (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.scopes (expand)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.service_name (expand)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "local.k8s_auth (expand)" references: [local.k8s_config (expand) local.k8s_config (expand) local.k8s_config (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.installed (expand)" references: [module.mongodb.helm_release.mongodb] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (expand)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.namespace (expand)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.wait_on (expand)" references: [module.minio.output.installed (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "local.cluster_dns (expand)" references: [local.cluster_shortname (expand) local.tld (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_auth (expand)" references: [module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.random_password.password" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_auth (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (close)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (expand)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_namespace.mongodb" references: [module.mongodb.var.namespace (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay" references: [module.tenant-365zon.module.minio.null_resource.health_check module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.minio.local.admin_service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.admin_server_dns (expand) module.minio.var.admin_server_dns (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "output.minio-root-secret-key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack" references: [module.monitoring.var.wait_on (expand) module.monitoring.kubernetes_secret.prometheus_remote_write_auth module.monitoring.kubernetes_namespace.monitoring module.monitoring.var.remote_write_url (expand) module.monitoring.var.remote_read_url (expand) module.monitoring.random_password.grafana_admin_password] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_config (expand)" references: [module.argocd.var.k8s_config_yaml (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-argocd.var.domain (expand) module.zitadel-argocd.var.jwt_profile_file (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/local\"]" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.mongodb (expand)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.server (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.logoutSuffix (expand)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (close)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (expand)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (close)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_namespace.redis" references: [module.redis.var.namespace (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)" references: [] +2025-07-11T08:52:36.349+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_bucket (expand)" references: [module.tenant-365zon.module.minio.output.bucket (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.cluster-init.module.longhorn.local.k8s_host (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.argocd (close)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (expand)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_auth (expand)" references: [module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_access_key (expand)" references: [module.minio.random_password.minio_access_key] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.access_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "local.tld (expand)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.random_password.tenant" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.external.processed_values" references: [module.argocd.local.service_uri (expand) module.argocd.var.server_dns (expand) module.argocd.local.grpc_service_uri (expand) module.argocd.var.redis_db_start_index (expand) module.argocd.var.redis_password (expand) module.argocd.var.oauth_uri (expand) module.argocd.var.oauth_issuer (expand) module.argocd.var.oauth_client_id (expand) module.argocd.var.oauth_client_secret (expand) module.argocd.var.oauth_redirect_uri (expand) module.argocd.var.tls (expand) module.argocd.var.ingressClass (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.admin_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default" references: [module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_access_key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.postgresql (close)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay" references: [module.tenant-365zon.module.minio.null_resource.health_check module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.service_uri (expand)" references: [module.monitoring.var.service_name (expand) module.monitoring.var.server_dns (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd" references: [module.argocd.var.wait_on (expand) module.argocd.kubernetes_secret.argocd-tls module.argocd.random_password.admin_password module.argocd.kubernetes_namespace.argocd module.argocd.data.external.processed_values] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.tls (expand)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.org_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.minio.output.access_key (expand)" references: [module.minio.random_password.minio_access_key] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (close)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.minio.var.ingressClass (expand)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)" references: [module.tenant-365zon.var.org_id (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_issuer (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (expand)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.mongodb_connection_string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.enabled (expand)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_username (expand)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_config (expand)" references: [module.postgresql.var.k8s_config_yaml (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "local.k8s_config (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_api_uri (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (close)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (expand)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.service_uri (expand)" references: [module.rabbitmq.var.service_name (expand) module.rabbitmq.var.server_dns (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.minio.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_host (expand)" references: [module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_config (expand)" references: [module.zitadel.var.k8s_config_yaml (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_secret.postgresql_auth" references: [module.postgresql.var.wait_on (expand) module.postgresql.var.enabled (expand) module.postgresql.random_password.postgresql_user_password module.postgresql.random_password.postgresql_root_password module.postgresql.kubernetes_namespace.postgresql] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.redis.helm_release.redis" references: [module.redis.var.wait_on (expand) module.redis.kubernetes_namespace.redis module.redis.var.architecture (expand) module.redis.var.architecture (validation)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_config (expand)" references: [module.monitoring.var.k8s_config_yaml (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (expand)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:52:36.350+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_config (expand)" references: [module.minio.var.k8s_config_yaml (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_auth (expand)" references: [module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.installed (expand)" references: [module.zitadel-db.kubernetes_job.create-tenant] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.monitoring (expand)" references: [] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.redis (close)" references: [] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth" references: [module.monitoring.var.remote_write_username (expand) module.monitoring.var.remote_write_password (expand) module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.grpc_service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)" references: [] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.region (expand)" references: [] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.admin_password (expand)" references: [module.argocd.random_password.admin_password] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.installed (expand)" references: [module.postgresql.helm_release.postgresql] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.minio (close)" references: [] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_api_uri (expand)" references: [module.minio.output.minio_api_uri (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.tenant-365zon.var.domain (expand) module.tenant-365zon.var.jwt_profile_file (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (expand)" references: [] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.zitadel.helm_release.zitadel" references: [module.zitadel.var.wait_on (expand) module.zitadel.kubernetes_secret.zitadel module.zitadel.var.enabled (expand) module.zitadel.local.service_uri (expand) module.zitadel.var.database (expand) module.zitadel.var.database_username (expand) module.zitadel.var.database_password (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.database_root_username (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.display_on_homepage (expand) module.zitadel.var.ingressClass (expand) module.zitadel.kubernetes_namespace.zitadel] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (expand)" references: [] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.minio.var.namespace (expand)" references: [] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_config (expand)" references: [module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_admin_uri (expand)" references: [module.minio.local.admin_service_uri (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.alertmanager_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "output.argocd-root-password (expand)" references: [module.argocd.output.admin_password (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "output.mongodb-connection-string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.kubernetes_secret.bridge-tls" references: [] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_host (expand)" references: [module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account] +2025-07-11T08:52:36.351+0200 [DEBUG] ReferenceTransformer: "output.minio-access-key (expand)" references: [module.tenant-365zon.output.minio_access_key (expand)] +2025-07-11T08:52:36.418+0200 [DEBUG] Starting graph walk: walkValidate +2025-07-11T08:52:36.421+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.421+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.428+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5"] +2025-07-11T08:52:36.428+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 pid=968491 +2025-07-11T08:52:36.428+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 +2025-07-11T08:52:36.431+0200 [INFO] provider.terraform-provider-null_v3.2.4_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.430+0200" +2025-07-11T08:52:36.442+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:36.442+0200 [DEBUG] provider.terraform-provider-null_v3.2.4_x5: plugin address: address=/tmp/plugin3991999073 network=unix timestamp="2025-07-11T08:52:36.442+0200" +2025-07-11T08:52:36.450+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.450+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.455+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5"] +2025-07-11T08:52:36.455+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 pid=968499 +2025-07-11T08:52:36.455+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 +2025-07-11T08:52:36.457+0200 [INFO] provider.terraform-provider-random_v3.7.2_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.457+0200" +2025-07-11T08:52:36.469+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:36.469+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: plugin address: address=/tmp/plugin2776959165 network=unix timestamp="2025-07-11T08:52:36.469+0200" +2025-07-11T08:52:36.477+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.477+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.482+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:52:36.483+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=968507 +2025-07-11T08:52:36.483+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:52:36.497+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.497+0200" +2025-07-11T08:52:36.510+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:36.510+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin2332084003 network=unix timestamp="2025-07-11T08:52:36.510+0200" +2025-07-11T08:52:36.518+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.518+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:36.518+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.523+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:52:36.523+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=968522 +2025-07-11T08:52:36.523+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:52:36.541+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.541+0200" +2025-07-11T08:52:36.550+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin3492923659 network=unix timestamp="2025-07-11T08:52:36.549+0200" +2025-07-11T08:52:36.550+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:36.557+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.557+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.562+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5"] +2025-07-11T08:52:36.562+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 pid=968540 +2025-07-11T08:52:36.562+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 +2025-07-11T08:52:36.565+0200 [INFO] provider.terraform-provider-local_v2.5.3_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.565+0200" +2025-07-11T08:52:36.576+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:36.576+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: plugin address: address=/tmp/plugin1721219331 network=unix timestamp="2025-07-11T08:52:36.576+0200" +2025-07-11T08:52:36.583+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.583+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.588+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:52:36.588+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=968549 +2025-07-11T08:52:36.588+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:52:36.595+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.594+0200" +2025-07-11T08:52:36.621+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:36.621+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin583100697 network=unix timestamp="2025-07-11T08:52:36.621+0200" +2025-07-11T08:52:36.634+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.634+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.639+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:52:36.639+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=968560 +2025-07-11T08:52:36.639+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:52:36.657+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.656+0200" +2025-07-11T08:52:36.665+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:36.665+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2497180503 network=unix timestamp="2025-07-11T08:52:36.665+0200" +2025-07-11T08:52:36.672+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.672+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.677+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:52:36.677+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=968578 +2025-07-11T08:52:36.677+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:52:36.695+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.695+0200" +2025-07-11T08:52:36.703+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:36.703+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1682399443 network=unix timestamp="2025-07-11T08:52:36.703+0200" +2025-07-11T08:52:36.710+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.710+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.715+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5"] +2025-07-11T08:52:36.715+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 pid=968595 +2025-07-11T08:52:36.715+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 +2025-07-11T08:52:36.718+0200 [INFO] provider.terraform-provider-external_v2.3.5_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.718+0200" +2025-07-11T08:52:36.731+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:36.731+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: plugin address: address=/tmp/plugin1438525473 network=unix timestamp="2025-07-11T08:52:36.731+0200" +2025-07-11T08:52:36.740+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.740+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.744+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:52:36.744+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=968604 +2025-07-11T08:52:36.744+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:52:36.762+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.762+0200" +2025-07-11T08:52:36.770+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2815137788 network=unix timestamp="2025-07-11T08:52:36.770+0200" +2025-07-11T08:52:36.770+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:36.778+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.778+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.782+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:52:36.783+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=968619 +2025-07-11T08:52:36.783+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:52:36.797+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.797+0200" +2025-07-11T08:52:36.808+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin3425561649 network=unix timestamp="2025-07-11T08:52:36.808+0200" +2025-07-11T08:52:36.808+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:36.816+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.816+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.821+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:52:36.821+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=968631 +2025-07-11T08:52:36.821+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:52:36.835+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.835+0200" +2025-07-11T08:52:36.847+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:36.847+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: network=unix address=/tmp/plugin2567072501 timestamp="2025-07-11T08:52:36.847+0200" +2025-07-11T08:52:36.855+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.855+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.859+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:52:36.859+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=968645 +2025-07-11T08:52:36.859+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:52:36.879+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.878+0200" +2025-07-11T08:52:36.887+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2081518684 network=unix timestamp="2025-07-11T08:52:36.887+0200" +2025-07-11T08:52:36.887+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:36.894+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.894+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.899+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:52:36.899+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=968662 +2025-07-11T08:52:36.899+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:52:36.921+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.921+0200" +2025-07-11T08:52:36.929+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin444249720 network=unix timestamp="2025-07-11T08:52:36.929+0200" +2025-07-11T08:52:36.929+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:36.936+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.936+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.941+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:52:36.941+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=968679 +2025-07-11T08:52:36.941+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:52:36.960+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.959+0200" +2025-07-11T08:52:36.968+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:36.968+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1422465043 network=unix timestamp="2025-07-11T08:52:36.968+0200" +2025-07-11T08:52:36.975+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:36.975+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:36.980+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:52:36.981+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=968697 +2025-07-11T08:52:36.981+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:52:36.994+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:36.994+0200" +2025-07-11T08:52:37.006+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:37.006+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin1586571575 network=unix timestamp="2025-07-11T08:52:37.006+0200" +2025-07-11T08:52:37.014+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.014+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.019+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:52:37.019+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=968717 +2025-07-11T08:52:37.019+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:52:37.033+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.033+0200" +2025-07-11T08:52:37.045+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:37.045+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin609027113 network=unix timestamp="2025-07-11T08:52:37.045+0200" +2025-07-11T08:52:37.053+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.053+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.058+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:52:37.058+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=968732 +2025-07-11T08:52:37.058+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:52:37.071+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.071+0200" +2025-07-11T08:52:37.083+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:37.083+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin4190529703 network=unix timestamp="2025-07-11T08:52:37.083+0200" +2025-07-11T08:52:37.091+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.091+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.095+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:52:37.096+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=968747 +2025-07-11T08:52:37.096+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:52:37.114+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.114+0200" +2025-07-11T08:52:37.122+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:37.122+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin4193455604 network=unix timestamp="2025-07-11T08:52:37.122+0200" +2025-07-11T08:52:37.128+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.128+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.129+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.133+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:52:37.133+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=968767 +2025-07-11T08:52:37.133+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:52:37.147+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.146+0200" +2025-07-11T08:52:37.159+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:37.159+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin4065443602 network=unix timestamp="2025-07-11T08:52:37.159+0200" +2025-07-11T08:52:37.168+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.168+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.172+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:52:37.172+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=968780 +2025-07-11T08:52:37.172+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:52:37.190+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.190+0200" +2025-07-11T08:52:37.198+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:37.198+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin271034541 network=unix timestamp="2025-07-11T08:52:37.198+0200" +2025-07-11T08:52:37.206+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.206+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.206+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.206+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.206+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.206+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.211+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:52:37.212+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=968797 +2025-07-11T08:52:37.212+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:52:37.225+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.225+0200" +2025-07-11T08:52:37.237+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:37.237+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin3730837884 network=unix timestamp="2025-07-11T08:52:37.237+0200" +2025-07-11T08:52:37.245+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.245+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.245+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.245+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.249+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:52:37.250+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=968813 +2025-07-11T08:52:37.250+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:52:37.262+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.262+0200" +2025-07-11T08:52:37.274+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:37.274+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin4061034245 network=unix timestamp="2025-07-11T08:52:37.274+0200" +2025-07-11T08:52:37.282+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.289+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.290+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.292+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.293+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=968549 +2025-07-11T08:52:37.293+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.293+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.293+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.294+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.296+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=968679 +2025-07-11T08:52:37.296+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.296+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.297+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 id=968499 +2025-07-11T08:52:37.297+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.298+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.300+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=968813 +2025-07-11T08:52:37.300+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.300+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.301+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=968560 +2025-07-11T08:52:37.301+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.301+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.302+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=968747 +2025-07-11T08:52:37.302+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.303+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.303+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.304+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=968604 +2025-07-11T08:52:37.304+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.304+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.305+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 id=968491 +2025-07-11T08:52:37.305+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.305+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.305+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.310+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:52:37.310+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=968841 +2025-07-11T08:52:37.310+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:52:37.316+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.316+0200" +2025-07-11T08:52:37.343+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:37.343+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin2039602507 network=unix timestamp="2025-07-11T08:52:37.343+0200" +2025-07-11T08:52:37.355+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.356+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=968662 +2025-07-11T08:52:37.356+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.357+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.359+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=968732 +2025-07-11T08:52:37.359+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.359+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.359+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.361+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=968619 +2025-07-11T08:52:37.361+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.361+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.362+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=968631 +2025-07-11T08:52:37.362+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.363+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.363+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=968522 +2025-07-11T08:52:37.363+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.364+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.365+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=968645 +2025-07-11T08:52:37.365+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.365+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.365+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.365+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.366+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=968767 +2025-07-11T08:52:37.366+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.367+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.369+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=968717 +2025-07-11T08:52:37.369+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.369+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.370+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=968797 +2025-07-11T08:52:37.370+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.372+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.373+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=968780 +2025-07-11T08:52:37.373+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.373+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.374+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=968841 +2025-07-11T08:52:37.374+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.374+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.375+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 id=968540 +2025-07-11T08:52:37.375+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.375+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.375+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.379+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:52:37.380+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=968853 +2025-07-11T08:52:37.380+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:52:37.388+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.387+0200" +2025-07-11T08:52:37.399+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:37.399+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin277062884 network=unix timestamp="2025-07-11T08:52:37.399+0200" +2025-07-11T08:52:37.408+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.408+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.412+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:52:37.413+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=968867 +2025-07-11T08:52:37.413+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:52:37.419+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.419+0200" +2025-07-11T08:52:37.432+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:37.432+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin2693009600 network=unix timestamp="2025-07-11T08:52:37.432+0200" +2025-07-11T08:52:37.439+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.439+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.446+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_req_id=670f4dd3-9a10-22dc-e217-dd518f55a601 tf_rpc=ValidateProviderConfig tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:52:37.446+0200" +2025-07-11T08:52:37.446+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=670f4dd3-9a10-22dc-e217-dd518f55a601 tf_attribute_path=domain tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:52:37.446+0200" +2025-07-11T08:52:37.446+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_req_id=670f4dd3-9a10-22dc-e217-dd518f55a601 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:37.446+0200" +2025-07-11T08:52:37.446+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_attribute_path=insecure tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=670f4dd3-9a10-22dc-e217-dd518f55a601 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:37.446+0200" +2025-07-11T08:52:37.446+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_mux_provider="*proto6server.Server" @module=sdk.framework tf_attribute_path=token tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=670f4dd3-9a10-22dc-e217-dd518f55a601 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T08:52:37.446+0200" +2025-07-11T08:52:37.446+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig tf_attribute_path=token tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=670f4dd3-9a10-22dc-e217-dd518f55a601 timestamp="2025-07-11T08:52:37.446+0200" +2025-07-11T08:52:37.446+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_req_id=670f4dd3-9a10-22dc-e217-dd518f55a601 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=sdk.framework timestamp="2025-07-11T08:52:37.446+0200" +2025-07-11T08:52:37.446+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=jwt_profile_file tf_req_id=670f4dd3-9a10-22dc-e217-dd518f55a601 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:52:37.446+0200" +2025-07-11T08:52:37.446+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=670f4dd3-9a10-22dc-e217-dd518f55a601 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=jwt_profile_json tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:52:37.446+0200" +2025-07-11T08:52:37.446+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=jwt_profile_json tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=670f4dd3-9a10-22dc-e217-dd518f55a601 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:52:37.446+0200" +2025-07-11T08:52:37.446+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig tf_req_id=670f4dd3-9a10-22dc-e217-dd518f55a601 timestamp="2025-07-11T08:52:37.446+0200" +2025-07-11T08:52:37.446+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=port tf_req_id=670f4dd3-9a10-22dc-e217-dd518f55a601 timestamp="2025-07-11T08:52:37.446+0200" +2025-07-11T08:52:37.446+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:52:37.446+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=968881 +2025-07-11T08:52:37.446+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:52:37.447+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=af070480-25fc-4eb7-d002-86b620084abb @module=sdk.framework tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:37.447+0200" +2025-07-11T08:52:37.447+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_req_id=af070480-25fc-4eb7-d002-86b620084abb tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=port tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 timestamp="2025-07-11T08:52:37.447+0200" +2025-07-11T08:52:37.447+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=domain tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=af070480-25fc-4eb7-d002-86b620084abb @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T08:52:37.447+0200" +2025-07-11T08:52:37.447+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_mux_provider="*proto6server.Server" tf_req_id=af070480-25fc-4eb7-d002-86b620084abb tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=domain tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:52:37.447+0200" +2025-07-11T08:52:37.447+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_req_id=af070480-25fc-4eb7-d002-86b620084abb tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:37.447+0200" +2025-07-11T08:52:37.447+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=insecure tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=af070480-25fc-4eb7-d002-86b620084abb tf_rpc=ValidateProviderConfig tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:52:37.447+0200" +2025-07-11T08:52:37.447+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=token tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=af070480-25fc-4eb7-d002-86b620084abb timestamp="2025-07-11T08:52:37.447+0200" +2025-07-11T08:52:37.447+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=af070480-25fc-4eb7-d002-86b620084abb tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=token @module=sdk.framework tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:52:37.447+0200" +2025-07-11T08:52:37.447+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_attribute_path=jwt_profile_file tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=af070480-25fc-4eb7-d002-86b620084abb tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T08:52:37.447+0200" +2025-07-11T08:52:37.447+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=af070480-25fc-4eb7-d002-86b620084abb timestamp="2025-07-11T08:52:37.447+0200" +2025-07-11T08:52:37.447+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=jwt_profile_json tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=af070480-25fc-4eb7-d002-86b620084abb @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_rpc=ValidateProviderConfig @module=sdk.framework timestamp="2025-07-11T08:52:37.447+0200" +2025-07-11T08:52:37.447+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=af070480-25fc-4eb7-d002-86b620084abb tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=jwt_profile_json tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:52:37.447+0200" +2025-07-11T08:52:37.453+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.453+0200" +2025-07-11T08:52:37.465+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:37.465+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin2487741564 network=unix timestamp="2025-07-11T08:52:37.465+0200" +2025-07-11T08:52:37.476+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.478+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=968853 +2025-07-11T08:52:37.478+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.479+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_req_id=af6bf649-3976-856d-8ebc-27c89cbc4fad @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:52:37.479+0200" +2025-07-11T08:52:37.479+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=insecure tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=af6bf649-3976-856d-8ebc-27c89cbc4fad timestamp="2025-07-11T08:52:37.479+0200" +2025-07-11T08:52:37.479+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=af6bf649-3976-856d-8ebc-27c89cbc4fad tf_attribute_path=token tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:37.479+0200" +2025-07-11T08:52:37.479+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_req_id=af6bf649-3976-856d-8ebc-27c89cbc4fad @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:37.479+0200" +2025-07-11T08:52:37.479+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=af6bf649-3976-856d-8ebc-27c89cbc4fad tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:37.479+0200" +2025-07-11T08:52:37.479+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_req_id=af6bf649-3976-856d-8ebc-27c89cbc4fad @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 timestamp="2025-07-11T08:52:37.479+0200" +2025-07-11T08:52:37.479+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=jwt_profile_json tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=af6bf649-3976-856d-8ebc-27c89cbc4fad @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:52:37.479+0200" +2025-07-11T08:52:37.479+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=jwt_profile_json tf_mux_provider="*proto6server.Server" tf_req_id=af6bf649-3976-856d-8ebc-27c89cbc4fad @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:37.479+0200" +2025-07-11T08:52:37.479+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_req_id=af6bf649-3976-856d-8ebc-27c89cbc4fad tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:37.479+0200" +2025-07-11T08:52:37.479+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_req_id=af6bf649-3976-856d-8ebc-27c89cbc4fad tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:52:37.479+0200" +2025-07-11T08:52:37.479+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_req_id=af6bf649-3976-856d-8ebc-27c89cbc4fad @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:37.479+0200" +2025-07-11T08:52:37.479+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=domain tf_mux_provider="*proto6server.Server" @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=af6bf649-3976-856d-8ebc-27c89cbc4fad tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:37.479+0200" +2025-07-11T08:52:37.482+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.483+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=968881 +2025-07-11T08:52:37.483+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.484+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.485+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 id=968595 +2025-07-11T08:52:37.485+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.485+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.487+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.489+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=968697 +2025-07-11T08:52:37.489+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.490+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.493+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.495+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=968507 +2025-07-11T08:52:37.495+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.501+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.501+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=968867 +2025-07-11T08:52:37.501+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.502+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:37.504+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=968578 +2025-07-11T08:52:37.504+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:37.504+0200 [INFO] backend/local: apply calling Plan +2025-07-11T08:52:37.504+0200 [DEBUG] Building and walking plan graph for NormalMode +2025-07-11T08:52:37.513+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/random"], implied first by module.zitadel-db.random_password.tenant (expand) +2025-07-11T08:52:37.513+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/zitadel/zitadel"], implied first by module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) +2025-07-11T08:52:37.513+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/external"], implied first by module.argocd.data.external.processed_values (expand) +2025-07-11T08:52:37.513+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/local"], implied first by module.zitadel.local_file.zitadel_jwt_profile_file (expand) +2025-07-11T08:52:37.513+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/null"], implied first by module.tenant-365zon.module.minio.null_resource.health_check (expand) +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand)" (*terraform.nodeExpandPlannableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.postgresql.helm_release.postgresql (expand)" (*terraform.nodeExpandPlannableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.mongodb.helm_release.mongodb (expand)" (*terraform.nodeExpandPlannableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_secret.zitadel (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.helm_release.rabbitmq (expand)" (*terraform.nodeExpandPlannableResource) needs module.rabbitmq.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.argocd.helm_release.argocd (expand)" (*terraform.nodeExpandPlannableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_secret.argocd-tls (expand)" (*terraform.nodeExpandPlannableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.monitoring.helm_release.kube_prometheus_stack (expand)" (*terraform.nodeExpandPlannableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_namespace.mongodb (expand)" (*terraform.nodeExpandPlannableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.random_password.tenant (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.argocd.data.external.processed_values (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/external"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_access_key (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.random_password.password (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_namespace.monitoring (expand)" (*terraform.nodeExpandPlannableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.minio.helm_release.minio (expand)" (*terraform.nodeExpandPlannableResource) needs module.minio.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.redis.helm_release.redis (expand)" (*terraform.nodeExpandPlannableResource) needs module.redis.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.argocd.random_password.admin_password (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_root_password (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.zitadel.random_password.zitadel_masterkey (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_namespace.tenant (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.515+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.zitadel.helm_release.zitadel (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_secret.postgresql_auth (expand)" (*terraform.nodeExpandPlannableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/local"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.kubernetes_job.create-tenant (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-db.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_namespace.zitadel (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn (expand)" (*terraform.nodeExpandPlannableResource) needs module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_user_password (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_namespace.argocd (expand)" (*terraform.nodeExpandPlannableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_secret.mongodb_auth (expand)" (*terraform.nodeExpandPlannableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_namespace.redis (expand)" (*terraform.nodeExpandPlannableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.null_resource.health_check (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/null"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_replica_set_key (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.argocd.data.kubernetes_secret.bridge-tls (expand)" (*terraform.nodeExpandPlannableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)" (*terraform.nodeExpandPlannableResource) needs module.cluster-init.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_root_password (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.redis.random_password.redis (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_namespace.postgresql (expand)" (*terraform.nodeExpandPlannableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "data.minio_s3_object.k8s_yaml (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.storage (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_action.groups-claim (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.monitoring.random_password.grafana_admin_password (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_secret.redis (expand)" (*terraform.nodeExpandPlannableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.516+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_secret_key (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:52:37.517+0200 [DEBUG] pruning unused provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:52:37.517+0200 [DEBUG] pruning unused module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.517+0200 [DEBUG] pruning unused module.tenant-365zon.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:37.517+0200 [DEBUG] pruning unused module.minio.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.517+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/vault"] +2025-07-11T08:52:37.517+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.517+0200 [DEBUG] pruning unused module.postgresql.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:52:37.517+0200 [DEBUG] pruning unused module.zitadel-db.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:37.517+0200 [DEBUG] pruning unused module.argocd.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:52:37.517+0200 [DEBUG] pruning unused module.rabbitmq.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.517+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:37.517+0200 [DEBUG] pruning unused module.mongodb.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:52:37.517+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:52:37.517+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:37.517+0200 [DEBUG] pruning unused module.cluster-init.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:52:37.529+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)] +2025-07-11T08:52:37.529+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)] +2025-07-11T08:52:37.529+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)" references: [] +2025-07-11T08:52:37.529+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:37.529+0200 [DEBUG] ReferenceTransformer: "module.minio.var.replicas (expand)" references: [] +2025-07-11T08:52:37.529+0200 [DEBUG] ReferenceTransformer: "module.minio.output.secret_key (expand)" references: [module.minio.random_password.minio_secret_key (expand)] +2025-07-11T08:52:37.529+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:52:37.529+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (expand)" references: [] +2025-07-11T08:52:37.529+0200 [DEBUG] ReferenceTransformer: "var.region" references: [] +2025-07-11T08:52:37.529+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:52:37.529+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.namespace (expand)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_auth (expand)" references: [module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_host (expand)" references: [module.postgresql.local.k8s_config (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_namespace.argocd (expand)" references: [module.argocd.var.namespace (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "output.argocd-root-password (expand)" references: [module.argocd.output.admin_password (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.wait_on (expand)" references: [module.zitadel-argocd.output.installed (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "local.k8s_auth (expand)" references: [local.k8s_config (expand) local.k8s_config (expand) local.k8s_config (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.redis_db_next_start_index (expand)" references: [module.argocd.var.redis_db_start_index (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_username (expand)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.tls (expand)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)" references: [module.tenant-365zon.module.minio.null_resource.health_check (expand) module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.namespace (expand)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.mongodb_connection_string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_auth (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_issuer (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.postgresql (expand)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (expand)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (close)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.minio (expand)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_namespace.postgresql (expand)" references: [module.postgresql.var.enabled (expand) module.postgresql.var.namespace (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.namespace (expand)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_auth (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_config (expand)" references: [module.mongodb.var.k8s_config_yaml (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_auth (expand)" references: [module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_server (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_secret.zitadel (expand)" references: [module.zitadel.var.enabled (expand) module.zitadel.random_password.zitadel_masterkey (expand) module.zitadel.kubernetes_namespace.zitadel (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_api_uri (expand)" references: [module.minio.output.minio_api_uri (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (expand)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_access_key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.namespace (expand)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.installed (expand)" references: [module.mongodb.helm_release.mongodb (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand) module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.grafana_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.password (expand)" references: [module.postgresql.random_password.postgresql_user_password (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (close)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.org_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (close)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)] +2025-07-11T08:52:37.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database (expand)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.replicas (expand)" references: [local.node_count (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.namespace (expand)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.minio.var.displayOnHomepage (expand)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_auth (expand)" references: [module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.service_uri (expand)" references: [module.rabbitmq.var.service_name (expand) module.rabbitmq.var.server_dns (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "var.vault_token" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_auth (expand)" references: [module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.zitadel (expand)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.service_uri (expand)" references: [module.monitoring.var.service_name (expand) module.monitoring.var.server_dns (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.postgresql (close)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (expand)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.random_password.password (expand)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_host (expand)" references: [module.argocd.local.k8s_config (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_root_password (expand)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_host (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (close)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.host (expand)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.ingressClass (expand)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_config (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.username (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_namespace.tenant (expand)" references: [module.tenant-365zon.var.wait_on (expand) module.tenant-365zon.local.name (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_host (expand)" references: [module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (close)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.wait_on (expand)" references: [module.zitadel-db.output.installed (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.minio.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/external\"]" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (close)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.zitadel.random_password.zitadel_masterkey (expand)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (validation)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.minio.output.access_key (expand)" references: [module.minio.random_password.minio_access_key (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_secret.redis (expand)" references: [module.redis.random_password.redis (expand) module.redis.kubernetes_namespace.redis (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.email (expand)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.provider[\"registry.terraform.io/aminueza/minio\"]" references: [module.tenant-365zon.module.minio.var.access_key (expand) module.tenant-365zon.module.minio.var.secret_key (expand) module.tenant-365zon.module.minio.var.server (expand) module.tenant-365zon.module.minio.var.region (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.server_dns (expand)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_access_key (expand)" references: [module.minio.random_password.minio_access_key (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_secret_key (expand)" references: [module.minio.random_password.minio_secret_key (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)" references: [] +2025-07-11T08:52:37.531+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.argocd_service_domain (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.service_name (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.minio.var.mode (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.job_name (expand)" references: [module.zitadel-db.var.enabled (expand) module.zitadel-db.kubernetes_job.create-tenant (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-user.var.email (expand) module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_db_start_index (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin_server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_auth (expand)" references: [module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.ingressClass (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_access_key (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.access_instructions (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.random_password.grafana_admin_password (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.argocd (close)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.alertmanager_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.kubernetes_job.create-tenant (expand)" references: [module.zitadel-db.var.wait_on (expand) module.zitadel-db.var.enabled (expand) module.zitadel-db.var.namespace (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.host (expand) module.zitadel-db.var.root_username (expand) module.zitadel-db.var.root_password (expand) module.zitadel-db.var.root_database (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.name (expand) module.zitadel-db.random_password.tenant (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.minio.var.storageSize (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.connection_string (expand)" references: [module.rabbitmq.random_password.password (expand) module.rabbitmq.var.namespace (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "output.minio-secret-key (expand)" references: [module.tenant-365zon.output.minio_secret_key (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.server (expand)" references: [module.tenant-365zon.var.minio_server (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.ingressClass (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_namespace.zitadel (expand)" references: [module.zitadel.var.enabled (expand) module.zitadel.var.namespace (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.random_password.tenant (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.name (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "local.k8s_host (expand)" references: [local.k8s_config (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.secret_key (expand)" references: [module.tenant-365zon.var.minio_secret_key (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_database (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "local.bridge_dns (expand)" references: [local.tld (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.cluster-init.module.longhorn.local.k8s_host (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.minio.var.tls (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.wait_on (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.monitoring (close)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (close)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel.helm_release.zitadel (expand)" references: [module.zitadel.var.wait_on (expand) module.zitadel.kubernetes_secret.zitadel (expand) module.zitadel.var.enabled (expand) module.zitadel.kubernetes_namespace.zitadel (expand) module.zitadel.local.service_uri (expand) module.zitadel.var.database (expand) module.zitadel.var.database_username (expand) module.zitadel.var.database_password (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.database_root_username (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.display_on_homepage (expand) module.zitadel.var.ingressClass (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.wait_on (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_host (expand)" references: [module.monitoring.local.k8s_config (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.prometheus_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (close)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)" references: [module.tenant-365zon.module.minio.null_resource.health_check (expand) module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.enabled (expand)" references: [] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.root_password (expand)" references: [module.postgresql.random_password.postgresql_root_password (expand)] +2025-07-11T08:52:37.532+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_api_uri (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_secret_key (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.access_key (expand)" references: [module.tenant-365zon.var.minio_access_key (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.enabled (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)" references: [module.zitadel-bootstrap.var.domain (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.redis.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.service_name (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.installed (expand)" references: [module.postgresql.helm_release.postgresql (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.tenant-365zon.var.domain (expand) module.tenant-365zon.var.jwt_profile_file (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (close)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "data.minio_s3_object.k8s_yaml (expand)" references: [var.bucket] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "var.bucket" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_password (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.redis.output.installed (expand)" references: [module.redis.helm_release.redis (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.access_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_username (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_redirect_uri (expand)" references: [module.zitadel.output.server (expand) module.zitadel-argocd.output.logoutSuffix (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_config (expand)" references: [module.rabbitmq.var.k8s_config_yaml (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.service_name (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.wait_on (expand)" references: [module.cluster-init.var.wait_on (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.database (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "output.minio-access-key (expand)" references: [module.tenant-365zon.output.minio_access_key (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.redis.output.password (expand)" references: [module.redis.random_password.redis (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.external.processed_values (expand)" references: [module.argocd.local.service_uri (expand) module.argocd.var.server_dns (expand) module.argocd.local.grpc_service_uri (expand) module.argocd.var.redis_db_start_index (expand) module.argocd.var.redis_password (expand) module.argocd.var.oauth_uri (expand) module.argocd.var.oauth_issuer (expand) module.argocd.var.oauth_client_id (expand) module.argocd.var.oauth_client_secret (expand) module.argocd.var.oauth_redirect_uri (expand) module.argocd.var.tls (expand) module.argocd.var.ingressClass (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "local.node_count (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.mongodb (close)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.redis.var.namespace (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_secret.mongodb_auth (expand)" references: [module.mongodb.var.wait_on (expand) module.mongodb.random_password.mongodb_root_password (expand) module.mongodb.random_password.mongodb_replica_set_key (expand) module.mongodb.kubernetes_namespace.mongodb (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (close)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_password (expand)" references: [module.redis.output.password (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel (close)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)" references: [module.tenant-365zon.local.name (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.namespace (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (close)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (close)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (close)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_host (expand)" references: [module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.application_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.admin (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_host (expand)" references: [module.mongodb.local.k8s_config (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.jwt_profile_file (expand)" references: [module.zitadel.local_file.zitadel_jwt_profile_file (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (expand)" references: [] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.helm_release.rabbitmq (expand)" references: [module.rabbitmq.random_password.password (expand) module.rabbitmq.var.wait_on (expand) module.rabbitmq.var.namespace (expand) module.rabbitmq.local.service_uri (expand) module.rabbitmq.var.admin (expand) module.rabbitmq.var.tls (expand) module.rabbitmq.var.ingressClass (expand) module.rabbitmq.var.replicas (expand) module.rabbitmq.random_password.password (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin (expand)" references: [module.zitadel.helm_release.zitadel (expand) module.zitadel.var.namespace (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)" references: [module.zitadel-argocd.module.zitadel_project.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project.var.name (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.storage (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand) module.tenant-365zon.module.minio.output.secret_key (expand) module.tenant-365zon.var.minio_api_uri (expand) module.tenant-365zon.module.minio.output.bucket (expand) module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:52:37.533+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.ingressClass (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.minio.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.minio.local.k8s_host (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "var.access_key" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "local.k8s_config_yaml (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.service_uri (expand)" references: [module.zitadel.var.service_name (expand) module.zitadel.var.server_dns (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)" references: [module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand) module.zitadel-argocd.module.zitadel_project.var.owners (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_access_key (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "local.tld (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.secret_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_bucket (expand)" references: [module.tenant-365zon.module.minio.output.bucket (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.wait_on (expand)" references: [module.postgresql.output.installed (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.enabled (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_config (expand)" references: [module.zitadel.var.k8s_config_yaml (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_namespace.redis (expand)" references: [module.redis.var.namespace (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "local.cluster_dns (expand)" references: [local.cluster_shortname (expand) local.tld (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_config (expand)" references: [module.argocd.var.k8s_config_yaml (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.username (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_config (expand)" references: [module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_config (expand)" references: [module.zitadel-db.var.k8s_config_yaml (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.rabbitmq_connection_string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_read_url (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_host (expand)" references: [module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_auth (expand)" references: [module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_host (expand)" references: [module.zitadel.local.k8s_config (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.scopes (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (close)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.minio.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_auth (expand)" references: [module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.enabled (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)" references: [module.tenant-365zon.var.org_id (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.monitoring (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.minio.helm_release.minio (expand)" references: [module.minio.var.mode (expand) module.minio.var.replicas (expand) module.minio.var.replicas (expand) module.minio.var.storageSize (expand) module.minio.random_password.minio_access_key (expand) module.minio.random_password.minio_secret_key (expand) module.minio.local.service_uri (expand) module.minio.local.admin_service_uri (expand) module.minio.var.admin (expand) module.minio.var.mode (expand) module.minio.var.tls (expand) module.minio.var.ingressClass (expand) module.minio.var.displayOnHomepage (expand) module.minio.var.namespace (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_action.groups-claim (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.name (expand)" references: [module.zitadel-argocd.var.name (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_host (expand)" references: [module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.server (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand)" references: [module.monitoring.var.remote_write_username (expand) module.monitoring.var.remote_write_password (expand) module.monitoring.kubernetes_namespace.monitoring (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn (expand)" references: [module.cluster-init.module.longhorn.var.wait_on (expand) module.cluster-init.module.longhorn.var.namespace (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.wait_on (expand)" references: [module.argocd.output.installed (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.wait_on (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_config (expand)" references: [module.zitadel-bootstrap.var.k8s_config_yaml (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.installed (expand)" references: [module.zitadel-db.kubernetes_job.create-tenant (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.namespace (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.redis.var.wait_on (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "output.minio-root-secret-key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (expand)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (close)" references: [] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.user_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)] +2025-07-11T08:52:37.534+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.bucket (expand)" references: [module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_secret.postgresql_auth (expand)" references: [module.postgresql.var.wait_on (expand) module.postgresql.var.enabled (expand) module.postgresql.random_password.postgresql_user_password (expand) module.postgresql.random_password.postgresql_root_password (expand) module.postgresql.kubernetes_namespace.postgresql (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.region (expand)" references: [] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.owners (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_host (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "var.secret_key" references: [] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_config (expand)" references: [module.redis.var.k8s_config_yaml (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (close)" references: [] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file (expand)" references: [module.zitadel.data.kubernetes_secret.zitadel_admin (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand)" references: [] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.minio.var.ingressClass (expand)" references: [] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.output.installed (expand)" references: [module.cluster-init.module.longhorn.helm_release.longhorn (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_secret (expand)" references: [module.zitadel-argocd.output.client_secret (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.password (expand)" references: [module.zitadel-db.random_password.tenant (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.tls (expand)" references: [] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_admin_uri (expand)" references: [module.minio.local.admin_service_uri (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.connection_string (expand)" references: [module.mongodb.random_password.mongodb_root_password (expand) module.mongodb.var.replicas (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: [] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.redis (expand)" references: [] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.null_resource.health_check (expand)" references: [module.tenant-365zon.module.minio.var.wait_on (expand) module.tenant-365zon.module.minio.var.server (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)" references: [] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_secret_key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.minio.local.admin_service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.admin_server_dns (expand) module.minio.var.admin_server_dns (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.tld (expand)" references: [] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_host (expand)" references: [module.redis.local.k8s_config (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.name (expand)" references: [] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (close)" references: [] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (expand)" references: [] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd (expand)" references: [module.argocd.var.wait_on (expand) module.argocd.kubernetes_secret.argocd-tls (expand) module.argocd.random_password.admin_password (expand) module.argocd.kubernetes_namespace.argocd (expand) module.argocd.data.external.processed_values (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_password (expand)" references: [module.zitadel-db.output.password (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.installed (expand)" references: [module.zitadel.helm_release.zitadel (expand) module.zitadel.local_file.zitadel_jwt_profile_file (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (expand)" references: [] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_replica_set_key (expand)" references: [] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.wait_on (expand)" references: [module.minio.output.installed (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.replicas (expand)" references: [] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand)" references: [] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_auth (expand)" references: [module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)" references: [module.zitadel-argocd.zitadel_action.groups-claim (expand) module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.namespace (expand)" references: [] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.minio.output.installed (expand)" references: [module.minio.helm_release.minio (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)] +2025-07-11T08:52:37.535+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_config (expand)" references: [module.monitoring.var.k8s_config_yaml (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.postgresql.helm_release.postgresql (expand)" references: [module.postgresql.var.wait_on (expand) module.postgresql.kubernetes_secret.postgresql_auth (expand) module.postgresql.var.enabled (expand) module.postgresql.kubernetes_namespace.postgresql (expand) module.postgresql.var.username (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_auth (expand)" references: [module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_secret.argocd-tls (expand)" references: [module.argocd.data.kubernetes_secret.bridge-tls (expand) module.argocd.data.kubernetes_secret.bridge-tls (expand) module.argocd.kubernetes_namespace.argocd (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.rabbitmq.local.k8s_host (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_host (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/local\"]" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_host (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (expand)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand)" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_root_password (expand)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)" references: [module.tenant-365zon.var.user_id (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_username (expand)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.redis (close)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (expand)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (close)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings (expand)" references: [module.tenant-365zon.var.mongodb_connection_string (expand) module.tenant-365zon.var.rabbitmq_connection_string (expand) module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.admin_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "var.minio_server" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.minio.var.namespace (expand)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "output.rabbitmq-connection-string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-argocd.var.domain (expand) module.zitadel-argocd.var.jwt_profile_file (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.mongodb.helm_release.mongodb (expand)" references: [module.mongodb.var.wait_on (expand) module.mongodb.kubernetes_secret.mongodb_auth (expand) module.mongodb.kubernetes_namespace.mongodb (expand) module.mongodb.var.usernames (expand) module.mongodb.var.databases (expand) module.mongodb.var.replicas (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "local.cluster_shortname (expand)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (close)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.minio (close)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (close)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_server (expand)" references: [module.minio.output.minio_server (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (expand)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (close)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.redis.helm_release.redis (expand)" references: [module.redis.var.wait_on (expand) module.redis.kubernetes_namespace.redis (expand) module.redis.var.architecture (validation) module.redis.var.architecture (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.usernames (expand)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_config (expand)" references: [module.minio.var.k8s_config_yaml (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.installed (expand)" references: [module.argocd.helm_release.argocd (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.mongodb (expand)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.minio.var.service_name (expand)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.uri (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.idp_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_host (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_config (expand)" references: [module.tenant-365zon.var.k8s_config_yaml (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.admin_password (expand)" references: [module.argocd.random_password.admin_password (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.installed (expand)" references: [module.rabbitmq.helm_release.rabbitmq (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "var.vault_addr" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_auth (expand)" references: [module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "output.minio-root-access-key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.redis.random_password.redis (expand)" references: [] +2025-07-11T08:52:37.536+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (close)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_id (expand)" references: [module.zitadel-argocd.output.client_id (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.grpc_service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-bootstrap.var.domain (expand) module.zitadel-bootstrap.var.jwt_profile_file (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/null\"]" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_auth (expand)" references: [module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.monitoring.random_password.grafana_admin_password (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.minio.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (close)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.databases (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/aminueza/minio\"]" references: [var.access_key var.secret_key var.minio_server var.region] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_secret_key (expand)" references: [module.tenant-365zon.module.minio.output.secret_key (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "var.endpoints" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_username (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_uri (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.minio.local.service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack (expand)" references: [module.monitoring.var.wait_on (expand) module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.var.remote_write_url (expand) module.monitoring.var.remote_read_url (expand) module.monitoring.random_password.grafana_admin_password (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.name (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_url (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.display_on_homepage (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "output.monitoring (expand)" references: [module.monitoring.output.access_instructions (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "output.mongodb-connection-string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (close)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_host (expand)" references: [module.minio.local.k8s_config (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_config (expand)" references: [module.postgresql.var.k8s_config_yaml (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.argocd (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "local.k8s_config (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.logoutSuffix (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.output.installed (expand)" references: [module.cluster-init.module.longhorn.output.installed (expand) module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_user_password (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_namespace.mongodb (expand)" references: [module.mongodb.var.namespace (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)" references: [module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.local.argocd_uri (expand)" references: [module.zitadel-argocd.var.argocd_service_domain (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (close)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.argocd.random_password.admin_password (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.kubernetes_secret.bridge-tls (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.name (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.service_name (expand)" references: [] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_host (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:52:37.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (expand)" references: [] +2025-07-11T08:52:37.615+0200 [DEBUG] Starting graph walk: walkPlan +2025-07-11T08:52:37.617+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.617+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.624+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5"] +2025-07-11T08:52:37.624+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 pid=968901 +2025-07-11T08:52:37.624+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 +2025-07-11T08:52:37.627+0200 [INFO] provider.terraform-provider-local_v2.5.3_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.627+0200" +2025-07-11T08:52:37.639+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:37.639+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: plugin address: address=/tmp/plugin3381059374 network=unix timestamp="2025-07-11T08:52:37.639+0200" +2025-07-11T08:52:37.647+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.647+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.651+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5"] +2025-07-11T08:52:37.651+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 pid=968909 +2025-07-11T08:52:37.651+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 +2025-07-11T08:52:37.654+0200 [INFO] provider.terraform-provider-random_v3.7.2_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.654+0200" +2025-07-11T08:52:37.666+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:37.666+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: plugin address: address=/tmp/plugin1729847154 network=unix timestamp="2025-07-11T08:52:37.666+0200" +2025-07-11T08:52:37.674+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.674+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.678+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:52:37.678+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=968917 +2025-07-11T08:52:37.678+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:52:37.692+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.692+0200" +2025-07-11T08:52:37.706+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:37.706+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin663774037 network=unix timestamp="2025-07-11T08:52:37.706+0200" +2025-07-11T08:52:37.713+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.714+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.714+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.718+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5"] +2025-07-11T08:52:37.718+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 pid=968932 +2025-07-11T08:52:37.718+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 +2025-07-11T08:52:37.721+0200 [INFO] provider.terraform-provider-external_v2.3.5_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.721+0200" +2025-07-11T08:52:37.733+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:37.733+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: plugin address: address=/tmp/plugin430482429 network=unix timestamp="2025-07-11T08:52:37.733+0200" +2025-07-11T08:52:37.741+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.741+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.745+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:52:37.746+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=968941 +2025-07-11T08:52:37.746+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:52:37.764+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.764+0200" +2025-07-11T08:52:37.773+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1620392188 network=unix timestamp="2025-07-11T08:52:37.773+0200" +2025-07-11T08:52:37.773+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:37.781+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.781+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.785+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:52:37.785+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=968961 +2025-07-11T08:52:37.785+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:52:37.791+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.791+0200" +2025-07-11T08:52:37.819+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:37.819+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin184009627 network=unix timestamp="2025-07-11T08:52:37.819+0200" +2025-07-11T08:52:37.831+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.831+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.832+0200 [WARN] ValidateProviderConfig from "provider[\"registry.terraform.io/aminueza/minio\"]" changed the config value, but that value is unused +2025-07-11T08:52:37.835+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5"] +2025-07-11T08:52:37.836+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 pid=968979 +2025-07-11T08:52:37.836+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 +2025-07-11T08:52:37.838+0200 [INFO] provider.terraform-provider-null_v3.2.4_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.838+0200" +2025-07-11T08:52:37.850+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:37.850+0200 [DEBUG] provider.terraform-provider-null_v3.2.4_x5: plugin address: address=/tmp/plugin1900121319 network=unix timestamp="2025-07-11T08:52:37.850+0200" +2025-07-11T08:52:37.858+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.858+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.862+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:52:37.862+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=968987 +2025-07-11T08:52:37.862+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:52:37.876+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.875+0200" +2025-07-11T08:52:37.887+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:37.887+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin2955891289 network=unix timestamp="2025-07-11T08:52:37.887+0200" +2025-07-11T08:52:37.895+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.895+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.895+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.900+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:52:37.901+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=969000 +2025-07-11T08:52:37.901+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:52:37.919+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.918+0200" +2025-07-11T08:52:37.927+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:37.927+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin3423876918 network=unix timestamp="2025-07-11T08:52:37.927+0200" +2025-07-11T08:52:37.934+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.934+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.939+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:52:37.939+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=969018 +2025-07-11T08:52:37.939+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:52:37.952+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.952+0200" +2025-07-11T08:52:37.963+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:37.963+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: network=unix address=/tmp/plugin2880172166 timestamp="2025-07-11T08:52:37.963+0200" +2025-07-11T08:52:37.971+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:37.971+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:37.971+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:37.972+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:52:37 [DEBUG] MinIO SSL client transport configured successfully: timestamp="2025-07-11T08:52:37.972+0200" +2025-07-11T08:52:37.972+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=abe57f94-11fb-be57-601b-44cd83d670a9 tf_rpc=ConfigureProvider timestamp="2025-07-11T08:52:37.972+0200" +2025-07-11T08:52:37.972+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=abe57f94-11fb-be57-601b-44cd83d670a9 tf_rpc=ConfigureProvider timestamp="2025-07-11T08:52:37.972+0200" +2025-07-11T08:52:37.972+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:37 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:52:37.972+0200 [DEBUG] ReferenceTransformer: "data.minio_s3_object.k8s_yaml" references: [] +2025-07-11T08:52:37.972+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=abe57f94-11fb-be57-601b-44cd83d670a9 tf_rpc=ConfigureProvider timestamp="2025-07-11T08:52:37.972+0200" +2025-07-11T08:52:37.973+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring" references: [] +2025-07-11T08:52:37.976+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:52:37.976+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=969032 +2025-07-11T08:52:37.976+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:52:37.996+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:37.996+0200" +2025-07-11T08:52:38.004+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:38.004+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1284812105 network=unix timestamp="2025-07-11T08:52:38.004+0200" +2025-07-11T08:52:38.012+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:38.012+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:38.012+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_root_password" references: [] +2025-07-11T08:52:38.012+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:38 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:52:38.012+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_user_password" references: [] +2025-07-11T08:52:38.013+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: tf_req_id=8f9d4db0-e5f9-8703-2df8-55c40ab035d5 tf_rpc=ConfigureProvider @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:38.012+0200" +2025-07-11T08:52:38.013+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider tf_req_id=8f9d4db0-e5f9-8703-2df8-55c40ab035d5 timestamp="2025-07-11T08:52:38.013+0200" +2025-07-11T08:52:38.013+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.random_password.tenant" references: [] +2025-07-11T08:52:38.013+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8f9d4db0-e5f9-8703-2df8-55c40ab035d5 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 timestamp="2025-07-11T08:52:38.013+0200" +2025-07-11T08:52:38.013+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.random_password.password" references: [] +2025-07-11T08:52:38.013+0200 [DEBUG] ReferenceTransformer: "module.zitadel.random_password.zitadel_masterkey" references: [] +2025-07-11T08:52:38.013+0200 [DEBUG] ReferenceTransformer: "module.monitoring.random_password.grafana_admin_password" references: [] +2025-07-11T08:52:38.013+0200 [DEBUG] ReferenceTransformer: "module.argocd.random_password.admin_password" references: [] +2025-07-11T08:52:38.013+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_secret_key" references: [] +2025-07-11T08:52:38.013+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_access_key" references: [] +2025-07-11T08:52:38.014+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_namespace.postgresql[0]" references: [] +2025-07-11T08:52:38.014+0200 [DEBUG] ReferenceTransformer: "module.redis.random_password.redis" references: [] +2025-07-11T08:52:38.014+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_replica_set_key" references: [] +2025-07-11T08:52:38.014+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_root_password" references: [] +2025-07-11T08:52:38.016+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 args=[".terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1"] +2025-07-11T08:52:38.016+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 pid=969048 +2025-07-11T08:52:38.016+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 +2025-07-11T08:52:38.019+0200 [INFO] provider.terraform-provider-slugify_v0.1.1: configuring server automatic mTLS: timestamp="2025-07-11T08:52:38.019+0200" +2025-07-11T08:52:38.030+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:38.030+0200 [DEBUG] provider.terraform-provider-slugify_v0.1.1: plugin address: address=/tmp/plugin3122702413 network=unix timestamp="2025-07-11T08:52:38.030+0200" +2025-07-11T08:52:38.039+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:38.039+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:38.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_req_id=b83148c1-215b-9627-9d17-e3c635159381 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider timestamp="2025-07-11T08:52:38.039+0200" +2025-07-11T08:52:38.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 tf_req_id=b83148c1-215b-9627-9d17-e3c635159381 tf_rpc=ConfigureProvider timestamp="2025-07-11T08:52:38.040+0200" +2025-07-11T08:52:38.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_req_id=b83148c1-215b-9627-9d17-e3c635159381 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:38.040+0200" +2025-07-11T08:52:38.044+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:52:38.044+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=969061 +2025-07-11T08:52:38.044+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:52:38.056+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:38.056+0200" +2025-07-11T08:52:38.068+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:38.068+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin1211543693 network=unix timestamp="2025-07-11T08:52:38.068+0200" +2025-07-11T08:52:38.076+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:38.076+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:38.076+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:38.082+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:52:38.082+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=969074 +2025-07-11T08:52:38.082+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:52:38.102+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:38.102+0200" +2025-07-11T08:52:38.110+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:38.110+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin3545818460 network=unix timestamp="2025-07-11T08:52:38.110+0200" +2025-07-11T08:52:38.117+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:38.117+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:38.122+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:52:38.122+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=969090 +2025-07-11T08:52:38.122+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:52:38.141+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:38.140+0200" +2025-07-11T08:52:38.149+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin3362338461 network=unix timestamp="2025-07-11T08:52:38.149+0200" +2025-07-11T08:52:38.149+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:38.156+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:38.156+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:38.162+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:52:38.162+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=969108 +2025-07-11T08:52:38.162+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:52:38.180+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:38.180+0200" +2025-07-11T08:52:38.188+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:38.188+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin263110213 network=unix timestamp="2025-07-11T08:52:38.188+0200" +2025-07-11T08:52:38.195+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:38.195+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:38.196+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:38 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:52:38.196+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:38 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:52:38.196+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ce94aa21-2182-d3e8-7e8f-1c061bdcb2d0 tf_rpc=ConfigureProvider timestamp="2025-07-11T08:52:38.196+0200" +2025-07-11T08:52:38.197+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ce94aa21-2182-d3e8-7e8f-1c061bdcb2d0 timestamp="2025-07-11T08:52:38.196+0200" +2025-07-11T08:52:38.197+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:38 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:52:38.197+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_req_id=ce94aa21-2182-d3e8-7e8f-1c061bdcb2d0 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:38.197+0200" +2025-07-11T08:52:38.197+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_namespace.mongodb" references: [] +2025-07-11T08:52:38.197+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.kubernetes_secret.bridge-tls" references: [] +2025-07-11T08:52:38.198+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_namespace.argocd" references: [] +2025-07-11T08:52:38.201+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:52:38.201+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=969125 +2025-07-11T08:52:38.201+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:52:38.220+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:38.220+0200" +2025-07-11T08:52:38.228+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:38.228+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: network=unix address=/tmp/plugin4195337509 timestamp="2025-07-11T08:52:38.228+0200" +2025-07-11T08:52:38.236+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:38.236+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:38.240+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:52:38.241+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=969143 +2025-07-11T08:52:38.241+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:52:38.253+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:38.253+0200" +2025-07-11T08:52:38.265+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:38.265+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: network=unix address=/tmp/plugin3615560183 timestamp="2025-07-11T08:52:38.265+0200" +2025-07-11T08:52:38.273+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:38.273+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:38.273+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:38.278+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:52:38.278+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=969157 +2025-07-11T08:52:38.278+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:52:38.296+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:38.296+0200" +2025-07-11T08:52:38.305+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:38.305+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1847388411 network=unix timestamp="2025-07-11T08:52:38.305+0200" +2025-07-11T08:52:38.312+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:38.312+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:38.313+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:38 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:52:38.313+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:38 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:52:38.313+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_req_id=00fa2c97-7103-79e0-9572-3f5a585b016b @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider timestamp="2025-07-11T08:52:38.313+0200" +2025-07-11T08:52:38.313+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_req_id=00fa2c97-7103-79e0-9572-3f5a585b016b tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:38.313+0200" +2025-07-11T08:52:38.313+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=00fa2c97-7103-79e0-9572-3f5a585b016b tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm timestamp="2025-07-11T08:52:38.313+0200" +2025-07-11T08:52:38.314+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config" references: [] +2025-07-11T08:52:38.317+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:52:38.317+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=969175 +2025-07-11T08:52:38.317+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:52:38.330+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:38.330+0200" +2025-07-11T08:52:38.342+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin3513909507 network=unix timestamp="2025-07-11T08:52:38.342+0200" +2025-07-11T08:52:38.342+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:38.350+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:38.350+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:38.350+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:38.355+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:52:38.355+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=969189 +2025-07-11T08:52:38.355+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:52:38.373+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:52:38.373+0200" +2025-07-11T08:52:38.381+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:38.381+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin3339144522 network=unix timestamp="2025-07-11T08:52:38.381+0200" +2025-07-11T08:52:38.390+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:38.390+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:38.394+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:52:38.394+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=969206 +2025-07-11T08:52:38.394+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:52:38.408+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:38.407+0200" +2025-07-11T08:52:38.420+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin1675106095 network=unix timestamp="2025-07-11T08:52:38.420+0200" +2025-07-11T08:52:38.420+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:38.427+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:38.427+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:38.427+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:38.432+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:52:38.433+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=969220 +2025-07-11T08:52:38.433+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:52:38.445+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:38.445+0200" +2025-07-11T08:52:38.457+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:38.457+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin4008232778 network=unix timestamp="2025-07-11T08:52:38.457+0200" +2025-07-11T08:52:38.465+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:38.467+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:38 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:52:38.467+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:38 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:52:38.467+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1c218f19-2d7c-e1f7-b7d8-b59244d11fde config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_rpc=ConfigureProvider timestamp="2025-07-11T08:52:38.466+0200" +2025-07-11T08:52:38.467+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1c218f19-2d7c-e1f7-b7d8-b59244d11fde tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" @module=helm timestamp="2025-07-11T08:52:38.467+0200" +2025-07-11T08:52:38.467+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @module=helm tf_req_id=cc4a261a-806b-f003-e948-864ce0fdb4d8 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:38.466+0200" +2025-07-11T08:52:38.467+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm tf_req_id=cc4a261a-806b-f003-e948-864ce0fdb4d8 timestamp="2025-07-11T08:52:38.467+0200" +2025-07-11T08:52:38.467+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc4a261a-806b-f003-e948-864ce0fdb4d8 timestamp="2025-07-11T08:52:38.467+0200" +2025-07-11T08:52:38.467+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1c218f19-2d7c-e1f7-b7d8-b59244d11fde tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm timestamp="2025-07-11T08:52:38.467+0200" +2025-07-11T08:52:38.468+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_namespace.zitadel[0]" references: [] +2025-07-11T08:52:38.468+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_namespace.redis" references: [] +2025-07-11T08:52:38.468+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: tf_req_id=34b1296c-16fd-2afd-31d7-87ce56541b6e tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:38.468+0200" +2025-07-11T08:52:38.469+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:38 [INFO] Checking namespace monitoring +2025-07-11T08:52:38.469+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=34b1296c-16fd-2afd-31d7-87ce56541b6e tf_rpc=ConfigureProvider timestamp="2025-07-11T08:52:38.468+0200" +2025-07-11T08:52:38.469+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_req_id=34b1296c-16fd-2afd-31d7-87ce56541b6e tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:38.468+0200" +2025-07-11T08:52:38.469+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_body="" tf_http_req_version=HTTP/1.1 tf_http_trans_id=1d5a81fd-c4b3-5481-ab43-35c6b461b392 User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_method=GET @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Accept="application/json, */*" Host=rancher.bridge.fourlights.dev Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring timestamp="2025-07-11T08:52:38.469+0200" +2025-07-11T08:52:38.470+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=c195a430-345a-301a-1d56-e5910480e69e @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=override_special tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.470+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=fb5f2e21-a6ee-6408-c04e-17ccc4377f14 tf_resource_type=random_password tf_attribute_path=min_lower tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.470+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=special tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=c195a430-345a-301a-1d56-e5910480e69e tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.470+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=fb5f2e21-a6ee-6408-c04e-17ccc4377f14 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.470+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=fb5f2e21-a6ee-6408-c04e-17ccc4377f14 timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.470+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @module=sdk.framework tf_attribute_path=special tf_req_id=fb5f2e21-a6ee-6408-c04e-17ccc4377f14 tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.470+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_lower tf_req_id=c195a430-345a-301a-1d56-e5910480e69e tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.470+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=min_upper tf_req_id=074bc6ec-bdec-0844-265a-29be8e25cfdc timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.470+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=bcrypt_hash tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=c195a430-345a-301a-1d56-e5910480e69e tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.470+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=random_password tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=074bc6ec-bdec-0844-265a-29be8e25cfdc timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.470+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=result tf_req_id=074bc6ec-bdec-0844-265a-29be8e25cfdc tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=fb5f2e21-a6ee-6408-c04e-17ccc4377f14 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6c3c1292-c5e8-22c0-b136-9077b2c0fd40 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=lower tf_resource_type=random_password timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=6c3c1292-c5e8-22c0-b136-9077b2c0fd40 tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=special tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=6c3c1292-c5e8-22c0-b136-9077b2c0fd40 tf_resource_type=random_password timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=numeric tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=074bc6ec-bdec-0844-265a-29be8e25cfdc @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=074bc6ec-bdec-0844-265a-29be8e25cfdc tf_resource_type=random_password timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=bcrypt_hash tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=1c50ec52-3e4e-b853-1edf-dbed89b620b8 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=id tf_req_id=c195a430-345a-301a-1d56-e5910480e69e tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=1c50ec52-3e4e-b853-1edf-dbed89b620b8 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=id tf_req_id=584dbc39-0f2d-f883-f9bd-ab93e34207f7 tf_resource_type=random_password tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=fb5f2e21-a6ee-6408-c04e-17ccc4377f14 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=40458cf2-16b2-14af-a56b-6db7f5986221 @module=sdk.framework tf_attribute_path=length tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=584dbc39-0f2d-f883-f9bd-ab93e34207f7 tf_resource_type=random_password timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=fb5f2e21-a6ee-6408-c04e-17ccc4377f14 tf_resource_type=random_password tf_attribute_path=bcrypt_hash timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=fb5f2e21-a6ee-6408-c04e-17ccc4377f14 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=number tf_req_id=c195a430-345a-301a-1d56-e5910480e69e tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_req_id=074bc6ec-bdec-0844-265a-29be8e25cfdc timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=1c50ec52-3e4e-b853-1edf-dbed89b620b8 @module=sdk.framework timestamp="2025-07-11T08:52:38.470+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_req_id=1c50ec52-3e4e-b853-1edf-dbed89b620b8 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=074bc6ec-bdec-0844-265a-29be8e25cfdc tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=6c3c1292-c5e8-22c0-b136-9077b2c0fd40 @module=sdk.framework timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=override_special tf_req_id=074bc6ec-bdec-0844-265a-29be8e25cfdc @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.471+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=c195a430-345a-301a-1d56-e5910480e69e tf_resource_type=random_password @module=sdk.framework timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=1c50ec52-3e4e-b853-1edf-dbed89b620b8 tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=numeric tf_req_id=40458cf2-16b2-14af-a56b-6db7f5986221 tf_resource_type=random_password timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=074bc6ec-bdec-0844-265a-29be8e25cfdc tf_resource_type=random_password tf_rpc=ReadResource tf_attribute_path=length @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=074bc6ec-bdec-0844-265a-29be8e25cfdc tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=bcrypt_hash tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=id tf_req_id=074bc6ec-bdec-0844-265a-29be8e25cfdc tf_resource_type=random_password tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6c3c1292-c5e8-22c0-b136-9077b2c0fd40 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=numeric tf_req_id=c195a430-345a-301a-1d56-e5910480e69e timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=bcrypt_hash @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6c3c1292-c5e8-22c0-b136-9077b2c0fd40 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_attribute_path=id tf_req_id=6c3c1292-c5e8-22c0-b136-9077b2c0fd40 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @module=sdk.framework tf_req_id=c195a430-345a-301a-1d56-e5910480e69e tf_resource_type=random_password timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=fb5f2e21-a6ee-6408-c04e-17ccc4377f14 tf_rpc=ReadResource tf_attribute_path=min_special timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=fb5f2e21-a6ee-6408-c04e-17ccc4377f14 @module=sdk.framework tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=fb5f2e21-a6ee-6408-c04e-17ccc4377f14 tf_resource_type=random_password timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=numeric tf_req_id=6c3c1292-c5e8-22c0-b136-9077b2c0fd40 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=584dbc39-0f2d-f883-f9bd-ab93e34207f7 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=584dbc39-0f2d-f883-f9bd-ab93e34207f7 tf_rpc=ReadResource tf_resource_type=random_password timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=numeric tf_req_id=584dbc39-0f2d-f883-f9bd-ab93e34207f7 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password tf_rpc=ReadResource tf_req_id=584dbc39-0f2d-f883-f9bd-ab93e34207f7 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=special tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=584dbc39-0f2d-f883-f9bd-ab93e34207f7 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_attribute_path=upper timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password tf_rpc=ReadResource tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=584dbc39-0f2d-f883-f9bd-ab93e34207f7 timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_req_id=1c50ec52-3e4e-b853-1edf-dbed89b620b8 timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=min_upper tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=40458cf2-16b2-14af-a56b-6db7f5986221 timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.472+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=074bc6ec-bdec-0844-265a-29be8e25cfdc tf_attribute_path=min_special tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=fb5f2e21-a6ee-6408-c04e-17ccc4377f14 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=074bc6ec-bdec-0844-265a-29be8e25cfdc tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=074bc6ec-bdec-0844-265a-29be8e25cfdc tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=fb5f2e21-a6ee-6408-c04e-17ccc4377f14 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource tf_attribute_path=length tf_req_id=c195a430-345a-301a-1d56-e5910480e69e tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=lower tf_req_id=c195a430-345a-301a-1d56-e5910480e69e tf_resource_type=random_password @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6c3c1292-c5e8-22c0-b136-9077b2c0fd40 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_lower tf_req_id=a3f4dcbe-9689-8320-d0da-f3c27097d26f tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=a3f4dcbe-9689-8320-d0da-f3c27097d26f tf_resource_type=random_password timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=numeric @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=a3f4dcbe-9689-8320-d0da-f3c27097d26f tf_resource_type=random_password timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource tf_attribute_path=number tf_req_id=6c3c1292-c5e8-22c0-b136-9077b2c0fd40 timestamp="2025-07-11T08:52:38.471+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=584dbc39-0f2d-f883-f9bd-ab93e34207f7 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=min_upper tf_resource_type=random_password timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @module=sdk.framework tf_req_id=c195a430-345a-301a-1d56-e5910480e69e tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource tf_req_id=40458cf2-16b2-14af-a56b-6db7f5986221 tf_resource_type=random_password timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=1c50ec52-3e4e-b853-1edf-dbed89b620b8 @module=sdk.framework tf_resource_type=random_password timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=c195a430-345a-301a-1d56-e5910480e69e tf_resource_type=random_password tf_rpc=ReadResource tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=6c3c1292-c5e8-22c0-b136-9077b2c0fd40 tf_resource_type=random_password timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_numeric tf_resource_type=random_password tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=a3f4dcbe-9689-8320-d0da-f3c27097d26f tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=40458cf2-16b2-14af-a56b-6db7f5986221 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=length tf_req_id=1c50ec52-3e4e-b853-1edf-dbed89b620b8 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=40458cf2-16b2-14af-a56b-6db7f5986221 tf_resource_type=random_password tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.473+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=special tf_req_id=1c50ec52-3e4e-b853-1edf-dbed89b620b8 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.474+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=lower tf_req_id=40458cf2-16b2-14af-a56b-6db7f5986221 tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.474+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=1c50ec52-3e4e-b853-1edf-dbed89b620b8 tf_rpc=ReadResource tf_attribute_path=lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.474+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=1c50ec52-3e4e-b853-1edf-dbed89b620b8 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.474+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_special tf_req_id=c195a430-345a-301a-1d56-e5910480e69e tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.474+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6c3c1292-c5e8-22c0-b136-9077b2c0fd40 tf_resource_type=random_password tf_rpc=ReadResource tf_attribute_path=min_numeric @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.474+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=584dbc39-0f2d-f883-f9bd-ab93e34207f7 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=length timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.474+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=a3f4dcbe-9689-8320-d0da-f3c27097d26f tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.474+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_numeric tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=1c50ec52-3e4e-b853-1edf-dbed89b620b8 @module=sdk.framework timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.474+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=number @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=a3f4dcbe-9689-8320-d0da-f3c27097d26f tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.474+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_special tf_req_id=6c3c1292-c5e8-22c0-b136-9077b2c0fd40 tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.474+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_req_id=40458cf2-16b2-14af-a56b-6db7f5986221 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:52:38.472+0200" +2025-07-11T08:52:38.474+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=a3f4dcbe-9689-8320-d0da-f3c27097d26f timestamp="2025-07-11T08:52:38.473+0200" +2025-07-11T08:52:38.474+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=lower tf_req_id=a3f4dcbe-9689-8320-d0da-f3c27097d26f tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:52:38.473+0200" +2025-07-11T08:52:38.474+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=id tf_req_id=a3f4dcbe-9689-8320-d0da-f3c27097d26f tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.473+0200" +2025-07-11T08:52:38.475+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_numeric tf_resource_type=random_password tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=40458cf2-16b2-14af-a56b-6db7f5986221 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:38.473+0200" +2025-07-11T08:52:38.475+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=40458cf2-16b2-14af-a56b-6db7f5986221 tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.473+0200" +2025-07-11T08:52:38.475+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=40458cf2-16b2-14af-a56b-6db7f5986221 tf_resource_type=random_password tf_rpc=ReadResource tf_attribute_path=special tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:52:38.473+0200" +2025-07-11T08:52:38.475+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=bcrypt_hash tf_resource_type=random_password @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=40458cf2-16b2-14af-a56b-6db7f5986221 tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.473+0200" +2025-07-11T08:52:38.475+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=upper tf_req_id=a3f4dcbe-9689-8320-d0da-f3c27097d26f tf_resource_type=random_password tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:38.473+0200" +2025-07-11T08:52:38.475+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=min_upper tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=1c50ec52-3e4e-b853-1edf-dbed89b620b8 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.473+0200" +2025-07-11T08:52:38.475+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=40458cf2-16b2-14af-a56b-6db7f5986221 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.473+0200" +2025-07-11T08:52:38.475+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_lower tf_req_id=584dbc39-0f2d-f883-f9bd-ab93e34207f7 timestamp="2025-07-11T08:52:38.473+0200" +2025-07-11T08:52:38.475+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=min_special tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=584dbc39-0f2d-f883-f9bd-ab93e34207f7 tf_resource_type=random_password timestamp="2025-07-11T08:52:38.473+0200" +2025-07-11T08:52:38.475+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=bcrypt_hash tf_req_id=584dbc39-0f2d-f883-f9bd-ab93e34207f7 tf_resource_type=random_password tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.473+0200" +2025-07-11T08:52:38.475+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=a3f4dcbe-9689-8320-d0da-f3c27097d26f tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.473+0200" +2025-07-11T08:52:38.475+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=special tf_req_id=a3f4dcbe-9689-8320-d0da-f3c27097d26f tf_resource_type=random_password tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:52:38.473+0200" +2025-07-11T08:52:38.475+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=a3f4dcbe-9689-8320-d0da-f3c27097d26f tf_attribute_path=bcrypt_hash tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.473+0200" +2025-07-11T08:52:38.487+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:38.487+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:38.487+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:38 [INFO] Checking namespace postgresql +2025-07-11T08:52:38.488+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_method=GET tf_http_req_version=HTTP/1.1 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Accept="application/json, */*" Host=rancher.bridge.fourlights.dev tf_http_op_type=request tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/postgresql tf_http_trans_id=74b1e057-f3ea-2b95-5ebd-727218e82d2a @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept-Encoding=gzip new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." @module=kubernetes.Kubernetes User-Agent="HashiCorp/1.0 Terraform/1.12.1" timestamp="2025-07-11T08:52:38.487+0200" +2025-07-11T08:52:38.488+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=84bb1b2c-a510-e879-32cb-117ac41ed85e tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=numeric tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.487+0200" +2025-07-11T08:52:38.488+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_upper tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=84bb1b2c-a510-e879-32cb-117ac41ed85e tf_resource_type=random_password @module=sdk.framework timestamp="2025-07-11T08:52:38.487+0200" +2025-07-11T08:52:38.488+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=result tf_req_id=84bb1b2c-a510-e879-32cb-117ac41ed85e tf_resource_type=random_password tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.487+0200" +2025-07-11T08:52:38.488+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=84bb1b2c-a510-e879-32cb-117ac41ed85e @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.487+0200" +2025-07-11T08:52:38.488+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_attribute_path=bcrypt_hash tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=84bb1b2c-a510-e879-32cb-117ac41ed85e timestamp="2025-07-11T08:52:38.487+0200" +2025-07-11T08:52:38.488+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=id tf_req_id=84bb1b2c-a510-e879-32cb-117ac41ed85e tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.487+0200" +2025-07-11T08:52:38.488+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=93dbcc26-45aa-173c-18f1-1e8f708c08cf @module=sdk.framework timestamp="2025-07-11T08:52:38.487+0200" +2025-07-11T08:52:38.488+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=special tf_req_id=93dbcc26-45aa-173c-18f1-1e8f708c08cf tf_resource_type=random_password tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:38.487+0200" +2025-07-11T08:52:38.488+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=84bb1b2c-a510-e879-32cb-117ac41ed85e tf_resource_type=random_password tf_rpc=ReadResource tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.487+0200" +2025-07-11T08:52:38.488+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_numeric tf_req_id=93dbcc26-45aa-173c-18f1-1e8f708c08cf tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:52:38.487+0200" +2025-07-11T08:52:38.488+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=result tf_req_id=93dbcc26-45aa-173c-18f1-1e8f708c08cf @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:52:38.487+0200" +2025-07-11T08:52:38.488+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=93dbcc26-45aa-173c-18f1-1e8f708c08cf @module=sdk.framework tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.487+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=84bb1b2c-a510-e879-32cb-117ac41ed85e tf_rpc=ReadResource tf_attribute_path=length tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.487+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=84bb1b2c-a510-e879-32cb-117ac41ed85e tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.487+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=717a013e-80d8-fd19-d61b-b444b5e0f816 tf_resource_type=random_password tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:52:38.487+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_special tf_resource_type=random_password tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=93dbcc26-45aa-173c-18f1-1e8f708c08cf timestamp="2025-07-11T08:52:38.487+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=717a013e-80d8-fd19-d61b-b444b5e0f816 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.487+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=84bb1b2c-a510-e879-32cb-117ac41ed85e tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.487+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=93dbcc26-45aa-173c-18f1-1e8f708c08cf tf_resource_type=random_password @module=sdk.framework tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=bcrypt_hash timestamp="2025-07-11T08:52:38.488+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=717a013e-80d8-fd19-d61b-b444b5e0f816 tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.488+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=93dbcc26-45aa-173c-18f1-1e8f708c08cf tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=override_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:52:38.488+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=lower tf_req_id=717a013e-80d8-fd19-d61b-b444b5e0f816 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.488+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=84bb1b2c-a510-e879-32cb-117ac41ed85e tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_special @module=sdk.framework timestamp="2025-07-11T08:52:38.488+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=bcrypt_hash tf_req_id=717a013e-80d8-fd19-d61b-b444b5e0f816 tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.488+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=84bb1b2c-a510-e879-32cb-117ac41ed85e tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=special tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:52:38.488+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_req_id=717a013e-80d8-fd19-d61b-b444b5e0f816 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.488+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=717a013e-80d8-fd19-d61b-b444b5e0f816 timestamp="2025-07-11T08:52:38.488+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=717a013e-80d8-fd19-d61b-b444b5e0f816 tf_resource_type=random_password @module=sdk.framework tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.488+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_lower tf_req_id=93dbcc26-45aa-173c-18f1-1e8f708c08cf tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:52:38.488+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=93dbcc26-45aa-173c-18f1-1e8f708c08cf @module=sdk.framework tf_attribute_path=number tf_resource_type=random_password timestamp="2025-07-11T08:52:38.488+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password tf_req_id=93dbcc26-45aa-173c-18f1-1e8f708c08cf tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:52:38.488+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=717a013e-80d8-fd19-d61b-b444b5e0f816 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:38.488+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=717a013e-80d8-fd19-d61b-b444b5e0f816 tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=upper timestamp="2025-07-11T08:52:38.488+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=93dbcc26-45aa-173c-18f1-1e8f708c08cf timestamp="2025-07-11T08:52:38.488+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=93dbcc26-45aa-173c-18f1-1e8f708c08cf tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.488+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=special tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_req_id=717a013e-80d8-fd19-d61b-b444b5e0f816 timestamp="2025-07-11T08:52:38.488+0200" +2025-07-11T08:52:38.489+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=717a013e-80d8-fd19-d61b-b444b5e0f816 tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:52:38.489+0200" +2025-07-11T08:52:38.490+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @module=sdk.framework tf_req_id=84bb1b2c-a510-e879-32cb-117ac41ed85e tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.489+0200" +2025-07-11T08:52:38.490+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=93dbcc26-45aa-173c-18f1-1e8f708c08cf tf_attribute_path=lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.488+0200" +2025-07-11T08:52:38.490+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=min_lower tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=717a013e-80d8-fd19-d61b-b444b5e0f816 tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.489+0200" +2025-07-11T08:52:38.492+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:52:38.492+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=969244 +2025-07-11T08:52:38.492+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:52:38.505+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:38.505+0200" +2025-07-11T08:52:38.517+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin405778048 network=unix timestamp="2025-07-11T08:52:38.517+0200" +2025-07-11T08:52:38.517+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:38.524+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:38.526+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=66a6c8d9-dac3-92cb-3de5-40cf142a5ee9 tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:52:38.525+0200" +2025-07-11T08:52:38.526+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=66a6c8d9-dac3-92cb-3de5-40cf142a5ee9 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=number tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.525+0200" +2025-07-11T08:52:38.526+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=66a6c8d9-dac3-92cb-3de5-40cf142a5ee9 timestamp="2025-07-11T08:52:38.525+0200" +2025-07-11T08:52:38.526+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=66a6c8d9-dac3-92cb-3de5-40cf142a5ee9 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=numeric timestamp="2025-07-11T08:52:38.525+0200" +2025-07-11T08:52:38.526+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=length tf_req_id=66a6c8d9-dac3-92cb-3de5-40cf142a5ee9 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.526+0200" +2025-07-11T08:52:38.526+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=66a6c8d9-dac3-92cb-3de5-40cf142a5ee9 tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.526+0200" +2025-07-11T08:52:38.526+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:38 [INFO] Reading secret bridge-tls +2025-07-11T08:52:38.527+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=id tf_resource_type=random_password tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=66a6c8d9-dac3-92cb-3de5-40cf142a5ee9 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:38.526+0200" +2025-07-11T08:52:38.527+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=66a6c8d9-dac3-92cb-3de5-40cf142a5ee9 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_numeric tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.526+0200" +2025-07-11T08:52:38.527+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_version=HTTP/1.1 tf_http_trans_id=e3c384f6-c7d8-1f82-62e3-bd609f18090d Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_method=GET @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/cert-manager/secrets/bridge-tls Accept-Encoding=gzip timestamp="2025-07-11T08:52:38.527+0200" +2025-07-11T08:52:38.527+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=66a6c8d9-dac3-92cb-3de5-40cf142a5ee9 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=override_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.527+0200" +2025-07-11T08:52:38.527+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=66a6c8d9-dac3-92cb-3de5-40cf142a5ee9 tf_resource_type=random_password timestamp="2025-07-11T08:52:38.527+0200" +2025-07-11T08:52:38.527+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f84a935a-b17b-1aa3-bbf9-177e8a3af20a tf_rpc=ConfigureProvider config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" timestamp="2025-07-11T08:52:38.527+0200" +2025-07-11T08:52:38.527+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:38 [INFO] Checking namespace mongodb +2025-07-11T08:52:38.527+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_body="" tf_http_req_method=GET @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev tf_http_op_type=request tf_http_trans_id=de220294-64f2-e362-088c-ac3f69887179 tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/mongodb tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T08:52:38.527+0200" +2025-07-11T08:52:38.527+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_attribute_path=min_upper tf_req_id=66a6c8d9-dac3-92cb-3de5-40cf142a5ee9 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.527+0200" +2025-07-11T08:52:38.528+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=66a6c8d9-dac3-92cb-3de5-40cf142a5ee9 tf_resource_type=random_password tf_rpc=ReadResource tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:52:38.527+0200" +2025-07-11T08:52:38.528+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=special tf_req_id=66a6c8d9-dac3-92cb-3de5-40cf142a5ee9 tf_resource_type=random_password timestamp="2025-07-11T08:52:38.527+0200" +2025-07-11T08:52:38.528+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=66a6c8d9-dac3-92cb-3de5-40cf142a5ee9 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=bcrypt_hash tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:52:38.527+0200" +2025-07-11T08:52:38.528+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f84a935a-b17b-1aa3-bbf9-177e8a3af20a settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_rpc=ConfigureProvider timestamp="2025-07-11T08:52:38.527+0200" +2025-07-11T08:52:38.528+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f84a935a-b17b-1aa3-bbf9-177e8a3af20a tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm timestamp="2025-07-11T08:52:38.528+0200" +2025-07-11T08:52:38.528+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn" references: [] +2025-07-11T08:52:38.530+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:38 [INFO] Checking namespace argocd +2025-07-11T08:52:38.530+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_version=HTTP/1.1 User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/argocd tf_http_trans_id=9146e92d-5b44-2ff2-6708-87592de15eca tf_http_req_method=GET @module=kubernetes.Kubernetes Accept="application/json, */*" timestamp="2025-07-11T08:52:38.530+0200" +2025-07-11T08:52:38.533+0200 [DEBUG] ReferenceTransformer: "module.minio.helm_release.minio" references: [] +2025-07-11T08:52:38.533+0200 [DEBUG] UpgradeResourceState: ignoring dynamic block: map[string]interface {}{"type":[]interface {}{"object", map[string]interface {}{"apiVersion":"string", "kind":"string", "metadata":[]interface {}{"object", map[string]interface {}{"annotations":[]interface {}{"map", "string"}, "creationTimestamp":"string", "deletionGracePeriodSeconds":"number", "deletionTimestamp":"string", "finalizers":[]interface {}{"list", "string"}, "generateName":"string", "generation":"number", "labels":[]interface {}{"map", "string"}, "managedFields":[]interface {}{"tuple", []interface {}{[]interface {}{"object", map[string]interface {}{"apiVersion":"string", "fieldsType":"string", "fieldsV1":"dynamic", "manager":"string", "operation":"string", "subresource":"string", "time":"string"}}}}, "name":"string", "namespace":"string", "ownerReferences":[]interface {}{"list", []interface {}{"object", map[string]interface {}{"apiVersion":"string", "blockOwnerDeletion":"bool", "controller":"bool", "kind":"string", "name":"string", "uid":"string"}}}, "resourceVersion":"string", "selfLink":"string", "uid":"string"}}, "spec":[]interface {}{"object", map[string]interface {}{"failurePolicy":"string", "valuesContent":"string"}}}}, "value":map[string]interface {}{"apiVersion":"helm.cattle.io/v1", "kind":"HelmChartConfig", "metadata":map[string]interface {}{"annotations":interface {}(nil), "creationTimestamp":interface {}(nil), "deletionGracePeriodSeconds":interface {}(nil), "deletionTimestamp":interface {}(nil), "finalizers":interface {}(nil), "generateName":interface {}(nil), "generation":interface {}(nil), "labels":interface {}(nil), "managedFields":interface {}(nil), "name":"rke2-ingress-nginx", "namespace":"kube-system", "ownerReferences":interface {}(nil), "resourceVersion":interface {}(nil), "selfLink":interface {}(nil), "uid":interface {}(nil)}, "spec":map[string]interface {}{"failurePolicy":interface {}(nil), "valuesContent":"controller:\n config:\n use-forwarded-headers: \"true\"\n"}}} +2025-07-11T08:52:38.533+0200 [DEBUG] UpgradeResourceState: ignoring dynamic block: map[string]interface {}{"type":[]interface {}{"object", map[string]interface {}{"apiVersion":"string", "kind":"string", "metadata":[]interface {}{"object", map[string]interface {}{"name":"string", "namespace":"string"}}, "spec":[]interface {}{"object", map[string]interface {}{"valuesContent":"string"}}}}, "value":map[string]interface {}{"apiVersion":"helm.cattle.io/v1", "kind":"HelmChartConfig", "metadata":map[string]interface {}{"name":"rke2-ingress-nginx", "namespace":"kube-system"}, "spec":map[string]interface {}{"valuesContent":"controller:\n config:\n use-forwarded-headers: \"true\"\n"}}} +2025-07-11T08:52:38.536+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:38 [INFO] Checking namespace zitadel +2025-07-11T08:52:38.536+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @module=kubernetes.Kubernetes Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET Accept="application/json, */*" tf_http_op_type=request tf_http_req_body="" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_trans_id=4976b3b9-9cbf-49d5-71c8-3fbdf4171da9 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/zitadel tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T08:52:38.536+0200" +2025-07-11T08:52:38.537+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:38 [INFO] Checking namespace redis +2025-07-11T08:52:38.537+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_body="" Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_trans_id=0e3c946c-3d46-7746-eb7e-114e81797a2c tf_http_req_method=GET Accept="application/json, */*" Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/redis @module=kubernetes.Kubernetes timestamp="2025-07-11T08:52:38.537+0200" +2025-07-11T08:52:38.537+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.null_resource.health_check" references: [] +2025-07-11T08:52:38.540+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000a10000 Settings:0xc00083f440 RegistryClient:0xc000a12000 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c timestamp="2025-07-11T08:52:38.540+0200" +2025-07-11T08:52:38.540+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"longhorn" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"longhorn" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"v1.7.1","chart":"longhorn","first_deployed":1732547795,"last_deployed":1752215357,"name":"longhorn","namespace":"longhorn-system","notes":"Longhorn is now installed on the cluster!\n\nPlease wait a few minutes for other Longhorn components such as CSI deployments, Engine Images, and Instance Managers to be initialized.\n\nVisit our documentation at https://longhorn.io/docs/\n","revision":2,"values":"{\"csi\":{\"kubeletRootDir\":\"/var/lib/kubelet\"},\"defaultSettings\":{\"defaultDataLocality\":\"best-effort\",\"defaultDataPath\":\"/var/lib/longhorn/\",\"storageOverProvisioningPercentage\":90},\"enablePSP\":false,\"persistence\":{\"defaultClassReplicaCount\":1,\"defaultDataLocality\":\"best-effort\"},\"serviceMonitor\":{\"enabled\":true}}","version":"1.7.1"} Name:"longhorn" Namespace:"longhorn-system" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.longhorn.io" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"defaultSettings.defaultDataPath","type":"","value":"/var/lib/longhorn/"},{"name":"defaultSettings.defaultDataLocality","type":"","value":"best-effort"},{"name":"defaultSettings.storageOverProvisioningPercentage","type":"","value":"90"},{"name":"csi.kubeletRootDir","type":"","value":"/var/lib/kubelet"},{"name":"enablePSP","type":"","value":"false"},{"name":"serviceMonitor.enabled","type":"","value":"true"},{"name":"persistence.defaultClassReplicaCount","type":"","value":"1"},{"name":"persistence.defaultDataLocality","type":"","value":"best-effort"}] SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values: Verify:false Version:"1.7.1" Wait:true WaitForJobs:false}: @module=helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.540+0200" +2025-07-11T08:52:38.541+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: longhorn] Start: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 tf_resource_type=helm_release tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c timestamp="2025-07-11T08:52:38.540+0200" +2025-07-11T08:52:38.541+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 timestamp="2025-07-11T08:52:38.540+0200" +2025-07-11T08:52:38.541+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm configPaths=[] tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:38.541+0200" +2025-07-11T08:52:38.541+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:38.541+0200" +2025-07-11T08:52:38.541+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: longhorn getRelease post action created: tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release timestamp="2025-07-11T08:52:38.541+0200" +2025-07-11T08:52:39.038+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_reason="404 Not Found" tf_http_trans_id=e3c384f6-c7d8-1f82-62e3-bd609f18090d @module=kubernetes.Kubernetes X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response tf_http_res_status_code=404 tf_http_res_version=HTTP/2.0 Audit-Id=33575d1a-7fbe-4c60-93bc-1c747ffc9109 + tf_http_res_body= + | {"kind":"Status","apiVersion":"v1","metadata":{},"status":"Failure","message":"secrets \"bridge-tls\" not found","reason":"NotFound","details":{"name":"bridge-tls","kind":"secrets"},"code":404} + @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=194 Content-Type=application/json new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." Date="Fri, 11 Jul 2025 06:52:38 GMT" X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff timestamp="2025-07-11T08:52:39.038+0200" +2025-07-11T08:52:39.038+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Audit-Id=2b0b11a9-2a93-4b4e-9b8d-d47e06d69a7f Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response tf_http_res_status_code=200 Content-Length=1223 X-Content-Type-Options=nosniff + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"argocd","uid":"8c7a5f8e-f333-455a-bc71-e979eafb6297","resourceVersion":"109670603","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"argocd"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Type=application/json Date="Fri, 11 Jul 2025 06:52:38 GMT" X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_reason="200 OK" @module=kubernetes.Kubernetes tf_http_res_version=HTTP/2.0 tf_http_trans_id=9146e92d-5b44-2ff2-6708-87592de15eca timestamp="2025-07-11T08:52:39.038+0200" +2025-07-11T08:52:39.038+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Content-Type-Options=nosniff Audit-Id=a25436d0-88e2-4114-a6cb-b7f6edd9d666 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_reason="200 OK" tf_http_trans_id=de220294-64f2-e362-088c-ac3f69887179 + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"mongodb","uid":"eae31e15-ed78-4956-9278-4c39b87a8842","resourceVersion":"2007792","creationTimestamp":"2024-11-29T19:03:50Z","labels":{"kubernetes.io/metadata.name":"mongodb"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2024-11-29T19:03:51Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2024-11-29T19:03:51Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2024-11-29T19:03:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2024-11-29T19:03:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 Content-Length=1223 X-Api-Cattle-Auth=true tf_http_op_type=response X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json Date="Fri, 11 Jul 2025 06:52:38 GMT" timestamp="2025-07-11T08:52:39.038+0200" +2025-07-11T08:52:39.038+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Date="Fri, 11 Jul 2025 06:52:38 GMT" X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=4976b3b9-9cbf-49d5-71c8-3fbdf4171da9 Content-Length=1225 tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=66faac62-a59b-4850-be1b-6e36a32081f4 X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_op_type=response @module=kubernetes.Kubernetes Content-Type=application/json X-Content-Type-Options=nosniff + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"zitadel","uid":"2624b1c4-feb9-4c7a-aa15-4d2f7f5b89de","resourceVersion":"109670602","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"zitadel"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_version=HTTP/2.0 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] timestamp="2025-07-11T08:52:39.038+0200" +2025-07-11T08:52:39.038+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Namespace zitadel exists +2025-07-11T08:52:39.038+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Content-Type-Options=nosniff new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" Content-Length=1231 Date="Fri, 11 Jul 2025 06:52:38 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"monitoring","uid":"4e752f54-5f50-4c50-9f26-9b0bc0d1b794","resourceVersion":"109677753","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"monitoring"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:47:49Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:47:49Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:47:48Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_version=HTTP/2.0 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=7cfac16c-3c13-459b-9829-532dd096a269 tf_http_trans_id=1d5a81fd-c4b3-5481-ab43-35c6b461b392 @module=kubernetes.Kubernetes Content-Type=application/json X-Api-Cattle-Auth=true timestamp="2025-07-11T08:52:39.038+0200" +2025-07-11T08:52:39.038+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Namespace monitoring exists +2025-07-11T08:52:39.038+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Namespace argocd exists +2025-07-11T08:52:39.038+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Reading namespace argocd +2025-07-11T08:52:39.038+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Namespace mongodb exists +2025-07-11T08:52:39.038+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Reading namespace mongodb +2025-07-11T08:52:39.038+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Reading namespace zitadel +2025-07-11T08:52:39.039+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Reading namespace monitoring +2025-07-11T08:52:39.039+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_trans_id=e4809ee7-da49-8973-c723-56b7300ef55d tf_http_req_method=GET Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_op_type=request tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/zitadel tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes Accept="application/json, */*" Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" timestamp="2025-07-11T08:52:39.039+0200" +2025-07-11T08:52:39.039+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @module=kubernetes.Kubernetes Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_op_type=request tf_http_req_version=HTTP/1.1 tf_http_trans_id=11740867-cd73-87ed-0297-9e2ff044cee3 Accept-Encoding=gzip tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/argocd @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" timestamp="2025-07-11T08:52:39.039+0200" +2025-07-11T08:52:39.039+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/mongodb tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_body="" tf_http_req_method=GET User-Agent="HashiCorp/1.0 Terraform/1.12.1" Accept="application/json, */*" tf_http_op_type=request tf_http_trans_id=6451938c-b504-10f0-7332-36cc1d36877e timestamp="2025-07-11T08:52:39.039+0200" +2025-07-11T08:52:39.039+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @module=kubernetes.Kubernetes new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring tf_http_req_version=HTTP/1.1 tf_http_trans_id=1cbe161e-5776-7536-3ff0-3b17a9b07fe6 Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" Accept-Encoding=gzip tf_http_op_type=request @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 timestamp="2025-07-11T08:52:39.039+0200" +2025-07-11T08:52:39.043+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0006f62a0 Settings:0xc0006fd440 RegistryClient:0xc0006c5600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.043+0200" +2025-07-11T08:52:39.044+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"minio" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"minio" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"2025.3.12","chart":"minio","first_deployed":1732564007,"last_deployed":1752215358,"name":"minio","namespace":"minio","notes":"CHART NAME: minio\nCHART VERSION: 16.0.0\nAPP VERSION: 2025.3.12\n\nDid you know there are enterprise versions of the Bitnami catalog? For enhanced secure software supply chain features, unlimited pulls from Docker, LTS support, or application customization, see Bitnami Premium or Tanzu Application Catalog. See https://www.arrow.com/globalecs/na/vendors/bitnami for more information.\n\n** Please be patient while the chart is being deployed **\n\nMinIO® can be accessed via port on the following DNS name from within your cluster:\n\n minio.minio.svc.cluster.local\n\nTo get your credentials run:\n\n export ROOT_USER=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-user}\" | base64 -d)\n export ROOT_PASSWORD=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-password}\" | base64 -d)\n\nTo connect to your MinIO® server using a client:\n\n- Run a MinIO® Client pod and append the desired command (e.g. 'admin info'):\n\n kubectl run --namespace minio minio-client \\\n --rm --tty -i --restart='Never' \\\n --env MINIO_SERVER_ROOT_USER=$ROOT_USER \\\n --env MINIO_SERVER_ROOT_PASSWORD=$ROOT_PASSWORD \\\n --env MINIO_SERVER_HOST=minio \\\n --image docker.io/bitnami/minio-client:2025.3.12-debian-12-r0 -- admin info minio\n\nTo access the MinIO® web UI:\n\n- Get the MinIO® URL:\n\n You should be able to access your new MinIO® web UI through\n\n http://storage-admin.365zon.fourlights.dev/minio/\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"apiIngress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"auth\":{\"rootPassword\":\"(sensitive value)\",\"rootUser\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage-admin.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"mode\":\"standalone\",\"persistence\":{\"size\":\"40Gi\"},\"resourcesPreset\":\"nano\",\"statefulset\":{\"drivesPerNode\":2,\"replicaCount\":1},\"tls\":{\"enabled\":false}}","version":"16.0.0"} Name:"minio" Namespace:"minio" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"mode","type":"","value":"standalone"},{"name":"resourcesPreset","type":"","value":"nano"},{"name":"statefulset.replicaCount","type":"","value":"1"},{"name":"statefulset.drivesPerNode","type":"","value":"2"},{"name":"persistence.size","type":"","value":"40Gi"}] SetList: SetSensitive:[{"name":"auth.rootUser","type":,"value":"Xg6VDlh9GVliFdnWnVec"},{"name":"auth.rootPassword","type":,"value":"j!4VaGixfD6f*nam7EeC0Sa*OogSqYA=cinX9bPj"}] SkipCrds:false Status:"deployed" Timeout:300 Values:["tls:\n enabled: false\n\ningress:\n enabled: true\n tls: false\n ingressClassName: nginx\n hostname: storage-admin.365zon.fourlights.dev\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n \n ingress.kubernetes.io/proxy-body-size: \"0\"\n nginx.ingress.kubernetes.io/proxy-body-size: \"0\"\n \n \n\napiIngress:\n enabled: true\n ingressClassName: nginx\n tls: false\n hostname: storage.365zon.fourlights.dev\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n \n ingress.kubernetes.io/proxy-body-size: \"0\"\n nginx.ingress.kubernetes.io/proxy-body-size: \"0\"\n \n"] Verify:false Version:"16.0.0" Wait:true WaitForJobs:true}: tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_rpc=ReadResource @module=helm timestamp="2025-07-11T08:52:39.043+0200" +2025-07-11T08:52:39.044+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: minio] Start: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.044+0200" +2025-07-11T08:52:39.044+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_rpc=ReadResource KubernetesData=map[] tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 timestamp="2025-07-11T08:52:39.044+0200" +2025-07-11T08:52:39.044+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @module=helm configPaths=[] tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.044+0200" +2025-07-11T08:52:39.044+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 timestamp="2025-07-11T08:52:39.044+0200" +2025-07-11T08:52:39.044+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: minio getRelease post action created: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.044+0200" +2025-07-11T08:52:39.182+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Audit-Id=7efdca51-63fc-413b-9d3a-f456fa901fee Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"zitadel","uid":"2624b1c4-feb9-4c7a-aa15-4d2f7f5b89de","resourceVersion":"109670602","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"zitadel"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 Content-Length=1225 Date="Fri, 11 Jul 2025 06:52:39 GMT" X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Type=application/json X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_code=200 tf_http_trans_id=e4809ee7-da49-8973-c723-56b7300ef55d @module=kubernetes.Kubernetes timestamp="2025-07-11T08:52:39.181+0200" +2025-07-11T08:52:39.182+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @module=kubernetes.Kubernetes X-Api-Cattle-Auth=true X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"mongodb","uid":"eae31e15-ed78-4956-9278-4c39b87a8842","resourceVersion":"2007792","creationTimestamp":"2024-11-29T19:03:50Z","labels":{"kubernetes.io/metadata.name":"mongodb"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2024-11-29T19:03:51Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2024-11-29T19:03:51Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2024-11-29T19:03:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2024-11-29T19:03:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 Audit-Id=ee127b25-ca69-4855-8b35-59b34ac27d58 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] tf_http_op_type=response tf_http_res_status_reason="200 OK" Content-Length=1223 Date="Fri, 11 Jul 2025 06:52:39 GMT" X-Content-Type-Options=nosniff @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Type=application/json X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_trans_id=6451938c-b504-10f0-7332-36cc1d36877e timestamp="2025-07-11T08:52:39.182+0200" +2025-07-11T08:52:39.182+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_res_status_code=200 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"monitoring","uid":"4e752f54-5f50-4c50-9f26-9b0bc0d1b794","resourceVersion":"109677753","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"monitoring"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:47:49Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:47:49Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:47:48Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_reason="200 OK" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Length=1231 Content-Type=application/json Date="Fri, 11 Jul 2025 06:52:39 GMT" Audit-Id=2d7d4ba4-f602-40ba-84cc-d1bfcdc34f5c X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response tf_http_res_version=HTTP/2.0 tf_http_trans_id=1cbe161e-5776-7536-3ff0-3b17a9b07fe6 X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 timestamp="2025-07-11T08:52:39.181+0200" +2025-07-11T08:52:39.182+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"mongodb", GenerateName:"", Namespace:"", SelfLink:"", UID:"eae31e15-ed78-4956-9278-4c39b87a8842", ResourceVersion:"2007792", Generation:0, CreationTimestamp:time.Date(2024, time.November, 29, 20, 3, 50, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"mongodb"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2024-11-29T19:03:51Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2024-11-29T19:03:51Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2024, time.November, 29, 20, 3, 50, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000c0ce70), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2024, time.November, 29, 20, 3, 50, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000c0cea0), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:52:39.182+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"monitoring", GenerateName:"", Namespace:"", SelfLink:"", UID:"4e752f54-5f50-4c50-9f26-9b0bc0d1b794", ResourceVersion:"109677753", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"monitoring"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:47:49Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:47:49Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc00138ce40), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 47, 48, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc00138ce70), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:52:39.182+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=1231 tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=dc509ebf-e0a2-44f1-90d1-89b8a8e66505 Date="Fri, 11 Jul 2025 06:52:39 GMT" X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"postgresql","uid":"46aa35b4-b1f9-4a41-8246-7d98511837a8","resourceVersion":"109670601","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"postgresql"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + @module=kubernetes.Kubernetes X-Api-Cattle-Auth=true tf_http_res_version=HTTP/2.0 tf_http_trans_id=74b1e057-f3ea-2b95-5ebd-727218e82d2a Content-Type=application/json X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 timestamp="2025-07-11T08:52:39.181+0200" +2025-07-11T08:52:39.182+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Namespace postgresql exists +2025-07-11T08:52:39.182+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_op_type=response tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" tf_http_trans_id=11740867-cd73-87ed-0297-9e2ff044cee3 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=17fc4219-3e01-435d-8821-43861424c336 tf_http_res_version=HTTP/2.0 Date="Fri, 11 Jul 2025 06:52:39 GMT" X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"argocd","uid":"8c7a5f8e-f333-455a-bc71-e979eafb6297","resourceVersion":"109670603","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"argocd"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + @module=kubernetes.Kubernetes Content-Length=1223 Content-Type=application/json X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] timestamp="2025-07-11T08:52:39.181+0200" +2025-07-11T08:52:39.182+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Reading namespace postgresql +2025-07-11T08:52:39.182+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"argocd", GenerateName:"", Namespace:"", SelfLink:"", UID:"8c7a5f8e-f333-455a-bc71-e979eafb6297", ResourceVersion:"109670603", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"argocd"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000c8f0f8), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000c8f128), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:52:39.182+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Length=1221 tf_http_res_status_reason="200 OK" @module=kubernetes.Kubernetes Audit-Id=32ed6131-0168-49e1-adf9-428077d82b51 X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response Date="Fri, 11 Jul 2025 06:52:39 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"redis","uid":"3728ddfb-bb3d-47de-bdd5-6cf6ee0b93b7","resourceVersion":"109670608","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"redis"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_code=200 tf_http_trans_id=0e3c946c-3d46-7746-eb7e-114e81797a2c Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json tf_http_res_version=HTTP/2.0 timestamp="2025-07-11T08:52:39.181+0200" +2025-07-11T08:52:39.182+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Namespace redis exists +2025-07-11T08:52:39.182+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Reading namespace redis +2025-07-11T08:52:39.182+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"zitadel", GenerateName:"", Namespace:"", SelfLink:"", UID:"2624b1c4-feb9-4c7a-aa15-4d2f7f5b89de", ResourceVersion:"109670602", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"zitadel"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001036f90), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001036fc0), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:52:39.182+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes Accept="application/json, */*" tf_http_op_type=request tf_http_req_body="" tf_http_req_method=GET tf_http_trans_id=a7e938fd-3ee6-09d5-df2a-f9bd99010d4f Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/postgresql Host=rancher.bridge.fourlights.dev @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" timestamp="2025-07-11T08:52:39.182+0200" +2025-07-11T08:52:39.182+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @module=kubernetes.Kubernetes tf_http_req_version=HTTP/1.1 Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_body="" tf_http_trans_id=f60a115c-ce0e-3424-3973-8cd1018c9df9 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Host=rancher.bridge.fourlights.dev tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/redis timestamp="2025-07-11T08:52:39.182+0200" +2025-07-11T08:52:39.184+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.mongodb.kubernetes_namespace.mongodb, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute +2025-07-11T08:52:39.184+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.argocd.kubernetes_namespace.argocd, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute +2025-07-11T08:52:39.184+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.monitoring.kubernetes_namespace.monitoring, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute +2025-07-11T08:52:39.185+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_secret.argocd-tls" references: [] +2025-07-11T08:52:39.185+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth" references: [] +2025-07-11T08:52:39.185+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.zitadel.kubernetes_namespace.zitadel[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute +2025-07-11T08:52:39.185+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:39.186+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 id=968909 +2025-07-11T08:52:39.186+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:39.187+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_secret.zitadel[0]" references: [] +2025-07-11T08:52:39.188+0200 [DEBUG] provider.terraform-provider-null_v3.2.4_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=id tf_req_id=f99c15cb-8b9f-8fd4-1d1e-493ebc7900f0 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/null tf_resource_type=null_resource tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.188+0200" +2025-07-11T08:52:39.188+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Checking secret argocd-tls +2025-07-11T08:52:39.188+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Checking secret prometheus-remote-write-auth +2025-07-11T08:52:39.188+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=80360cbd-952b-9d43-d5b0-24603f7390ee Accept="application/json, */*" tf_http_req_method=GET tf_http_req_body="" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Host=rancher.bridge.fourlights.dev tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/argocd/secrets/argocd-tls @module=kubernetes.Kubernetes tf_http_op_type=request tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T08:52:39.188+0200" +2025-07-11T08:52:39.188+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_op_type=request tf_http_req_body="" tf_http_req_method=GET @module=kubernetes.Kubernetes Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" User-Agent="HashiCorp/1.0 Terraform/1.12.1" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring/secrets/prometheus-remote-write-auth tf_http_trans_id=7ebb94de-df7f-171f-5126-7fff7d679462 tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T08:52:39.188+0200" +2025-07-11T08:52:39.188+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Checking secret zitadel +2025-07-11T08:52:39.188+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @module=kubernetes.Kubernetes Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_version=HTTP/1.1 tf_http_trans_id=a0c8404a-66b5-7411-2864-ec69118c790a Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/zitadel/secrets/zitadel @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" tf_http_req_body="" tf_http_req_method=GET timestamp="2025-07-11T08:52:39.188+0200" +2025-07-11T08:52:39.190+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:39.190+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:39.194+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:52:39.195+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=969269 +2025-07-11T08:52:39.195+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:52:39.201+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:52:39.201+0200" +2025-07-11T08:52:39.228+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:52:39.228+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: network=unix address=/tmp/plugin271238364 timestamp="2025-07-11T08:52:39.228+0200" +2025-07-11T08:52:39.242+0200 [WARN] ValidateProviderConfig from "module.tenant-365zon.module.minio.provider[\"registry.terraform.io/aminueza/minio\"]" changed the config value, but that value is unused +2025-07-11T08:52:39.242+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:52:39 [DEBUG] MinIO SSL client transport configured successfully: timestamp="2025-07-11T08:52:39.242+0200" +2025-07-11T08:52:39.242+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay" references: [] +2025-07-11T08:52:39.243+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay" references: [] +2025-07-11T08:52:39.243+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:39.243+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 id=968979 +2025-07-11T08:52:39.243+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:39.345+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Content-Type-Options=nosniff tf_http_res_version=HTTP/2.0 Content-Length=537 Date="Fri, 11 Jul 2025 06:52:39 GMT" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"prometheus-remote-write-auth","namespace":"monitoring","uid":"15a01c82-9a5b-4f4f-8a35-8710850a1aea","resourceVersion":"109670609","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:password":{},"f:username":{}},"f:type":{}}}]},"data":{"password":"eW91ci1zZWN1cmUtcGFzc3dvcmQ=","username":"cHJvbWV0aGV1cw=="},"type":"Opaque"} + tf_http_res_status_code=200 tf_http_trans_id=7ebb94de-df7f-171f-5126-7fff7d679462 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Audit-Id=f6033671-a085-4878-bcd4-a9f10f196880 X-Api-Cattle-Auth=true X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_reason="200 OK" Content-Type=application/json X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_op_type=response timestamp="2025-07-11T08:52:39.345+0200" +2025-07-11T08:52:39.345+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_version=HTTP/2.0 tf_http_trans_id=a0c8404a-66b5-7411-2864-ec69118c790a Audit-Id=5d3ebd98-dbac-47f1-b361-385f47a4e7cc Content-Length=485 Date="Fri, 11 Jul 2025 06:52:39 GMT" X-Api-Cattle-Auth=true tf_http_op_type=response tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." Content-Type=application/json X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"zitadel","namespace":"zitadel","uid":"82dac3ea-12ea-4359-ba5c-04454217d607","resourceVersion":"109670607","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:masterkey":{}},"f:type":{}}}]},"data":{"masterkey":"Tm5nTm1VZmYleFZtc01IeUExbXktPk9lW04mRyFkKTo="},"type":"Opaque"} + timestamp="2025-07-11T08:52:39.345+0200" +2025-07-11T08:52:39.345+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:52:39 [ERROR] setting state: expires: '' expected type 'string', got unconvertible type 'time.Time', value: '0001-01-01 00:00:00 +0000 UTC': timestamp="2025-07-11T08:52:39.345+0200" +2025-07-11T08:52:39.346+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:52:39 [ERROR] setting state: last_modified: '' expected type 'string', got unconvertible type 'time.Time', value: '2024-11-25 13:55:45 +0000 UTC': timestamp="2025-07-11T08:52:39.345+0200" +2025-07-11T08:52:39.346+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=f60a115c-ce0e-3424-3973-8cd1018c9df9 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Content-Length=1221 Date="Fri, 11 Jul 2025 06:52:39 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"redis","uid":"3728ddfb-bb3d-47de-bdd5-6cf6ee0b93b7","resourceVersion":"109670608","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"redis"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_version=HTTP/2.0 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" Audit-Id=1ecfadc2-6a37-4947-acd5-935f4d18a4fe X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff timestamp="2025-07-11T08:52:39.345+0200" +2025-07-11T08:52:39.345+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"postgresql","uid":"46aa35b4-b1f9-4a41-8246-7d98511837a8","resourceVersion":"109670601","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"postgresql"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + X-Api-Cattle-Auth=true new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 tf_http_trans_id=a7e938fd-3ee6-09d5-df2a-f9bd99010d4f Content-Length=1231 Date="Fri, 11 Jul 2025 06:52:39 GMT" tf_http_res_status_reason="200 OK" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Audit-Id=2aeb24aa-1c0d-4d79-818b-1ab4740528a6 timestamp="2025-07-11T08:52:39.345+0200" +2025-07-11T08:52:39.346+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"postgresql", GenerateName:"", Namespace:"", SelfLink:"", UID:"46aa35b4-b1f9-4a41-8246-7d98511837a8", ResourceVersion:"109670601", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"postgresql"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000cb2648), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000cb2678), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:52:39.345+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @module=kubernetes.Kubernetes Audit-Id=e8251ba0-f360-4ec5-96f9-0e599a776d8e Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"argocd-tls","namespace":"argocd","uid":"104b95c0-233e-4544-b94c-310faf05fc16","resourceVersion":"109670604","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:type":{}}}]},"type":"Opaque"} + tf_http_res_version=HTTP/2.0 Content-Length=384 tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" tf_http_trans_id=80360cbd-952b-9d43-d5b0-24603f7390ee @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Date="Fri, 11 Jul 2025 06:52:39 GMT" X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 timestamp="2025-07-11T08:52:39.345+0200" +2025-07-11T08:52:39.346+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"redis", GenerateName:"", Namespace:"", SelfLink:"", UID:"3728ddfb-bb3d-47de-bdd5-6cf6ee0b93b7", ResourceVersion:"109670608", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"redis"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0008b4fd8), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0008b5008), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:52:39.346+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Reading secret argocd-tls +2025-07-11T08:52:39.346+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Reading secret prometheus-remote-write-auth +2025-07-11T08:52:39.346+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Reading secret zitadel +2025-07-11T08:52:39.346+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Accept-Encoding=gzip tf_http_op_type=request tf_http_req_body="" tf_http_req_method=GET Accept="application/json, */*" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring/secrets/prometheus-remote-write-auth tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_trans_id=75a09b8e-21bf-7b96-feed-888ec13f67f0 timestamp="2025-07-11T08:52:39.346+0200" +2025-07-11T08:52:39.346+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/zitadel/secrets/zitadel @module=kubernetes.Kubernetes Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_body="" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_version=HTTP/1.1 tf_http_req_method=GET tf_http_trans_id=7a010ae3-b003-373f-b56b-d68bac1f6b76 timestamp="2025-07-11T08:52:39.346+0200" +2025-07-11T08:52:39.346+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @module=kubernetes.Kubernetes tf_http_req_body="" Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_trans_id=ae8e7ee3-1f3e-fc41-5d59-ea996ebd18b2 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" Host=rancher.bridge.fourlights.dev tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/argocd/secrets/argocd-tls tf_http_req_version=HTTP/1.1 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_method=GET timestamp="2025-07-11T08:52:39.346+0200" +2025-07-11T08:52:39.348+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:52:39 [DEBUG] Reading bucket [365zon2] in region [eu-central-1]: timestamp="2025-07-11T08:52:39.348+0200" +2025-07-11T08:52:39.348+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.postgresql.kubernetes_namespace.postgresql[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute +2025-07-11T08:52:39.348+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.redis.kubernetes_namespace.redis, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute +2025-07-11T08:52:39.348+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_secret.postgresql_auth[0]" references: [] +2025-07-11T08:52:39.348+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:39.349+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=968961 +2025-07-11T08:52:39.349+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:39.349+0200 [DEBUG] ReferenceTransformer: "module.redis.helm_release.redis" references: [] +2025-07-11T08:52:39.350+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_secret.redis" references: [] +2025-07-11T08:52:39.350+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Checking secret postgresql-auth +2025-07-11T08:52:39.350+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/postgresql/secrets/postgresql-auth tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes Accept="application/json, */*" Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET tf_http_trans_id=6fcc61a7-83a9-fd04-cda7-3ab8d260b643 tf_http_op_type=request tf_http_req_body="" timestamp="2025-07-11T08:52:39.350+0200" +2025-07-11T08:52:39.353+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0007702a0 Settings:0xc000777440 RegistryClient:0xc000441680 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c timestamp="2025-07-11T08:52:39.353+0200" +2025-07-11T08:52:39.353+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"redis" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"redis" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"7.4.1","chart":"redis","first_deployed":1752215366,"last_deployed":1752215366,"name":"redis","namespace":"redis","notes":"CHART NAME: redis\nCHART VERSION: 20.1.7\nAPP VERSION: 7.4.1\n\n** Please be patient while the chart is being deployed **\n\nRedis® can be accessed via port 6379 on the following DNS name from within your cluster:\n\n redis-master.redis.svc.cluster.local\n\n\n\nTo get your password run:\n\n export REDIS_PASSWORD=$(kubectl get secret --namespace redis redis -o jsonpath=\"{.data.redis-password}\" | base64 -d)\n\nTo connect to your Redis® server:\n\n1. Run a Redis® pod that you can use as a client:\n\n kubectl run --namespace redis redis-client --restart='Never' --env REDIS_PASSWORD=$REDIS_PASSWORD --image docker.io/bitnami/redis:7.4.1-debian-12-r0 --command -- sleep infinity\n\n Use the following command to attach to the pod:\n\n kubectl exec --tty -i redis-client \\\n --namespace redis -- bash\n\n2. Connect using the Redis® CLI:\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h redis-master\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace redis svc/redis-master 6379:6379 &\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h 127.0.0.1 -p 6379\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - replica.resources\n - master.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"architecture\":\"standalone\",\"auth\":{\"enabled\":true,\"existingSecret\":\"redis\",\"existingSecretPasswordKey\":\"redis-password\"},\"master\":{\"persistence\":{\"size\":\"6Gi\"}},\"metrics\":{\"enabled\":false}}","version":"20.1.7"} Name:"redis" Namespace:"redis" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["metrics:\n enabled: false\n\narchitecture: standalone\n\nauth:\n enabled: true\n existingSecret: redis\n existingSecretPasswordKey: 'redis-password'\n\nmaster:\n persistence:\n size: 6Gi\n"] Verify:false Version:"20.1.7" Wait:true WaitForJobs:true}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_rpc=ReadResource tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.353+0200" +2025-07-11T08:52:39.353+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: redis] Start: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.353+0200" +2025-07-11T08:52:39.353+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.353+0200" +2025-07-11T08:52:39.353+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.353+0200" +2025-07-11T08:52:39.353+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.353+0200" +2025-07-11T08:52:39.353+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: redis getRelease post action created: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.353+0200" +2025-07-11T08:52:39.492+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_op_type=response tf_http_res_status_reason="200 OK" Content-Length=537 Date="Fri, 11 Jul 2025 06:52:39 GMT" tf_http_res_version=HTTP/2.0 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." Audit-Id=c05c8c1c-ca9f-440b-91ae-7d5b27aa9eb9 X-Api-Cattle-Auth=true + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"prometheus-remote-write-auth","namespace":"monitoring","uid":"15a01c82-9a5b-4f4f-8a35-8710850a1aea","resourceVersion":"109670609","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:password":{},"f:username":{}},"f:type":{}}}]},"data":{"password":"eW91ci1zZWN1cmUtcGFzc3dvcmQ=","username":"cHJvbWV0aGV1cw=="},"type":"Opaque"} + tf_http_res_status_code=200 tf_http_trans_id=75a09b8e-21bf-7b96-feed-888ec13f67f0 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Content-Type-Options=nosniff timestamp="2025-07-11T08:52:39.491+0200" +2025-07-11T08:52:39.492+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Received secret: v1.ObjectMeta{Name:"prometheus-remote-write-auth", GenerateName:"", Namespace:"monitoring", SelfLink:"", UID:"15a01c82-9a5b-4f4f-8a35-8710850a1aea", ResourceVersion:"109670609", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000915d88), Subresource:""}}} +2025-07-11T08:52:39.492+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=c2cf4810-6c10-490e-a2b8-ec6fdc0f134f Content-Length=601 Date="Fri, 11 Jul 2025 06:52:39 GMT" X-Api-Cattle-Auth=true tf_http_trans_id=6fcc61a7-83a9-fd04-cda7-3ab8d260b643 @module=kubernetes.Kubernetes X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response tf_http_res_status_reason="200 OK" Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"postgresql-auth","namespace":"postgresql","uid":"02e1e77a-2f52-472a-9f4e-58998a742cff","resourceVersion":"109670606","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:password":{},"f:rootpassword":{}},"f:type":{}}}]},"data":{"password":"NnspTnVjM3RaZU5SMFs/cVRmeGwoKmkwXWctP2tiM259S2U0X1V1eg==","rootpassword":"UHZ3TUl7THpuVmFTPHFfWyhyWEQwcF1jPl9XLTExMiRJWmZkQUgyUQ=="},"type":"generic"} + timestamp="2025-07-11T08:52:39.491+0200" +2025-07-11T08:52:39.492+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"argocd-tls","namespace":"argocd","uid":"104b95c0-233e-4544-b94c-310faf05fc16","resourceVersion":"109670604","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:type":{}}}]},"type":"Opaque"} + tf_http_res_status_reason="200 OK" @module=kubernetes.Kubernetes tf_http_trans_id=ae8e7ee3-1f3e-fc41-5d59-ea996ebd18b2 X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=5becb2a7-08d3-4d5a-8b90-e44178452c61 Content-Type=application/json X-Api-Cattle-Auth=true Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=384 Date="Fri, 11 Jul 2025 06:52:39 GMT" timestamp="2025-07-11T08:52:39.491+0200" +2025-07-11T08:52:39.492+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Received secret: v1.ObjectMeta{Name:"argocd-tls", GenerateName:"", Namespace:"argocd", SelfLink:"", UID:"104b95c0-233e-4544-b94c-310faf05fc16", ResourceVersion:"109670604", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc00118c0f0), Subresource:""}}} +2025-07-11T08:52:39.492+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=262254e8-c680-4898-8d0f-1354c730a976 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"zitadel","namespace":"zitadel","uid":"82dac3ea-12ea-4359-ba5c-04454217d607","resourceVersion":"109670607","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:masterkey":{}},"f:type":{}}}]},"data":{"masterkey":"Tm5nTm1VZmYleFZtc01IeUExbXktPk9lW04mRyFkKTo="},"type":"Opaque"} + tf_http_trans_id=7a010ae3-b003-373f-b56b-d68bac1f6b76 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json Date="Fri, 11 Jul 2025 06:52:39 GMT" X-Api-Cattle-Auth=true new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_version=HTTP/2.0 X-Content-Type-Options=nosniff tf_http_op_type=response tf_http_res_status_reason="200 OK" Content-Length=485 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_code=200 timestamp="2025-07-11T08:52:39.491+0200" +2025-07-11T08:52:39.492+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Received secret: v1.ObjectMeta{Name:"zitadel", GenerateName:"", Namespace:"zitadel", SelfLink:"", UID:"82dac3ea-12ea-4359-ba5c-04454217d607", ResourceVersion:"109670607", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000e921b0), Subresource:""}}} +2025-07-11T08:52:39.492+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Reading secret postgresql-auth +2025-07-11T08:52:39.492+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." Accept="application/json, */*" tf_http_req_method=GET tf_http_req_body="" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/postgresql/secrets/postgresql-auth tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes Host=rancher.bridge.fourlights.dev tf_http_trans_id=b484d1a3-a5c3-2f59-4a3f-90974ab3cae2 timestamp="2025-07-11T08:52:39.492+0200" +2025-07-11T08:52:39.494+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.monitoring.kubernetes_secret.prometheus_remote_write_auth, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .type: planned value cty.StringVal("Opaque") for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .immutable: planned value cty.False for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:52:39.494+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.argocd.kubernetes_secret.argocd-tls, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .type: planned value cty.StringVal("Opaque") for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:52:39.494+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.zitadel.kubernetes_secret.zitadel[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .type: planned value cty.StringVal("Opaque") for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:52:39.495+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:39.497+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=968941 +2025-07-11T08:52:39.497+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:39.497+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:39.498+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=969090 +2025-07-11T08:52:39.498+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:39.499+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Checking secret redis +2025-07-11T08:52:39.499+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_trans_id=41a1fde3-b08b-d222-6d1f-c6d09d5f0c53 Accept="application/json, */*" Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/redis/secrets/redis tf_http_req_body="" timestamp="2025-07-11T08:52:39.499+0200" +2025-07-11T08:52:39.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: longhorn getRelease post run: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.521+0200" +2025-07-11T08:52:39.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: longhorn getRelease completed: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm timestamp="2025-07-11T08:52:39.521+0200" +2025-07-11T08:52:39.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: longhorn] Done: @module=helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 timestamp="2025-07-11T08:52:39.521+0200" +2025-07-11T08:52:39.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: longhorn] Started: tf_rpc=ReadResource @module=helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:39.521+0200" +2025-07-11T08:52:39.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=helm KubernetesData=map[] timestamp="2025-07-11T08:52:39.521+0200" +2025-07-11T08:52:39.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm configPaths=[] tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.522+0200" +2025-07-11T08:52:39.522+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @module=helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.522+0200" +2025-07-11T08:52:39.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: longhorn getRelease post action created: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.522+0200" +2025-07-11T08:52:39.653+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @module=kubernetes.Kubernetes Audit-Id=0ba3eb86-6dd9-4250-ad2a-b32076e470d9 Content-Length=491 Content-Type=application/json tf_http_trans_id=41a1fde3-b08b-d222-6d1f-c6d09d5f0c53 X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:52:39 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"redis","namespace":"redis","uid":"8025a40f-6901-4ee8-92bb-bfaf43082625","resourceVersion":"109670611","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:redis-password":{}},"f:type":{}}}]},"data":{"redis-password":"ZVNPZkw0R1JGYmNEQDVJM0ZiJTBCT1dIS3NjelVySnI="},"type":"Opaque"} + tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_res_status_reason="200 OK" timestamp="2025-07-11T08:52:39.652+0200" +2025-07-11T08:52:39.653+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:52:39 GMT" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_res_version=HTTP/2.0 tf_http_trans_id=b484d1a3-a5c3-2f59-4a3f-90974ab3cae2 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=b5dbc06c-cc6f-4518-8b3f-5e5e03370a64 Content-Type=application/json X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 @module=kubernetes.Kubernetes Content-Length=601 tf_http_res_status_code=200 X-Api-Cattle-Auth=true + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"postgresql-auth","namespace":"postgresql","uid":"02e1e77a-2f52-472a-9f4e-58998a742cff","resourceVersion":"109670606","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:password":{},"f:rootpassword":{}},"f:type":{}}}]},"data":{"password":"NnspTnVjM3RaZU5SMFs/cVRmeGwoKmkwXWctP2tiM259S2U0X1V1eg==","rootpassword":"UHZ3TUl7THpuVmFTPHFfWyhyWEQwcF1jPl9XLTExMiRJWmZkQUgyUQ=="},"type":"generic"} + tf_http_res_status_reason="200 OK" timestamp="2025-07-11T08:52:39.652+0200" +2025-07-11T08:52:39.653+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Received secret: v1.ObjectMeta{Name:"postgresql-auth", GenerateName:"", Namespace:"postgresql", SelfLink:"", UID:"02e1e77a-2f52-472a-9f4e-58998a742cff", ResourceVersion:"109670606", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000a82288), Subresource:""}}} +2025-07-11T08:52:39.653+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Reading secret redis +2025-07-11T08:52:39.653+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" @module=kubernetes.Kubernetes Accept="application/json, */*" Accept-Encoding=gzip tf_http_op_type=request tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Host=rancher.bridge.fourlights.dev tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/redis/secrets/redis User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_method=GET tf_http_trans_id=243e5c97-ed62-aa7c-50c3-e7e539311b1c timestamp="2025-07-11T08:52:39.653+0200" +2025-07-11T08:52:39.656+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.postgresql.kubernetes_secret.postgresql_auth[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .immutable: planned value cty.False for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:52:39.656+0200 [DEBUG] ReferenceTransformer: "module.postgresql.helm_release.postgresql[0]" references: [] +2025-07-11T08:52:39.656+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:39.658+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=969000 +2025-07-11T08:52:39.658+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:39.661+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000000d20 Settings:0xc0006fc120 RegistryClient:0xc00067fc00 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:39.661+0200" +2025-07-11T08:52:39.661+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"postgresql" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"postgresql" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"17.0.0","chart":"postgresql","first_deployed":1752215369,"last_deployed":1752215369,"name":"postgresql","namespace":"postgresql","notes":"CHART NAME: postgresql\nCHART VERSION: 16.0.5\nAPP VERSION: 17.0.0\n\n** Please be patient while the chart is being deployed **\n\nWARNING: PostgreSQL has been configured without authentication, this is not recommended for production environments.\n\nPostgreSQL can be accessed via port 5432 on the following DNS names from within your cluster:\n\n postgresql.postgresql.svc.cluster.local - Read/Write connection\n\nTo get the password for \"postgres\" run:\n\n export POSTGRES_ADMIN_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.rootpassword}\" | base64 -d)\n\nTo get the password for \"bridge\" run:\n\n export POSTGRES_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.password}\" | base64 -d)\n\nTo connect to your database run the following command:\n\n kubectl run postgresql-client --rm --tty -i --restart='Never' --namespace postgresql --image docker.io/bitnami/postgresql:17.0.0-debian-12-r6 \\\n --command -- psql --host postgresql -d postgres -p 5432\n\n > NOTE: If you access the container using bash, make sure that you execute \"/opt/bitnami/scripts/postgresql/entrypoint.sh /bin/bash\" in order to avoid the error \"psql: local user with ID 1001} does not exist\"\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace postgresql svc/postgresql 5432:5432 &\n psql --host 127.0.0.1 -d postgres -p 5432\n\nWARNING: The configured password will be ignored on new installation in case when previous PostgreSQL release was deleted through the helm command. In that case, old PVC will have an old password, and setting it through helm won't take effect. Deleting persistent volumes (PVs) will solve the issue.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - primary.resources\n - readReplicas.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"auth\":{\"existingSecret\":\"postgresql-auth\",\"secretKeys\":{\"adminPasswordKey\":\"rootpassword\",\"userPasswordKey\":\"password\"},\"username\":\"bridge\"}}","version":"16.0.5"} Name:"postgresql" Namespace:"postgresql" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["auth:\n existingSecret: postgresql-auth\n username: bridge\n secretKeys:\n adminPasswordKey: rootpassword\n userPasswordKey: password\n"] Verify:false Version:"16.0.5" Wait:true WaitForJobs:false}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 timestamp="2025-07-11T08:52:39.661+0200" +2025-07-11T08:52:39.661+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: postgresql] Start: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 timestamp="2025-07-11T08:52:39.661+0200" +2025-07-11T08:52:39.661+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 tf_resource_type=helm_release tf_rpc=ReadResource @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:39.661+0200" +2025-07-11T08:52:39.661+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.661+0200" +2025-07-11T08:52:39.661+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.661+0200" +2025-07-11T08:52:39.661+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: postgresql getRelease post action created: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.661+0200" +2025-07-11T08:52:39.801+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_res_version=HTTP/2.0 Content-Length=491 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=243e5c97-ed62-aa7c-50c3-e7e539311b1c X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Type=application/json + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"redis","namespace":"redis","uid":"8025a40f-6901-4ee8-92bb-bfaf43082625","resourceVersion":"109670611","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:redis-password":{}},"f:type":{}}}]},"data":{"redis-password":"ZVNPZkw0R1JGYmNEQDVJM0ZiJTBCT1dIS3NjelVySnI="},"type":"Opaque"} + X-Api-Cattle-Auth=true tf_http_op_type=response tf_http_res_status_code=200 @module=kubernetes.Kubernetes Audit-Id=3645c0ee-4310-4127-a6b4-3a8051a66580 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:52:39 GMT" tf_http_res_status_reason="200 OK" timestamp="2025-07-11T08:52:39.801+0200" +2025-07-11T08:52:39.801+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:39 [INFO] Received secret: v1.ObjectMeta{Name:"redis", GenerateName:"", Namespace:"redis", SelfLink:"", UID:"8025a40f-6901-4ee8-92bb-bfaf43082625", ResourceVersion:"109670611", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0011374b8), Subresource:""}}} +2025-07-11T08:52:39.804+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.redis.kubernetes_secret.redis, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:52:39.805+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:39.806+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=969189 +2025-07-11T08:52:39.806+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:39.847+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: longhorn getRelease post run: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_rpc=ReadResource @module=helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.847+0200" +2025-07-11T08:52:39.847+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: longhorn getRelease completed: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:39.847+0200" +2025-07-11T08:52:39.847+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"v1.7.1","chart":"longhorn","first_deployed":1732547795,"last_deployed":1752215357,"name":"longhorn","namespace":"longhorn-system","notes":"Longhorn is now installed on the cluster!\n\nPlease wait a few minutes for other Longhorn components such as CSI deployments, Engine Images, and Instance Managers to be initialized.\n\nVisit our documentation at https://longhorn.io/docs/\n","revision":2,"values":"{\"csi\":{\"kubeletRootDir\":\"/var/lib/kubelet\"},\"defaultSettings\":{\"defaultDataLocality\":\"best-effort\",\"defaultDataPath\":\"/var/lib/longhorn/\",\"storageOverProvisioningPercentage\":90},\"enablePSP\":false,\"persistence\":{\"defaultClassReplicaCount\":1,\"defaultDataLocality\":\"best-effort\"},\"serviceMonitor\":{\"enabled\":true}}","version":"1.7.1"}: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c timestamp="2025-07-11T08:52:39.847+0200" +2025-07-11T08:52:39.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=render_subchart_notes tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=status tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=repository tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c @module=sdk.framework tf_attribute_path=pass_credentials tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release tf_attribute_path=disable_crd_hooks tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c @module=sdk.framework tf_attribute_path=lint tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=dependency_update tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=wait_for_jobs tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=atomic tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=name tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=reset_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource tf_attribute_path=max_history timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=force_update tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=set[0].name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set[0].type tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[0].value timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set[0] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[1].name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[1].type tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[1].value @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[1] tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=set[2].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[2].name @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[2].type tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:39.848+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[2] tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[3].type tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=set[3].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_attribute_path=set[3].name tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set[3] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[4].value tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[4].name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release @module=sdk.framework timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[4].type tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[4] tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=set[5].name tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[5].type tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_rpc=ReadResource @module=sdk.framework tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[5].value tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c @module=sdk.framework timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[5] tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set[6].type tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[6].value tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[6].name tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[6] tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_attribute_path=set[7].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release tf_attribute_path=set[7].name timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[7].type tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=set[7] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource tf_attribute_path=timeout tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=verify tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_attribute_path=wait tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=chart tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=disable_webhooks tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=recreate_pods tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=replace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c @module=sdk.framework tf_attribute_path=reuse_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_attribute_path=namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=cleanup_on_fail tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=disable_openapi_validation tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=create_namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.last_deployed tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=metadata.values tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.revision tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.chart tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.version tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.first_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.notes tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_attribute_path=metadata.namespace tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.app_version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=id tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1a3f35f1-54be-e15a-b978-38209684559c tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=skip_crds tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.849+0200" +2025-07-11T08:52:39.851+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:39.852+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000a10000 Settings:0xc00083f440 RegistryClient:0xc000a12000 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_rpc=ValidateResourceConfig @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=65094605-df6e-f0f7-06d6-91dfbba84613 tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.852+0200" +2025-07-11T08:52:39.855+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000a10000 Settings:0xc00083f440 RegistryClient:0xc000a12000 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_req_id=3c1b1991-765c-25ba-7c3e-b12ebcb38a33 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 timestamp="2025-07-11T08:52:39.854+0200" +2025-07-11T08:52:39.860+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"longhorn" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"longhorn" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"v1.7.1","chart":"longhorn","first_deployed":1732547795,"last_deployed":1752215357,"name":"longhorn","namespace":"longhorn-system","notes":"Longhorn is now installed on the cluster!\n\nPlease wait a few minutes for other Longhorn components such as CSI deployments, Engine Images, and Instance Managers to be initialized.\n\nVisit our documentation at https://longhorn.io/docs/\n","revision":2,"values":"{\"csi\":{\"kubeletRootDir\":\"/var/lib/kubelet\"},\"defaultSettings\":{\"defaultDataLocality\":\"best-effort\",\"defaultDataPath\":\"/var/lib/longhorn/\",\"storageOverProvisioningPercentage\":90},\"enablePSP\":false,\"persistence\":{\"defaultClassReplicaCount\":1,\"defaultDataLocality\":\"best-effort\"},\"serviceMonitor\":{\"enabled\":true}}","version":"1.7.1"} Name:"longhorn" Namespace:"longhorn-system" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.longhorn.io" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"defaultSettings.defaultDataPath","type":"","value":"/var/lib/longhorn/"},{"name":"defaultSettings.defaultDataLocality","type":"","value":"best-effort"},{"name":"defaultSettings.storageOverProvisioningPercentage","type":"","value":"90"},{"name":"csi.kubeletRootDir","type":"","value":"/var/lib/kubelet"},{"name":"enablePSP","type":"","value":"false"},{"name":"serviceMonitor.enabled","type":"","value":"true"},{"name":"persistence.defaultClassReplicaCount","type":"","value":"1"},{"name":"persistence.defaultDataLocality","type":"","value":"best-effort"}] SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values: Verify:false Version:"1.7.1" Wait:true WaitForJobs:false}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=3c1b1991-765c-25ba-7c3e-b12ebcb38a33 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:39.860+0200" +2025-07-11T08:52:39.860+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"longhorn" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"longhorn" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"v1.7.1","chart":"longhorn","first_deployed":1732547795,"last_deployed":1752215357,"name":"longhorn","namespace":"longhorn-system","notes":"Longhorn is now installed on the cluster!\n\nPlease wait a few minutes for other Longhorn components such as CSI deployments, Engine Images, and Instance Managers to be initialized.\n\nVisit our documentation at https://longhorn.io/docs/\n","revision":2,"values":"{\"csi\":{\"kubeletRootDir\":\"/var/lib/kubelet\"},\"defaultSettings\":{\"defaultDataLocality\":\"best-effort\",\"defaultDataPath\":\"/var/lib/longhorn/\",\"storageOverProvisioningPercentage\":90},\"enablePSP\":false,\"persistence\":{\"defaultClassReplicaCount\":1,\"defaultDataLocality\":\"best-effort\"},\"serviceMonitor\":{\"enabled\":true}}","version":"1.7.1"} Name:"longhorn" Namespace:"longhorn-system" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.longhorn.io" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"defaultSettings.defaultDataPath","type":"","value":"/var/lib/longhorn/"},{"name":"defaultSettings.defaultDataLocality","type":"","value":"best-effort"},{"name":"defaultSettings.storageOverProvisioningPercentage","type":"","value":"90"},{"name":"csi.kubeletRootDir","type":"","value":"/var/lib/kubelet"},{"name":"enablePSP","type":"","value":"false"},{"name":"serviceMonitor.enabled","type":"","value":"true"},{"name":"persistence.defaultClassReplicaCount","type":"","value":"1"},{"name":"persistence.defaultDataLocality","type":"","value":"best-effort"}] SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values: Verify:false Version:"1.7.1" Wait:true WaitForJobs:false}: tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3c1b1991-765c-25ba-7c3e-b12ebcb38a33 timestamp="2025-07-11T08:52:39.860+0200" +2025-07-11T08:52:39.860+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: longhorn] Start: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=helm tf_req_id=3c1b1991-765c-25ba-7c3e-b12ebcb38a33 tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 timestamp="2025-07-11T08:52:39.860+0200" +2025-07-11T08:52:39.860+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @module=helm KubernetesData=map[] tf_req_id=3c1b1991-765c-25ba-7c3e-b12ebcb38a33 tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:39.860+0200" +2025-07-11T08:52:39.861+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @module=helm configPaths=[] tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3c1b1991-765c-25ba-7c3e-b12ebcb38a33 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 timestamp="2025-07-11T08:52:39.860+0200" +2025-07-11T08:52:39.861+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_req_id=3c1b1991-765c-25ba-7c3e-b12ebcb38a33 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:39.861+0200" +2025-07-11T08:52:39.861+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: longhorn] Initial Values: Name=longhorn, Namespace=longhorn-system, Repository=https://charts.longhorn.io, Repository_Username=, Repository_Password=, Chart=longhorn: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3c1b1991-765c-25ba-7c3e-b12ebcb38a33 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:39.861+0200" +2025-07-11T08:52:39.861+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc00083f560 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3c1b1991-765c-25ba-7c3e-b12ebcb38a33 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:39.861+0200" +2025-07-11T08:52:39.970+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:52:39 [WARN] ({ 365zon2 enabled [] 2025-07-11 06:46:17.754225947 +0000 UTC}): timestamp="2025-07-11T08:52:39.970+0200" +2025-07-11T08:52:39.971+0200 [WARN] Provider "registry.terraform.io/aminueza/minio" produced an invalid plan for module.tenant-365zon.module.minio.minio_iam_user.overlay, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .update_secret: planned value cty.False for a non-computed attribute + - .disable_user: planned value cty.False for a non-computed attribute + - .force_destroy: planned value cty.False for a non-computed attribute +2025-07-11T08:52:40.113+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:52:40 [DEBUG] Bucket [365zon2] exists!: timestamp="2025-07-11T08:52:40.113+0200" +2025-07-11T08:52:40.115+0200 [WARN] Provider "registry.terraform.io/aminueza/minio" produced an invalid plan for module.tenant-365zon.module.minio.minio_s3_bucket.overlay, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .object_locking: planned value cty.False for a non-computed attribute + - .force_destroy: planned value cty.False for a non-computed attribute +2025-07-11T08:52:40.115+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay" references: [] +2025-07-11T08:52:40.115+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay" references: [] +2025-07-11T08:52:40.115+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay" references: [] +2025-07-11T08:52:40.116+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:52:40 [DEBUG] Getting IAM Policy: 365zon2: timestamp="2025-07-11T08:52:40.116+0200" +2025-07-11T08:52:40.116+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:52:40 [DEBUG] S3 bucket policy, read for bucket: 365zon2: timestamp="2025-07-11T08:52:40.116+0200" +2025-07-11T08:52:40.149+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: redis getRelease post run: tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 timestamp="2025-07-11T08:52:40.149+0200" +2025-07-11T08:52:40.149+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: redis getRelease completed: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_rpc=ReadResource timestamp="2025-07-11T08:52:40.149+0200" +2025-07-11T08:52:40.149+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: redis] Done: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c @module=helm timestamp="2025-07-11T08:52:40.149+0200" +2025-07-11T08:52:40.149+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: redis] Started: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c @module=helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 timestamp="2025-07-11T08:52:40.149+0200" +2025-07-11T08:52:40.149+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:52:40.149+0200" +2025-07-11T08:52:40.149+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: configPaths=[] tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.149+0200" +2025-07-11T08:52:40.149+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release @module=helm timestamp="2025-07-11T08:52:40.149+0200" +2025-07-11T08:52:40.149+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: redis getRelease post action created: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c timestamp="2025-07-11T08:52:40.149+0200" +2025-07-11T08:52:40.264+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay" references: [] +2025-07-11T08:52:40.265+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:52:40 [DEBUG] Locking "365zon2": timestamp="2025-07-11T08:52:40.265+0200" +2025-07-11T08:52:40.265+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:52:40 [DEBUG] Locked "365zon2": timestamp="2025-07-11T08:52:40.265+0200" +2025-07-11T08:52:40.265+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:52:40 [DEBUG] UserPolicyAttachment: is user '365zon2' an LDAP user? false: timestamp="2025-07-11T08:52:40.265+0200" +2025-07-11T08:52:40.433+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: postgresql getRelease post run: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 @module=helm timestamp="2025-07-11T08:52:40.433+0200" +2025-07-11T08:52:40.433+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: postgresql getRelease completed: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 timestamp="2025-07-11T08:52:40.433+0200" +2025-07-11T08:52:40.433+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: postgresql] Done: @module=helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.433+0200" +2025-07-11T08:52:40.433+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: postgresql] Started: @module=helm tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 timestamp="2025-07-11T08:52:40.433+0200" +2025-07-11T08:52:40.433+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=helm KubernetesData=map[] tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 timestamp="2025-07-11T08:52:40.433+0200" +2025-07-11T08:52:40.433+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @module=helm configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:40.433+0200" +2025-07-11T08:52:40.433+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 timestamp="2025-07-11T08:52:40.433+0200" +2025-07-11T08:52:40.433+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: postgresql getRelease post action created: tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm timestamp="2025-07-11T08:52:40.433+0200" +2025-07-11T08:52:40.573+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:52:40 [DEBUG] Unlocking "365zon2": timestamp="2025-07-11T08:52:40.573+0200" +2025-07-11T08:52:40.573+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:52:40 [DEBUG] Unlocked "365zon2": timestamp="2025-07-11T08:52:40.573+0200" +2025-07-11T08:52:40.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: redis getRelease post run: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:40.722+0200" +2025-07-11T08:52:40.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: redis getRelease completed: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_rpc=ReadResource timestamp="2025-07-11T08:52:40.722+0200" +2025-07-11T08:52:40.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"7.4.1","chart":"redis","first_deployed":1752215366,"last_deployed":1752215366,"name":"redis","namespace":"redis","notes":"CHART NAME: redis\nCHART VERSION: 20.1.7\nAPP VERSION: 7.4.1\n\n** Please be patient while the chart is being deployed **\n\nRedis® can be accessed via port 6379 on the following DNS name from within your cluster:\n\n redis-master.redis.svc.cluster.local\n\n\n\nTo get your password run:\n\n export REDIS_PASSWORD=$(kubectl get secret --namespace redis redis -o jsonpath=\"{.data.redis-password}\" | base64 -d)\n\nTo connect to your Redis® server:\n\n1. Run a Redis® pod that you can use as a client:\n\n kubectl run --namespace redis redis-client --restart='Never' --env REDIS_PASSWORD=$REDIS_PASSWORD --image docker.io/bitnami/redis:7.4.1-debian-12-r0 --command -- sleep infinity\n\n Use the following command to attach to the pod:\n\n kubectl exec --tty -i redis-client \\\n --namespace redis -- bash\n\n2. Connect using the Redis® CLI:\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h redis-master\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace redis svc/redis-master 6379:6379 &\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h 127.0.0.1 -p 6379\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - replica.resources\n - master.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"architecture\":\"standalone\",\"auth\":{\"enabled\":true,\"existingSecret\":\"redis\",\"existingSecretPasswordKey\":\"redis-password\"},\"master\":{\"persistence\":{\"size\":\"6Gi\"}},\"metrics\":{\"enabled\":false}}","version":"20.1.7"}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_rpc=ReadResource @module=helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.722+0200" +2025-07-11T08:52:40.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: postgresql getRelease post run: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:40.722+0200" +2025-07-11T08:52:40.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: postgresql getRelease completed: tf_resource_type=helm_release @module=helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.722+0200" +2025-07-11T08:52:40.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"17.0.0","chart":"postgresql","first_deployed":1752215369,"last_deployed":1752215369,"name":"postgresql","namespace":"postgresql","notes":"CHART NAME: postgresql\nCHART VERSION: 16.0.5\nAPP VERSION: 17.0.0\n\n** Please be patient while the chart is being deployed **\n\nWARNING: PostgreSQL has been configured without authentication, this is not recommended for production environments.\n\nPostgreSQL can be accessed via port 5432 on the following DNS names from within your cluster:\n\n postgresql.postgresql.svc.cluster.local - Read/Write connection\n\nTo get the password for \"postgres\" run:\n\n export POSTGRES_ADMIN_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.rootpassword}\" | base64 -d)\n\nTo get the password for \"bridge\" run:\n\n export POSTGRES_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.password}\" | base64 -d)\n\nTo connect to your database run the following command:\n\n kubectl run postgresql-client --rm --tty -i --restart='Never' --namespace postgresql --image docker.io/bitnami/postgresql:17.0.0-debian-12-r6 \\\n --command -- psql --host postgresql -d postgres -p 5432\n\n > NOTE: If you access the container using bash, make sure that you execute \"/opt/bitnami/scripts/postgresql/entrypoint.sh /bin/bash\" in order to avoid the error \"psql: local user with ID 1001} does not exist\"\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace postgresql svc/postgresql 5432:5432 &\n psql --host 127.0.0.1 -d postgres -p 5432\n\nWARNING: The configured password will be ignored on new installation in case when previous PostgreSQL release was deleted through the helm command. In that case, old PVC will have an old password, and setting it through helm won't take effect. Deleting persistent volumes (PVs) will solve the issue.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - primary.resources\n - readReplicas.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"auth\":{\"existingSecret\":\"postgresql-auth\",\"secretKeys\":{\"adminPasswordKey\":\"rootpassword\",\"userPasswordKey\":\"password\"},\"username\":\"bridge\"}}","version":"16.0.5"}: tf_rpc=ReadResource tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.722+0200" +2025-07-11T08:52:40.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=chart timestamp="2025-07-11T08:52:40.722+0200" +2025-07-11T08:52:40.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=replace tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c timestamp="2025-07-11T08:52:40.722+0200" +2025-07-11T08:52:40.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.namespace tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.722+0200" +2025-07-11T08:52:40.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.chart tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:40.722+0200" +2025-07-11T08:52:40.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.revision tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_rpc=ReadResource @module=sdk.framework tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.722+0200" +2025-07-11T08:52:40.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.first_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_rpc=ReadResource timestamp="2025-07-11T08:52:40.722+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.last_deployed tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:52:40.722+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_rpc=ReadResource timestamp="2025-07-11T08:52:40.722+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_attribute_path=metadata.notes tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:40.722+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.name timestamp="2025-07-11T08:52:40.722+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_attribute_path=metadata.app_version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:40.722+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.version tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:52:40.722+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.722+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=values[0] tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework tf_attribute_path=values tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=dependency_update tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=force_update tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=reuse_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_attribute_path=version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=wait tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_rpc=ReadResource timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_attribute_path=pass_credentials tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_attribute_path=disable_crd_hooks tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_attribute_path=skip_crds tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=atomic tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=verify tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=render_subchart_notes tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource tf_attribute_path=wait_for_jobs tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=disable_webhooks tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=lint tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=cleanup_on_fail tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=recreate_pods tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=repository tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=max_history tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=disable_openapi_validation tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=status tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=wait timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=wait_for_jobs tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=name tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=recreate_pods tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_attribute_path=chart tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=repository tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 @module=sdk.framework tf_attribute_path=metadata.first_deployed tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.name tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.last_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.app_version tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=metadata.namespace tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.version tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_rpc=ReadResource tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=metadata.revision @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=metadata.notes tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=metadata.chart tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=metadata tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_attribute_path=disable_openapi_validation tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=verify tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=pass_credentials tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_rpc=ReadResource timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=render_subchart_notes tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=atomic timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=dependency_update tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=replace @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=force_update tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=disable_crd_hooks tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=values[0] @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework tf_attribute_path=max_history tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=reset_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_rpc=ReadResource tf_attribute_path=skip_crds tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release @module=sdk.framework timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=lint tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 @module=sdk.framework timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=create_namespace tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=reuse_values tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 @module=sdk.framework tf_attribute_path=timeout tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_attribute_path=namespace tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=disable_webhooks tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_attribute_path=cleanup_on_fail tf_req_id=1fe00a8c-0088-c123-2e5a-c65b2dc3edc4 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=reset_values tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=status timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_attribute_path=namespace tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=create_namespace tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=id @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.724+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=timeout tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9dbb5549-0234-0eda-cf93-316738fcac8c tf_rpc=ReadResource @module=sdk.framework tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.723+0200" +2025-07-11T08:52:40.725+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:40.725+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:40.726+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0007702a0 Settings:0xc000777440 RegistryClient:0xc000441680 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_req_id=92596709-0f9e-5f62-3eda-dad2589475f1 tf_resource_type=helm_release tf_rpc=ValidateResourceConfig tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.726+0200" +2025-07-11T08:52:40.726+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000000d20 Settings:0xc0006fc120 RegistryClient:0xc00067fc00 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_req_id=5e2e8e45-4d9f-6359-b2be-0e8733d98309 tf_resource_type=helm_release tf_rpc=ValidateResourceConfig @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.726+0200" +2025-07-11T08:52:40.728+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000000d20 Settings:0xc0006fc120 RegistryClient:0xc00067fc00 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1e69b968-8767-8a90-1cf5-6eeb5ea73987 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 timestamp="2025-07-11T08:52:40.728+0200" +2025-07-11T08:52:40.728+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0007702a0 Settings:0xc000777440 RegistryClient:0xc000441680 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm tf_req_id=1ecf5c53-384e-2cde-1bf6-9f935d7e2b6a @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 timestamp="2025-07-11T08:52:40.728+0200" +2025-07-11T08:52:40.732+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"postgresql" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"postgresql" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"17.0.0","chart":"postgresql","first_deployed":1752215369,"last_deployed":1752215369,"name":"postgresql","namespace":"postgresql","notes":"CHART NAME: postgresql\nCHART VERSION: 16.0.5\nAPP VERSION: 17.0.0\n\n** Please be patient while the chart is being deployed **\n\nWARNING: PostgreSQL has been configured without authentication, this is not recommended for production environments.\n\nPostgreSQL can be accessed via port 5432 on the following DNS names from within your cluster:\n\n postgresql.postgresql.svc.cluster.local - Read/Write connection\n\nTo get the password for \"postgres\" run:\n\n export POSTGRES_ADMIN_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.rootpassword}\" | base64 -d)\n\nTo get the password for \"bridge\" run:\n\n export POSTGRES_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.password}\" | base64 -d)\n\nTo connect to your database run the following command:\n\n kubectl run postgresql-client --rm --tty -i --restart='Never' --namespace postgresql --image docker.io/bitnami/postgresql:17.0.0-debian-12-r6 \\\n --command -- psql --host postgresql -d postgres -p 5432\n\n > NOTE: If you access the container using bash, make sure that you execute \"/opt/bitnami/scripts/postgresql/entrypoint.sh /bin/bash\" in order to avoid the error \"psql: local user with ID 1001} does not exist\"\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace postgresql svc/postgresql 5432:5432 &\n psql --host 127.0.0.1 -d postgres -p 5432\n\nWARNING: The configured password will be ignored on new installation in case when previous PostgreSQL release was deleted through the helm command. In that case, old PVC will have an old password, and setting it through helm won't take effect. Deleting persistent volumes (PVs) will solve the issue.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - primary.resources\n - readReplicas.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"auth\":{\"existingSecret\":\"postgresql-auth\",\"secretKeys\":{\"adminPasswordKey\":\"rootpassword\",\"userPasswordKey\":\"password\"},\"username\":\"bridge\"}}","version":"16.0.5"} Name:"postgresql" Namespace:"postgresql" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["auth:\n existingSecret: postgresql-auth\n username: bridge\n secretKeys:\n adminPasswordKey: rootpassword\n userPasswordKey: password\n"] Verify:false Version:"16.0.5" Wait:true WaitForJobs:false}: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1e69b968-8767-8a90-1cf5-6eeb5ea73987 timestamp="2025-07-11T08:52:40.732+0200" +2025-07-11T08:52:40.732+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"postgresql" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"postgresql" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"17.0.0","chart":"postgresql","first_deployed":1752215369,"last_deployed":1752215369,"name":"postgresql","namespace":"postgresql","notes":"CHART NAME: postgresql\nCHART VERSION: 16.0.5\nAPP VERSION: 17.0.0\n\n** Please be patient while the chart is being deployed **\n\nWARNING: PostgreSQL has been configured without authentication, this is not recommended for production environments.\n\nPostgreSQL can be accessed via port 5432 on the following DNS names from within your cluster:\n\n postgresql.postgresql.svc.cluster.local - Read/Write connection\n\nTo get the password for \"postgres\" run:\n\n export POSTGRES_ADMIN_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.rootpassword}\" | base64 -d)\n\nTo get the password for \"bridge\" run:\n\n export POSTGRES_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.password}\" | base64 -d)\n\nTo connect to your database run the following command:\n\n kubectl run postgresql-client --rm --tty -i --restart='Never' --namespace postgresql --image docker.io/bitnami/postgresql:17.0.0-debian-12-r6 \\\n --command -- psql --host postgresql -d postgres -p 5432\n\n > NOTE: If you access the container using bash, make sure that you execute \"/opt/bitnami/scripts/postgresql/entrypoint.sh /bin/bash\" in order to avoid the error \"psql: local user with ID 1001} does not exist\"\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace postgresql svc/postgresql 5432:5432 &\n psql --host 127.0.0.1 -d postgres -p 5432\n\nWARNING: The configured password will be ignored on new installation in case when previous PostgreSQL release was deleted through the helm command. In that case, old PVC will have an old password, and setting it through helm won't take effect. Deleting persistent volumes (PVs) will solve the issue.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - primary.resources\n - readReplicas.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"auth\":{\"existingSecret\":\"postgresql-auth\",\"secretKeys\":{\"adminPasswordKey\":\"rootpassword\",\"userPasswordKey\":\"password\"},\"username\":\"bridge\"}}","version":"16.0.5"} Name:"postgresql" Namespace:"postgresql" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["auth:\n existingSecret: postgresql-auth\n username: bridge\n secretKeys:\n adminPasswordKey: rootpassword\n userPasswordKey: password\n"] Verify:false Version:"16.0.5" Wait:true WaitForJobs:false}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 tf_req_id=1e69b968-8767-8a90-1cf5-6eeb5ea73987 tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.732+0200" +2025-07-11T08:52:40.732+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: postgresql] Start: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1e69b968-8767-8a90-1cf5-6eeb5ea73987 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:40.732+0200" +2025-07-11T08:52:40.733+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 tf_req_id=1e69b968-8767-8a90-1cf5-6eeb5ea73987 tf_rpc=PlanResourceChange @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.732+0200" +2025-07-11T08:52:40.733+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm configPaths=[] tf_req_id=1e69b968-8767-8a90-1cf5-6eeb5ea73987 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.733+0200" +2025-07-11T08:52:40.733+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1e69b968-8767-8a90-1cf5-6eeb5ea73987 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:40.733+0200" +2025-07-11T08:52:40.733+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: postgresql] Initial Values: Name=postgresql, Namespace=postgresql, Repository=https://charts.bitnami.com/bitnami, Repository_Username=, Repository_Password=, Chart=postgresql: tf_rpc=PlanResourceChange @module=helm tf_req_id=1e69b968-8767-8a90-1cf5-6eeb5ea73987 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.733+0200" +2025-07-11T08:52:40.733+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"redis" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"redis" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"7.4.1","chart":"redis","first_deployed":1752215366,"last_deployed":1752215366,"name":"redis","namespace":"redis","notes":"CHART NAME: redis\nCHART VERSION: 20.1.7\nAPP VERSION: 7.4.1\n\n** Please be patient while the chart is being deployed **\n\nRedis® can be accessed via port 6379 on the following DNS name from within your cluster:\n\n redis-master.redis.svc.cluster.local\n\n\n\nTo get your password run:\n\n export REDIS_PASSWORD=$(kubectl get secret --namespace redis redis -o jsonpath=\"{.data.redis-password}\" | base64 -d)\n\nTo connect to your Redis® server:\n\n1. Run a Redis® pod that you can use as a client:\n\n kubectl run --namespace redis redis-client --restart='Never' --env REDIS_PASSWORD=$REDIS_PASSWORD --image docker.io/bitnami/redis:7.4.1-debian-12-r0 --command -- sleep infinity\n\n Use the following command to attach to the pod:\n\n kubectl exec --tty -i redis-client \\\n --namespace redis -- bash\n\n2. Connect using the Redis® CLI:\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h redis-master\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace redis svc/redis-master 6379:6379 &\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h 127.0.0.1 -p 6379\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - replica.resources\n - master.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"architecture\":\"standalone\",\"auth\":{\"enabled\":true,\"existingSecret\":\"redis\",\"existingSecretPasswordKey\":\"redis-password\"},\"master\":{\"persistence\":{\"size\":\"6Gi\"}},\"metrics\":{\"enabled\":false}}","version":"20.1.7"} Name:"redis" Namespace:"redis" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["metrics:\n enabled: false\n\narchitecture: standalone\n\nauth:\n enabled: true\n existingSecret: redis\n existingSecretPasswordKey: 'redis-password'\n\nmaster:\n persistence:\n size: 6Gi\n"] Verify:false Version:"20.1.7" Wait:true WaitForJobs:true}: tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 tf_req_id=1ecf5c53-384e-2cde-1bf6-9f935d7e2b6a timestamp="2025-07-11T08:52:40.732+0200" +2025-07-11T08:52:40.733+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"redis" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"redis" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"7.4.1","chart":"redis","first_deployed":1752215366,"last_deployed":1752215366,"name":"redis","namespace":"redis","notes":"CHART NAME: redis\nCHART VERSION: 20.1.7\nAPP VERSION: 7.4.1\n\n** Please be patient while the chart is being deployed **\n\nRedis® can be accessed via port 6379 on the following DNS name from within your cluster:\n\n redis-master.redis.svc.cluster.local\n\n\n\nTo get your password run:\n\n export REDIS_PASSWORD=$(kubectl get secret --namespace redis redis -o jsonpath=\"{.data.redis-password}\" | base64 -d)\n\nTo connect to your Redis® server:\n\n1. Run a Redis® pod that you can use as a client:\n\n kubectl run --namespace redis redis-client --restart='Never' --env REDIS_PASSWORD=$REDIS_PASSWORD --image docker.io/bitnami/redis:7.4.1-debian-12-r0 --command -- sleep infinity\n\n Use the following command to attach to the pod:\n\n kubectl exec --tty -i redis-client \\\n --namespace redis -- bash\n\n2. Connect using the Redis® CLI:\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h redis-master\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace redis svc/redis-master 6379:6379 &\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h 127.0.0.1 -p 6379\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - replica.resources\n - master.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"architecture\":\"standalone\",\"auth\":{\"enabled\":true,\"existingSecret\":\"redis\",\"existingSecretPasswordKey\":\"redis-password\"},\"master\":{\"persistence\":{\"size\":\"6Gi\"}},\"metrics\":{\"enabled\":false}}","version":"20.1.7"} Name:"redis" Namespace:"redis" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["metrics:\n enabled: false\n\narchitecture: standalone\n\nauth:\n enabled: true\n existingSecret: redis\n existingSecretPasswordKey: 'redis-password'\n\nmaster:\n persistence:\n size: 6Gi\n"] Verify:false Version:"20.1.7" Wait:true WaitForJobs:true}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @module=helm tf_req_id=1ecf5c53-384e-2cde-1bf6-9f935d7e2b6a tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.732+0200" +2025-07-11T08:52:40.733+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: redis] Start: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1ecf5c53-384e-2cde-1bf6-9f935d7e2b6a @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 @module=helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:40.732+0200" +2025-07-11T08:52:40.733+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1ecf5c53-384e-2cde-1bf6-9f935d7e2b6a tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:40.732+0200" +2025-07-11T08:52:40.733+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_req_id=1ecf5c53-384e-2cde-1bf6-9f935d7e2b6a tf_resource_type=helm_release @module=helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.733+0200" +2025-07-11T08:52:40.733+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_req_id=1ecf5c53-384e-2cde-1bf6-9f935d7e2b6a timestamp="2025-07-11T08:52:40.733+0200" +2025-07-11T08:52:40.733+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: redis] Initial Values: Name=redis, Namespace=redis, Repository=https://charts.bitnami.com/bitnami, Repository_Username=, Repository_Password=, Chart=redis: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 tf_req_id=1ecf5c53-384e-2cde-1bf6-9f935d7e2b6a tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:40.733+0200" +2025-07-11T08:52:40.733+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc000777560 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1ecf5c53-384e-2cde-1bf6-9f935d7e2b6a tf_rpc=PlanResourceChange @module=helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.733+0200" +2025-07-11T08:52:40.733+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc0006fc240 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 @module=helm tf_req_id=1e69b968-8767-8a90-1cf5-6eeb5ea73987 tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.733+0200" +2025-07-11T08:52:40.774+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: minio getRelease post run: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 @module=helm timestamp="2025-07-11T08:52:40.774+0200" +2025-07-11T08:52:40.774+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: minio getRelease completed: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release @module=helm timestamp="2025-07-11T08:52:40.774+0200" +2025-07-11T08:52:40.774+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: minio] Done: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 timestamp="2025-07-11T08:52:40.774+0200" +2025-07-11T08:52:40.774+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: minio] Started: @module=helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.774+0200" +2025-07-11T08:52:40.774+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.774+0200" +2025-07-11T08:52:40.774+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm configPaths=[] tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.774+0200" +2025-07-11T08:52:40.774+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm timestamp="2025-07-11T08:52:40.774+0200" +2025-07-11T08:52:40.774+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: minio getRelease post action created: tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:40.774+0200" +2025-07-11T08:52:40.784+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025-07-11T08:52:40.783+0200 [DEBUG] [UpgradeResourceState]: +2025-07-11T08:52:40.784+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: morphed object= +2025-07-11T08:52:40.784+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | tftypes.Object["apiVersion":tftypes.String, "kind":tftypes.String, "metadata":tftypes.Object["annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String, "namespace":tftypes.String, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String], "spec":tftypes.Object["failurePolicy":tftypes.String, "valuesContent":tftypes.String]]<"apiVersion":tftypes.String<"helm.cattle.io/v1">, "kind":tftypes.String<"HelmChartConfig">, "metadata":tftypes.Object["annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String, "namespace":tftypes.String, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String]<"annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String<"rke2-ingress-nginx">, "namespace":tftypes.String<"kube-system">, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String>, "spec":tftypes.Object["failurePolicy":tftypes.String, "valuesContent":tftypes.String]<"failurePolicy":tftypes.String, "valuesContent":tftypes.String<"controller: +2025-07-11T08:52:40.784+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | config: +2025-07-11T08:52:40.784+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | use-forwarded-headers: "true" +2025-07-11T08:52:40.784+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | ">>> +2025-07-11T08:52:40.784+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: +2025-07-11T08:52:40.897+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: longhorn] Got chart: tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 @module=helm tf_req_id=3c1b1991-765c-25ba-7c3e-b12ebcb38a33 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:40.897+0200" +2025-07-11T08:52:40.897+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: tf_req_id=3c1b1991-765c-25ba-7c3e-b12ebcb38a33 tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=helm timestamp="2025-07-11T08:52:40.897+0200" +2025-07-11T08:52:40.897+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: longhorn] Release validated: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 @module=helm tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3c1b1991-765c-25ba-7c3e-b12ebcb38a33 tf_resource_type=helm_release timestamp="2025-07-11T08:52:40.897+0200" +2025-07-11T08:52:40.897+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: longhorn] Done: tf_req_id=3c1b1991-765c-25ba-7c3e-b12ebcb38a33 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 @module=helm timestamp="2025-07-11T08:52:40.897+0200" +2025-07-11T08:52:40.902+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:40.905+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=969244 +2025-07-11T08:52:40.905+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:41.370+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:41.708+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025-07-11T08:52:41.708+0200 [DEBUG] [PlanUpdateResource]: OAPI type="tftypes.Object[\"apiVersion\":tftypes.String, \"kind\":tftypes.String, \"metadata\":tftypes.Object[\"annotations\":tftypes.Map[tftypes.String], \"creationTimestamp\":tftypes.String, \"deletionGracePeriodSeconds\":tftypes.Number, \"deletionTimestamp\":tftypes.String, \"finalizers\":tftypes.List[tftypes.String], \"generateName\":tftypes.String, \"generation\":tftypes.Number, \"labels\":tftypes.Map[tftypes.String], \"managedFields\":tftypes.Tuple[tftypes.Object[\"apiVersion\":tftypes.String, \"fieldsType\":tftypes.String, \"fieldsV1\":tftypes.DynamicPseudoType, \"manager\":tftypes.String, \"operation\":tftypes.String, \"subresource\":tftypes.String, \"time\":tftypes.String]], \"name\":tftypes.String, \"namespace\":tftypes.String, \"ownerReferences\":tftypes.List[tftypes.Object[\"apiVersion\":tftypes.String, \"blockOwnerDeletion\":tftypes.Bool, \"controller\":tftypes.Bool, \"kind\":tftypes.String, \"name\":tftypes.String, \"uid\":tftypes.String]], \"resourceVersion\":tftypes.String, \"selfLink\":tftypes.String, \"uid\":tftypes.String], \"spec\":tftypes.Object[\"failurePolicy\":tftypes.String, \"valuesContent\":tftypes.String]]" +2025-07-11T08:52:41.708+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025-07-11T08:52:41.708+0200 [DEBUG] [PlanResourceChange]: +2025-07-11T08:52:41.708+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: morphed manifest= +2025-07-11T08:52:41.708+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | tftypes.Object["apiVersion":tftypes.String, "kind":tftypes.String, "metadata":tftypes.Object["annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String, "namespace":tftypes.String, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String], "spec":tftypes.Object["failurePolicy":tftypes.String, "valuesContent":tftypes.String]]<"apiVersion":tftypes.String<"helm.cattle.io/v1">, "kind":tftypes.String<"HelmChartConfig">, "metadata":tftypes.Object["annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String, "namespace":tftypes.String, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String]<"annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String<"rke2-ingress-nginx">, "namespace":tftypes.String<"kube-system">, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String>, "spec":tftypes.Object["failurePolicy":tftypes.String, "valuesContent":tftypes.String]<"failurePolicy":tftypes.String, "valuesContent":tftypes.String<"controller: +2025-07-11T08:52:41.708+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | config: +2025-07-11T08:52:41.708+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | use-forwarded-headers: "true" +2025-07-11T08:52:41.708+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | ">>> +2025-07-11T08:52:41.708+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: +2025-07-11T08:52:41.708+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025-07-11T08:52:41.708+0200 [DEBUG] [PlanResourceChange]: +2025-07-11T08:52:41.708+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: backfilled manifest= +2025-07-11T08:52:41.708+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | tftypes.Object["apiVersion":tftypes.String, "kind":tftypes.String, "metadata":tftypes.Object["annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String, "namespace":tftypes.String, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String], "spec":tftypes.Object["failurePolicy":tftypes.String, "valuesContent":tftypes.String]]<"apiVersion":tftypes.String<"helm.cattle.io/v1">, "kind":tftypes.String<"HelmChartConfig">, "metadata":tftypes.Object["annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String, "namespace":tftypes.String, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String]<"annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String<"rke2-ingress-nginx">, "namespace":tftypes.String<"kube-system">, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String>, "spec":tftypes.Object["failurePolicy":tftypes.String, "valuesContent":tftypes.String]<"failurePolicy":tftypes.String, "valuesContent":tftypes.String<"controller: +2025-07-11T08:52:41.708+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | config: +2025-07-11T08:52:41.708+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | use-forwarded-headers: "true" +2025-07-11T08:52:41.708+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | ">>> +2025-07-11T08:52:41.708+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: +2025-07-11T08:52:41.709+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:41.710+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_secret.mongodb_auth" references: [] +2025-07-11T08:52:41.710+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.helm_release.rabbitmq" references: [] +2025-07-11T08:52:41.711+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=969125 +2025-07-11T08:52:41.711+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:41.713+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:41 [INFO] Checking secret mongodb-auth +2025-07-11T08:52:41.713+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET tf_http_req_body="" Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev tf_http_op_type=request tf_http_req_version=HTTP/1.1 tf_http_trans_id=5952f17a-4e10-a9a4-e0fd-5dec5c1c5a7a @module=kubernetes.Kubernetes tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/mongodb/secrets/mongodb-auth @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 timestamp="2025-07-11T08:52:41.713+0200" +2025-07-11T08:52:41.715+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0008c02a0 Settings:0xc0008c9440 RegistryClient:0xc00063b780 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release timestamp="2025-07-11T08:52:41.715+0200" +2025-07-11T08:52:41.715+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"rabbitmq" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"rabbitmq" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"4.0.4","chart":"rabbitmq","first_deployed":1732607998,"last_deployed":1752215414,"name":"rabbitmq","namespace":"rabbitmq","notes":"CHART NAME: rabbitmq\nCHART VERSION: 15.1.0\nAPP VERSION: 4.0.4** Please be patient while the chart is being deployed **\n\nCredentials:\n echo \"Username : user\"\n echo \"Password : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-password}\" | base64 -d)\"\n echo \"ErLang Cookie : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-erlang-cookie}\" | base64 -d)\"\n\nNote that the credentials are saved in persistent volume claims and will not be changed upon upgrade or reinstallation unless the persistent volume claim has been deleted. If this is not the first installation of this chart, the credentials may not be valid.\nThis is applicable when no passwords are set and therefore the random password is autogenerated. In case of using a fixed password, you should specify it when upgrading.\nMore information about the credentials may be found at https://docs.bitnami.com/general/how-to/troubleshoot-helm-chart-issues/#credential-errors-while-upgrading-chart-releases.\n\nRabbitMQ can be accessed within the cluster on port 5672 at rabbitmq.rabbitmq.svc.cluster.local\n\nTo access for outside the cluster, perform the following steps:\n\nTo Access the RabbitMQ AMQP port:\n\n1. Create a port-forward to the AMQP port:\n\n kubectl port-forward --namespace rabbitmq svc/rabbitmq 5672:5672 &\n echo \"URL : amqp://127.0.0.1:5672/\"\n\n2. Access RabbitMQ using using the obtained URL.\n\nTo Access the RabbitMQ Management interface:\n\n1. Get the RabbitMQ Management URL and associate its hostname to your cluster external IP:\n\n export CLUSTER_IP=$(minikube ip) # On Minikube. Use: `kubectl cluster-info` on others K8s clusters\n echo \"RabbitMQ Management: http://rabbitmq.local/\"\n echo \"$CLUSTER_IP rabbitmq.local\" | sudo tee -a /etc/hosts\n\n2. Open a browser and access RabbitMQ Management using the obtained URL.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"auth\":{\"password\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"kubernetes.io/ingress.class\":\"nginx\"},\"enabled\":true,\"hostname\":\"rabbitmq.local\",\"ingressClassName\":\"nginx\",\"tls\":false},\"persistence\":{\"size\":\"4Gi\"},\"replicaCount\":1}","version":"15.1.0"} Name:"rabbitmq" Namespace:"rabbitmq" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"replicaCount","type":"","value":"1"},{"name":"persistence.size","type":"","value":"4Gi"}] SetList: SetSensitive:[{"name":"auth.password","type":,"value":"QA3UNmEGovybKcT415K6"}] SkipCrds:false Status:"deployed" Timeout:300 Values:["ingress:\n enabled: true\n tls: false\n ingressClassName: nginx\n hostname: rabbitmq.local\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n"] Verify:false Version:"15.1.0" Wait:true WaitForJobs:false}: @module=helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:41.715+0200" +2025-07-11T08:52:41.715+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: rabbitmq] Start: @module=helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release timestamp="2025-07-11T08:52:41.715+0200" +2025-07-11T08:52:41.715+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c @module=helm KubernetesData=map[] tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 timestamp="2025-07-11T08:52:41.715+0200" +2025-07-11T08:52:41.716+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm tf_resource_type=helm_release configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_rpc=ReadResource timestamp="2025-07-11T08:52:41.716+0200" +2025-07-11T08:52:41.716+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 timestamp="2025-07-11T08:52:41.716+0200" +2025-07-11T08:52:41.716+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: rabbitmq getRelease post action created: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:41.716+0200" +2025-07-11T08:52:41.834+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: minio getRelease post run: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_rpc=ReadResource tf_resource_type=helm_release timestamp="2025-07-11T08:52:41.834+0200" +2025-07-11T08:52:41.834+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: minio getRelease completed: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:52:41.834+0200" +2025-07-11T08:52:41.834+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"2025.3.12","chart":"minio","first_deployed":1732564007,"last_deployed":1752215358,"name":"minio","namespace":"minio","notes":"CHART NAME: minio\nCHART VERSION: 16.0.0\nAPP VERSION: 2025.3.12\n\nDid you know there are enterprise versions of the Bitnami catalog? For enhanced secure software supply chain features, unlimited pulls from Docker, LTS support, or application customization, see Bitnami Premium or Tanzu Application Catalog. See https://www.arrow.com/globalecs/na/vendors/bitnami for more information.\n\n** Please be patient while the chart is being deployed **\n\nMinIO® can be accessed via port on the following DNS name from within your cluster:\n\n minio.minio.svc.cluster.local\n\nTo get your credentials run:\n\n export ROOT_USER=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-user}\" | base64 -d)\n export ROOT_PASSWORD=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-password}\" | base64 -d)\n\nTo connect to your MinIO® server using a client:\n\n- Run a MinIO® Client pod and append the desired command (e.g. 'admin info'):\n\n kubectl run --namespace minio minio-client \\\n --rm --tty -i --restart='Never' \\\n --env MINIO_SERVER_ROOT_USER=$ROOT_USER \\\n --env MINIO_SERVER_ROOT_PASSWORD=$ROOT_PASSWORD \\\n --env MINIO_SERVER_HOST=minio \\\n --image docker.io/bitnami/minio-client:2025.3.12-debian-12-r0 -- admin info minio\n\nTo access the MinIO® web UI:\n\n- Get the MinIO® URL:\n\n You should be able to access your new MinIO® web UI through\n\n http://storage-admin.365zon.fourlights.dev/minio/\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"apiIngress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"auth\":{\"rootPassword\":\"(sensitive value)\",\"rootUser\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage-admin.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"mode\":\"standalone\",\"persistence\":{\"size\":\"40Gi\"},\"resourcesPreset\":\"nano\",\"statefulset\":{\"drivesPerNode\":2,\"replicaCount\":1},\"tls\":{\"enabled\":false}}","version":"16.0.0"}: @module=helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 timestamp="2025-07-11T08:52:41.834+0200" +2025-07-11T08:52:41.834+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=skip_crds tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release timestamp="2025-07-11T08:52:41.834+0200" +2025-07-11T08:52:41.834+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=wait_for_jobs tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:41.834+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=values[0] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_attribute_path=values tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=create_namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_rpc=ReadResource tf_attribute_path=cleanup_on_fail tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=wait timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=reuse_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[0].type timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[0].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_attribute_path=set[0].name tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_attribute_path=set[0] tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=set[1].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_attribute_path=set[1].name timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_attribute_path=set[1].type tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set[1] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_rpc=ReadResource tf_attribute_path=set[2].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=set[2].name tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[2].type tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[2] tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[3].type tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=set[3].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[3].name tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_rpc=ReadResource timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework tf_attribute_path=set[3] tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=set[4].name timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=set[4].type tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set[4].value tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[4] tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=disable_openapi_validation tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=lint tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=disable_crd_hooks tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=version tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=force_update tf_resource_type=helm_release timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_attribute_path=atomic tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=timeout tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=chart tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=replace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=status tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=render_subchart_notes tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=verify tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 @module=sdk.framework tf_attribute_path=namespace tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=max_history tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=metadata.chart tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.version tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.notes tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=metadata.last_deployed tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.835+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @module=sdk.framework tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.836+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.name tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.836+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.namespace tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.836+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=metadata.first_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.836+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_attribute_path=metadata.revision tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.836+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.app_version timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.836+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.836+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=dependency_update tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.836+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.836+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_rpc=ReadResource tf_attribute_path=reset_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.836+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=repository tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_rpc=ReadResource timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.836+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=pass_credentials tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:41.835+0200" +2025-07-11T08:52:41.836+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_attribute_path=disable_webhooks tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:41.836+0200" +2025-07-11T08:52:41.836+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set_sensitive[0].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:41.836+0200" +2025-07-11T08:52:41.836+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set_sensitive[0].name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release timestamp="2025-07-11T08:52:41.836+0200" +2025-07-11T08:52:41.836+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set_sensitive[0] tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_resource_type=helm_release timestamp="2025-07-11T08:52:41.836+0200" +2025-07-11T08:52:41.836+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_rpc=ReadResource tf_attribute_path=set_sensitive[1].name tf_resource_type=helm_release timestamp="2025-07-11T08:52:41.836+0200" +2025-07-11T08:52:41.836+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=set_sensitive[1].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:41.836+0200" +2025-07-11T08:52:41.836+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 tf_attribute_path=set_sensitive[1] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:41.836+0200" +2025-07-11T08:52:41.836+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set_sensitive tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 timestamp="2025-07-11T08:52:41.836+0200" +2025-07-11T08:52:41.836+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=recreate_pods tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=69981658-a8d1-9579-141c-ac6e3c049e66 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:41.836+0200" +2025-07-11T08:52:41.837+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:41.840+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0006f62a0 Settings:0xc0006fd440 RegistryClient:0xc0006c5600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=28ae01e7-8317-2cd6-933f-3de4a7566eae tf_rpc=ValidateResourceConfig timestamp="2025-07-11T08:52:41.839+0200" +2025-07-11T08:52:41.842+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0006f62a0 Settings:0xc0006fd440 RegistryClient:0xc0006c5600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=31ae2ce1-fc1d-66ca-6299-b3e7a16fa386 tf_resource_type=helm_release @module=helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:41.842+0200" +2025-07-11T08:52:41.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"minio" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"minio" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"2025.3.12","chart":"minio","first_deployed":1732564007,"last_deployed":1752215358,"name":"minio","namespace":"minio","notes":"CHART NAME: minio\nCHART VERSION: 16.0.0\nAPP VERSION: 2025.3.12\n\nDid you know there are enterprise versions of the Bitnami catalog? For enhanced secure software supply chain features, unlimited pulls from Docker, LTS support, or application customization, see Bitnami Premium or Tanzu Application Catalog. See https://www.arrow.com/globalecs/na/vendors/bitnami for more information.\n\n** Please be patient while the chart is being deployed **\n\nMinIO® can be accessed via port on the following DNS name from within your cluster:\n\n minio.minio.svc.cluster.local\n\nTo get your credentials run:\n\n export ROOT_USER=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-user}\" | base64 -d)\n export ROOT_PASSWORD=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-password}\" | base64 -d)\n\nTo connect to your MinIO® server using a client:\n\n- Run a MinIO® Client pod and append the desired command (e.g. 'admin info'):\n\n kubectl run --namespace minio minio-client \\\n --rm --tty -i --restart='Never' \\\n --env MINIO_SERVER_ROOT_USER=$ROOT_USER \\\n --env MINIO_SERVER_ROOT_PASSWORD=$ROOT_PASSWORD \\\n --env MINIO_SERVER_HOST=minio \\\n --image docker.io/bitnami/minio-client:2025.3.12-debian-12-r0 -- admin info minio\n\nTo access the MinIO® web UI:\n\n- Get the MinIO® URL:\n\n You should be able to access your new MinIO® web UI through\n\n http://storage-admin.365zon.fourlights.dev/minio/\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"apiIngress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"auth\":{\"rootPassword\":\"(sensitive value)\",\"rootUser\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage-admin.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"mode\":\"standalone\",\"persistence\":{\"size\":\"40Gi\"},\"resourcesPreset\":\"nano\",\"statefulset\":{\"drivesPerNode\":2,\"replicaCount\":1},\"tls\":{\"enabled\":false}}","version":"16.0.0"} Name:"minio" Namespace:"minio" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"mode","type":"","value":"standalone"},{"name":"resourcesPreset","type":"","value":"nano"},{"name":"statefulset.replicaCount","type":"","value":"1"},{"name":"statefulset.drivesPerNode","type":"","value":"2"},{"name":"persistence.size","type":"","value":"40Gi"}] SetList: SetSensitive:[{"name":"auth.rootUser","type":,"value":"Xg6VDlh9GVliFdnWnVec"},{"name":"auth.rootPassword","type":,"value":"j!4VaGixfD6f*nam7EeC0Sa*OogSqYA=cinX9bPj"}] SkipCrds:false Status:"deployed" Timeout:300 Values:["tls:\n enabled: false\n\ningress:\n enabled: true\n tls: false\n ingressClassName: nginx\n hostname: storage-admin.365zon.fourlights.dev\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n \n ingress.kubernetes.io/proxy-body-size: \"0\"\n nginx.ingress.kubernetes.io/proxy-body-size: \"0\"\n \n \n\napiIngress:\n enabled: true\n ingressClassName: nginx\n tls: false\n hostname: storage.365zon.fourlights.dev\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n \n ingress.kubernetes.io/proxy-body-size: \"0\"\n nginx.ingress.kubernetes.io/proxy-body-size: \"0\"\n \n"] Verify:false Version:"16.0.0" Wait:true WaitForJobs:true}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=31ae2ce1-fc1d-66ca-6299-b3e7a16fa386 tf_resource_type=helm_release timestamp="2025-07-11T08:52:41.848+0200" +2025-07-11T08:52:41.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"minio" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"minio" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"2025.3.12","chart":"minio","first_deployed":1732564007,"last_deployed":1752215358,"name":"minio","namespace":"minio","notes":"CHART NAME: minio\nCHART VERSION: 16.0.0\nAPP VERSION: 2025.3.12\n\nDid you know there are enterprise versions of the Bitnami catalog? For enhanced secure software supply chain features, unlimited pulls from Docker, LTS support, or application customization, see Bitnami Premium or Tanzu Application Catalog. See https://www.arrow.com/globalecs/na/vendors/bitnami for more information.\n\n** Please be patient while the chart is being deployed **\n\nMinIO® can be accessed via port on the following DNS name from within your cluster:\n\n minio.minio.svc.cluster.local\n\nTo get your credentials run:\n\n export ROOT_USER=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-user}\" | base64 -d)\n export ROOT_PASSWORD=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-password}\" | base64 -d)\n\nTo connect to your MinIO® server using a client:\n\n- Run a MinIO® Client pod and append the desired command (e.g. 'admin info'):\n\n kubectl run --namespace minio minio-client \\\n --rm --tty -i --restart='Never' \\\n --env MINIO_SERVER_ROOT_USER=$ROOT_USER \\\n --env MINIO_SERVER_ROOT_PASSWORD=$ROOT_PASSWORD \\\n --env MINIO_SERVER_HOST=minio \\\n --image docker.io/bitnami/minio-client:2025.3.12-debian-12-r0 -- admin info minio\n\nTo access the MinIO® web UI:\n\n- Get the MinIO® URL:\n\n You should be able to access your new MinIO® web UI through\n\n http://storage-admin.365zon.fourlights.dev/minio/\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"apiIngress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"auth\":{\"rootPassword\":\"(sensitive value)\",\"rootUser\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage-admin.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"mode\":\"standalone\",\"persistence\":{\"size\":\"40Gi\"},\"resourcesPreset\":\"nano\",\"statefulset\":{\"drivesPerNode\":2,\"replicaCount\":1},\"tls\":{\"enabled\":false}}","version":"16.0.0"} Name:"minio" Namespace:"minio" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"mode","type":"","value":"standalone"},{"name":"resourcesPreset","type":"","value":"nano"},{"name":"statefulset.replicaCount","type":"","value":"1"},{"name":"statefulset.drivesPerNode","type":"","value":"2"},{"name":"persistence.size","type":"","value":"40Gi"}] SetList: SetSensitive:[{"name":"auth.rootUser","type":,"value":"Xg6VDlh9GVliFdnWnVec"},{"name":"auth.rootPassword","type":,"value":"j!4VaGixfD6f*nam7EeC0Sa*OogSqYA=cinX9bPj"}] SkipCrds:false Status:"deployed" Timeout:300 Values:["tls:\n enabled: false\n\ningress:\n enabled: true\n tls: false\n ingressClassName: nginx\n hostname: storage-admin.365zon.fourlights.dev\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n \n ingress.kubernetes.io/proxy-body-size: \"0\"\n nginx.ingress.kubernetes.io/proxy-body-size: \"0\"\n \n \n\napiIngress:\n enabled: true\n ingressClassName: nginx\n tls: false\n hostname: storage.365zon.fourlights.dev\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n \n ingress.kubernetes.io/proxy-body-size: \"0\"\n nginx.ingress.kubernetes.io/proxy-body-size: \"0\"\n \n"] Verify:false Version:"16.0.0" Wait:true WaitForJobs:true}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=31ae2ce1-fc1d-66ca-6299-b3e7a16fa386 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 timestamp="2025-07-11T08:52:41.848+0200" +2025-07-11T08:52:41.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: minio] Start: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=31ae2ce1-fc1d-66ca-6299-b3e7a16fa386 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:41.848+0200" +2025-07-11T08:52:41.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=31ae2ce1-fc1d-66ca-6299-b3e7a16fa386 @module=helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:41.848+0200" +2025-07-11T08:52:41.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm configPaths=[] tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=31ae2ce1-fc1d-66ca-6299-b3e7a16fa386 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:41.848+0200" +2025-07-11T08:52:41.848+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=31ae2ce1-fc1d-66ca-6299-b3e7a16fa386 tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_resource_type=helm_release @module=helm timestamp="2025-07-11T08:52:41.848+0200" +2025-07-11T08:52:41.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: minio] Initial Values: Name=minio, Namespace=minio, Repository=oci://registry-1.docker.io/bitnamicharts, Repository_Username=, Repository_Password=, Chart=minio: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 tf_req_id=31ae2ce1-fc1d-66ca-6299-b3e7a16fa386 tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:41.848+0200" +2025-07-11T08:52:41.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc0006fd560 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=helm tf_req_id=31ae2ce1-fc1d-66ca-6299-b3e7a16fa386 timestamp="2025-07-11T08:52:41.848+0200" +2025-07-11T08:52:41.948+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Date="Fri, 11 Jul 2025 06:52:41 GMT" X-Api-Cattle-Auth=true + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"mongodb-auth","namespace":"mongodb","uid":"ca8368a6-42ac-4451-9d7b-003bd0dedf8b","resourceVersion":"2012002","creationTimestamp":"2024-11-29T19:03:50Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2024-11-29T19:14:42Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:mongodb-replica-set-key":{},"f:mongodb-root-password":{}},"f:type":{}}}]},"data":{"mongodb-replica-set-key":"ejl1Y2xzcWZIN1l3cVpmTE9nNTg3bEN5UzV2aVFUdDhkQ21yWGFyNw==","mongodb-root-password":"RzJNNWNrMzlCWDY3SDdMMkRvQjVMcVJGeHZQMTJ2SUxKVnc2V05aUg=="},"type":"generic"} + tf_http_trans_id=5952f17a-4e10-a9a4-e0fd-5dec5c1c5a7a @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_code=200 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json tf_http_res_status_reason="200 OK" X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 Audit-Id=2fe50266-4026-4f1d-aa07-d62bccc40961 Content-Length=641 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_res_version=HTTP/2.0 timestamp="2025-07-11T08:52:41.948+0200" +2025-07-11T08:52:41.948+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:41 [INFO] Reading secret mongodb-auth +2025-07-11T08:52:41.948+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept-Encoding=gzip tf_http_trans_id=636848ee-0475-fb42-f352-26bcc4f5ce57 @module=kubernetes.Kubernetes Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_version=HTTP/1.1 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/mongodb/secrets/mongodb-auth tf_http_req_method=GET Host=rancher.bridge.fourlights.dev tf_http_op_type=request tf_http_req_body="" timestamp="2025-07-11T08:52:41.948+0200" +2025-07-11T08:52:42.112+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Content-Length=641 tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"mongodb-auth","namespace":"mongodb","uid":"ca8368a6-42ac-4451-9d7b-003bd0dedf8b","resourceVersion":"2012002","creationTimestamp":"2024-11-29T19:03:50Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2024-11-29T19:14:42Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:mongodb-replica-set-key":{},"f:mongodb-root-password":{}},"f:type":{}}}]},"data":{"mongodb-replica-set-key":"ejl1Y2xzcWZIN1l3cVpmTE9nNTg3bEN5UzV2aVFUdDhkQ21yWGFyNw==","mongodb-root-password":"RzJNNWNrMzlCWDY3SDdMMkRvQjVMcVJGeHZQMTJ2SUxKVnc2V05aUg=="},"type":"generic"} + Audit-Id=6c0c00be-841a-4189-9f09-f5f26582f3bb Content-Type=application/json X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_trans_id=636848ee-0475-fb42-f352-26bcc4f5ce57 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:52:41 GMT" X-Content-Type-Options=nosniff tf_http_res_status_reason="200 OK" timestamp="2025-07-11T08:52:42.111+0200" +2025-07-11T08:52:42.112+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:42 [INFO] Received secret: v1.ObjectMeta{Name:"mongodb-auth", GenerateName:"", Namespace:"mongodb", SelfLink:"", UID:"ca8368a6-42ac-4451-9d7b-003bd0dedf8b", ResourceVersion:"2012002", Generation:0, CreationTimestamp:time.Date(2024, time.November, 29, 20, 3, 50, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2024, time.November, 29, 20, 14, 42, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001022270), Subresource:""}}} +2025-07-11T08:52:42.114+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.mongodb.kubernetes_secret.mongodb_auth, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:52:42.114+0200 [DEBUG] ReferenceTransformer: "module.mongodb.helm_release.mongodb" references: [] +2025-07-11T08:52:42.115+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:42.116+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=969032 +2025-07-11T08:52:42.116+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:42.120+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0007602a0 Settings:0xc000769440 RegistryClient:0xc000737600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release timestamp="2025-07-11T08:52:42.119+0200" +2025-07-11T08:52:42.120+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"mongodb" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"mongodb" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"8.0.3","chart":"mongodb","first_deployed":1732907685,"last_deployed":1752215413,"name":"mongodb","namespace":"mongodb","notes":"CHART NAME: mongodb\nCHART VERSION: 16.3.1\nAPP VERSION: 8.0.3\n\n** Please be patient while the chart is being deployed **\n\nMongoDB® can be accessed on the following DNS name(s) and ports from within your cluster:\n\n mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\n\nTo get the root password run:\n\n export MONGODB_ROOT_PASSWORD=$(kubectl get secret --namespace mongodb mongodb-auth -o jsonpath=\"{.data.mongodb-root-password}\" | base64 -d)\n\nTo connect to your database, create a MongoDB® client container:\n\n kubectl run --namespace mongodb mongodb-client --rm --tty -i --restart='Never' --env=\"MONGODB_ROOT_PASSWORD=$MONGODB_ROOT_PASSWORD\" --image docker.io/bitnami/mongodb:8.0.3-debian-12-r0 --command -- bash\n\nThen, run the following command:\n mongosh admin --host \"mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\" --authenticationDatabase admin -u $MONGODB_ROOT_USER -p $MONGODB_ROOT_PASSWORD\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - arbiter.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":3,"values":"{\"affinity\":{\"podAntiAffinity\":{\"requiredDuringSchedulingIgnoredDuringExecution\":[{\"labelSelector\":{\"matchLabels\":{\"app.kubernetes.io/component\":\"mongodb\"}},\"topologyKey\":\"kubernetes.io/hostname\"}]}},\"architecture\":\"replicaset\",\"auth\":{\"enabled\":true,\"existingSecret\":\"mongodb-auth\"},\"commonAnnotations\":{\"mongodb.com/timeouts\":\"true\"},\"livenessProbe\":{\"failureThreshold\":6,\"initialDelaySeconds\":60,\"periodSeconds\":20,\"timeoutSeconds\":15},\"mongodb\":{\"extraFlags\":[\"--oplogSizeMB=10240\",\"--setParameter=electionTimeoutMillis=10000\",\"--setParameter=heartbeatIntervalMillis=2000\",\"--setParameter=catchUpTimeoutMillis=30000\",\"--setParameter=catchUpTakeoverDelayMillis=30000\"]},\"readinessProbe\":{\"failureThreshold\":3,\"initialDelaySeconds\":30,\"periodSeconds\":10,\"successThreshold\":1,\"timeoutSeconds\":15},\"replicaCount\":3,\"resources\":{\"limits\":{\"cpu\":\"1000m\",\"memory\":\"1.5Gi\"},\"requests\":{\"cpu\":\"500m\",\"memory\":\"1Gi\"}},\"terminationGracePeriodSeconds\":300}","version":"16.3.1"} Name:"mongodb" Namespace:"mongodb" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["architecture: replicaset\nreplicaCount: 3\n\ncommonAnnotations:\n mongodb.com/timeouts: \"true\"\n\nmongodb:\n extraFlags:\n - \"--oplogSizeMB=10240\"\n - \"--setParameter=electionTimeoutMillis=10000\"\n - \"--setParameter=heartbeatIntervalMillis=2000\"\n - \"--setParameter=catchUpTimeoutMillis=30000\"\n - \"--setParameter=catchUpTakeoverDelayMillis=30000\"\n\n# More forgiving probe settings\nreadinessProbe:\n initialDelaySeconds: 30\n periodSeconds: 10\n timeoutSeconds: 15\n failureThreshold: 3\n successThreshold: 1\n\nlivenessProbe:\n initialDelaySeconds: 60\n periodSeconds: 20\n timeoutSeconds: 15\n failureThreshold: 6\n\n# Proper shutdown handling\nterminationGracePeriodSeconds: 300\n\n# Ensure pods are distributed across nodes\naffinity:\n podAntiAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n - labelSelector:\n matchLabels:\n app.kubernetes.io/component: mongodb\n topologyKey: kubernetes.io/hostname\n\nauth:\n enabled: true\n existingSecret: mongodb-auth\n\n \n\n \n\nresources:\n limits:\n cpu: 1000m\n memory: 1.5Gi\n requests:\n cpu: 500m\n memory: 1Gi\n"] Verify:false Version:"16.3.1" Wait:true WaitForJobs:true}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_rpc=ReadResource timestamp="2025-07-11T08:52:42.120+0200" +2025-07-11T08:52:42.120+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: mongodb] Start: @module=helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:42.120+0200" +2025-07-11T08:52:42.120+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:42.120+0200" +2025-07-11T08:52:42.120+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm configPaths=[] tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release timestamp="2025-07-11T08:52:42.120+0200" +2025-07-11T08:52:42.120+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm timestamp="2025-07-11T08:52:42.120+0200" +2025-07-11T08:52:42.120+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: mongodb getRelease post action created: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 timestamp="2025-07-11T08:52:42.120+0200" +2025-07-11T08:52:43.059+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: rabbitmq getRelease post run: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.059+0200" +2025-07-11T08:52:43.060+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: rabbitmq getRelease completed: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 timestamp="2025-07-11T08:52:43.059+0200" +2025-07-11T08:52:43.060+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: rabbitmq] Done: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 @module=helm timestamp="2025-07-11T08:52:43.059+0200" +2025-07-11T08:52:43.060+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: rabbitmq] Started: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.059+0200" +2025-07-11T08:52:43.060+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release tf_rpc=ReadResource KubernetesData=map[] timestamp="2025-07-11T08:52:43.059+0200" +2025-07-11T08:52:43.060+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @module=helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c timestamp="2025-07-11T08:52:43.060+0200" +2025-07-11T08:52:43.060+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.060+0200" +2025-07-11T08:52:43.060+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: rabbitmq getRelease post action created: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.060+0200" +2025-07-11T08:52:43.196+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: mongodb getRelease post run: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.196+0200" +2025-07-11T08:52:43.196+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: mongodb getRelease completed: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.196+0200" +2025-07-11T08:52:43.196+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: mongodb] Done: @module=helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:43.196+0200" +2025-07-11T08:52:43.196+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: mongodb] Started: @module=helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.196+0200" +2025-07-11T08:52:43.196+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_rpc=ReadResource KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 timestamp="2025-07-11T08:52:43.196+0200" +2025-07-11T08:52:43.196+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm configPaths=[] tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.196+0200" +2025-07-11T08:52:43.196+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:43.196+0200" +2025-07-11T08:52:43.196+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: mongodb getRelease post action created: tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.196+0200" +2025-07-11T08:52:43.667+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: mongodb getRelease post run: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 timestamp="2025-07-11T08:52:43.667+0200" +2025-07-11T08:52:43.667+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: mongodb getRelease completed: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.667+0200" +2025-07-11T08:52:43.667+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"8.0.3","chart":"mongodb","first_deployed":1732907685,"last_deployed":1752215413,"name":"mongodb","namespace":"mongodb","notes":"CHART NAME: mongodb\nCHART VERSION: 16.3.1\nAPP VERSION: 8.0.3\n\n** Please be patient while the chart is being deployed **\n\nMongoDB® can be accessed on the following DNS name(s) and ports from within your cluster:\n\n mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\n\nTo get the root password run:\n\n export MONGODB_ROOT_PASSWORD=$(kubectl get secret --namespace mongodb mongodb-auth -o jsonpath=\"{.data.mongodb-root-password}\" | base64 -d)\n\nTo connect to your database, create a MongoDB® client container:\n\n kubectl run --namespace mongodb mongodb-client --rm --tty -i --restart='Never' --env=\"MONGODB_ROOT_PASSWORD=$MONGODB_ROOT_PASSWORD\" --image docker.io/bitnami/mongodb:8.0.3-debian-12-r0 --command -- bash\n\nThen, run the following command:\n mongosh admin --host \"mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\" --authenticationDatabase admin -u $MONGODB_ROOT_USER -p $MONGODB_ROOT_PASSWORD\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - arbiter.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":3,"values":"{\"affinity\":{\"podAntiAffinity\":{\"requiredDuringSchedulingIgnoredDuringExecution\":[{\"labelSelector\":{\"matchLabels\":{\"app.kubernetes.io/component\":\"mongodb\"}},\"topologyKey\":\"kubernetes.io/hostname\"}]}},\"architecture\":\"replicaset\",\"auth\":{\"enabled\":true,\"existingSecret\":\"mongodb-auth\"},\"commonAnnotations\":{\"mongodb.com/timeouts\":\"true\"},\"livenessProbe\":{\"failureThreshold\":6,\"initialDelaySeconds\":60,\"periodSeconds\":20,\"timeoutSeconds\":15},\"mongodb\":{\"extraFlags\":[\"--oplogSizeMB=10240\",\"--setParameter=electionTimeoutMillis=10000\",\"--setParameter=heartbeatIntervalMillis=2000\",\"--setParameter=catchUpTimeoutMillis=30000\",\"--setParameter=catchUpTakeoverDelayMillis=30000\"]},\"readinessProbe\":{\"failureThreshold\":3,\"initialDelaySeconds\":30,\"periodSeconds\":10,\"successThreshold\":1,\"timeoutSeconds\":15},\"replicaCount\":3,\"resources\":{\"limits\":{\"cpu\":\"1000m\",\"memory\":\"1.5Gi\"},\"requests\":{\"cpu\":\"500m\",\"memory\":\"1Gi\"}},\"terminationGracePeriodSeconds\":300}","version":"16.3.1"}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 @module=helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.667+0200" +2025-07-11T08:52:43.667+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=max_history tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 timestamp="2025-07-11T08:52:43.667+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release tf_attribute_path=version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:43.667+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource tf_attribute_path=disable_openapi_validation tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=dependency_update tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=wait_for_jobs tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=status tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=timeout tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=disable_crd_hooks tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=replace tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=recreate_pods tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_rpc=ReadResource tf_attribute_path=name tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=verify tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_attribute_path=disable_webhooks tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=chart tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=render_subchart_notes tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=wait tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=skip_crds tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_attribute_path=values[0] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=values tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=force_update tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=create_namespace tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_attribute_path=reuse_values timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=cleanup_on_fail tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.name tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.namespace tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.revision tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.app_version tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.last_deployed tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.version tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.notes tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.first_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.chart tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=pass_credentials tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_rpc=ReadResource tf_attribute_path=repository timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release @module=sdk.framework tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=id tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=reset_values tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=atomic tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.668+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=d2c7e436-8c26-49c9-2dfc-65aba2cc4085 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=lint tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.668+0200" +2025-07-11T08:52:43.670+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:43.671+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0007602a0 Settings:0xc000769440 RegistryClient:0xc000737600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c04bad63-0c88-ee3b-dee1-5807bf4f7383 tf_resource_type=helm_release tf_rpc=ValidateResourceConfig @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm timestamp="2025-07-11T08:52:43.671+0200" +2025-07-11T08:52:43.673+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0007602a0 Settings:0xc000769440 RegistryClient:0xc000737600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=663c782d-4801-534d-4949-1143b3d46326 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm timestamp="2025-07-11T08:52:43.673+0200" +2025-07-11T08:52:43.678+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"mongodb" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"mongodb" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"8.0.3","chart":"mongodb","first_deployed":1732907685,"last_deployed":1752215413,"name":"mongodb","namespace":"mongodb","notes":"CHART NAME: mongodb\nCHART VERSION: 16.3.1\nAPP VERSION: 8.0.3\n\n** Please be patient while the chart is being deployed **\n\nMongoDB® can be accessed on the following DNS name(s) and ports from within your cluster:\n\n mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\n\nTo get the root password run:\n\n export MONGODB_ROOT_PASSWORD=$(kubectl get secret --namespace mongodb mongodb-auth -o jsonpath=\"{.data.mongodb-root-password}\" | base64 -d)\n\nTo connect to your database, create a MongoDB® client container:\n\n kubectl run --namespace mongodb mongodb-client --rm --tty -i --restart='Never' --env=\"MONGODB_ROOT_PASSWORD=$MONGODB_ROOT_PASSWORD\" --image docker.io/bitnami/mongodb:8.0.3-debian-12-r0 --command -- bash\n\nThen, run the following command:\n mongosh admin --host \"mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\" --authenticationDatabase admin -u $MONGODB_ROOT_USER -p $MONGODB_ROOT_PASSWORD\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - arbiter.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":3,"values":"{\"affinity\":{\"podAntiAffinity\":{\"requiredDuringSchedulingIgnoredDuringExecution\":[{\"labelSelector\":{\"matchLabels\":{\"app.kubernetes.io/component\":\"mongodb\"}},\"topologyKey\":\"kubernetes.io/hostname\"}]}},\"architecture\":\"replicaset\",\"auth\":{\"enabled\":true,\"existingSecret\":\"mongodb-auth\"},\"commonAnnotations\":{\"mongodb.com/timeouts\":\"true\"},\"livenessProbe\":{\"failureThreshold\":6,\"initialDelaySeconds\":60,\"periodSeconds\":20,\"timeoutSeconds\":15},\"mongodb\":{\"extraFlags\":[\"--oplogSizeMB=10240\",\"--setParameter=electionTimeoutMillis=10000\",\"--setParameter=heartbeatIntervalMillis=2000\",\"--setParameter=catchUpTimeoutMillis=30000\",\"--setParameter=catchUpTakeoverDelayMillis=30000\"]},\"readinessProbe\":{\"failureThreshold\":3,\"initialDelaySeconds\":30,\"periodSeconds\":10,\"successThreshold\":1,\"timeoutSeconds\":15},\"replicaCount\":3,\"resources\":{\"limits\":{\"cpu\":\"1000m\",\"memory\":\"1.5Gi\"},\"requests\":{\"cpu\":\"500m\",\"memory\":\"1Gi\"}},\"terminationGracePeriodSeconds\":300}","version":"16.3.1"} Name:"mongodb" Namespace:"mongodb" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["architecture: replicaset\nreplicaCount: 3\n\ncommonAnnotations:\n mongodb.com/timeouts: \"true\"\n\nmongodb:\n extraFlags:\n - \"--oplogSizeMB=10240\"\n - \"--setParameter=electionTimeoutMillis=10000\"\n - \"--setParameter=heartbeatIntervalMillis=2000\"\n - \"--setParameter=catchUpTimeoutMillis=30000\"\n - \"--setParameter=catchUpTakeoverDelayMillis=30000\"\n\n# More forgiving probe settings\nreadinessProbe:\n initialDelaySeconds: 30\n periodSeconds: 10\n timeoutSeconds: 15\n failureThreshold: 3\n successThreshold: 1\n\nlivenessProbe:\n initialDelaySeconds: 60\n periodSeconds: 20\n timeoutSeconds: 15\n failureThreshold: 6\n\n# Proper shutdown handling\nterminationGracePeriodSeconds: 300\n\n# Ensure pods are distributed across nodes\naffinity:\n podAntiAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n - labelSelector:\n matchLabels:\n app.kubernetes.io/component: mongodb\n topologyKey: kubernetes.io/hostname\n\nauth:\n enabled: true\n existingSecret: mongodb-auth\n\n \n\n \n\nresources:\n limits:\n cpu: 1000m\n memory: 1.5Gi\n requests:\n cpu: 500m\n memory: 1Gi\n"] Verify:false Version:"16.3.1" Wait:true WaitForJobs:true}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=663c782d-4801-534d-4949-1143b3d46326 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 @module=helm timestamp="2025-07-11T08:52:43.678+0200" +2025-07-11T08:52:43.678+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"mongodb" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"mongodb" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"8.0.3","chart":"mongodb","first_deployed":1732907685,"last_deployed":1752215413,"name":"mongodb","namespace":"mongodb","notes":"CHART NAME: mongodb\nCHART VERSION: 16.3.1\nAPP VERSION: 8.0.3\n\n** Please be patient while the chart is being deployed **\n\nMongoDB® can be accessed on the following DNS name(s) and ports from within your cluster:\n\n mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\n\nTo get the root password run:\n\n export MONGODB_ROOT_PASSWORD=$(kubectl get secret --namespace mongodb mongodb-auth -o jsonpath=\"{.data.mongodb-root-password}\" | base64 -d)\n\nTo connect to your database, create a MongoDB® client container:\n\n kubectl run --namespace mongodb mongodb-client --rm --tty -i --restart='Never' --env=\"MONGODB_ROOT_PASSWORD=$MONGODB_ROOT_PASSWORD\" --image docker.io/bitnami/mongodb:8.0.3-debian-12-r0 --command -- bash\n\nThen, run the following command:\n mongosh admin --host \"mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\" --authenticationDatabase admin -u $MONGODB_ROOT_USER -p $MONGODB_ROOT_PASSWORD\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - arbiter.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":3,"values":"{\"affinity\":{\"podAntiAffinity\":{\"requiredDuringSchedulingIgnoredDuringExecution\":[{\"labelSelector\":{\"matchLabels\":{\"app.kubernetes.io/component\":\"mongodb\"}},\"topologyKey\":\"kubernetes.io/hostname\"}]}},\"architecture\":\"replicaset\",\"auth\":{\"enabled\":true,\"existingSecret\":\"mongodb-auth\"},\"commonAnnotations\":{\"mongodb.com/timeouts\":\"true\"},\"livenessProbe\":{\"failureThreshold\":6,\"initialDelaySeconds\":60,\"periodSeconds\":20,\"timeoutSeconds\":15},\"mongodb\":{\"extraFlags\":[\"--oplogSizeMB=10240\",\"--setParameter=electionTimeoutMillis=10000\",\"--setParameter=heartbeatIntervalMillis=2000\",\"--setParameter=catchUpTimeoutMillis=30000\",\"--setParameter=catchUpTakeoverDelayMillis=30000\"]},\"readinessProbe\":{\"failureThreshold\":3,\"initialDelaySeconds\":30,\"periodSeconds\":10,\"successThreshold\":1,\"timeoutSeconds\":15},\"replicaCount\":3,\"resources\":{\"limits\":{\"cpu\":\"1000m\",\"memory\":\"1.5Gi\"},\"requests\":{\"cpu\":\"500m\",\"memory\":\"1Gi\"}},\"terminationGracePeriodSeconds\":300}","version":"16.3.1"} Name:"mongodb" Namespace:"mongodb" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["architecture: replicaset\nreplicaCount: 3\n\ncommonAnnotations:\n mongodb.com/timeouts: \"true\"\n\nmongodb:\n extraFlags:\n - \"--oplogSizeMB=10240\"\n - \"--setParameter=electionTimeoutMillis=10000\"\n - \"--setParameter=heartbeatIntervalMillis=2000\"\n - \"--setParameter=catchUpTimeoutMillis=30000\"\n - \"--setParameter=catchUpTakeoverDelayMillis=30000\"\n\n# More forgiving probe settings\nreadinessProbe:\n initialDelaySeconds: 30\n periodSeconds: 10\n timeoutSeconds: 15\n failureThreshold: 3\n successThreshold: 1\n\nlivenessProbe:\n initialDelaySeconds: 60\n periodSeconds: 20\n timeoutSeconds: 15\n failureThreshold: 6\n\n# Proper shutdown handling\nterminationGracePeriodSeconds: 300\n\n# Ensure pods are distributed across nodes\naffinity:\n podAntiAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n - labelSelector:\n matchLabels:\n app.kubernetes.io/component: mongodb\n topologyKey: kubernetes.io/hostname\n\nauth:\n enabled: true\n existingSecret: mongodb-auth\n\n \n\n \n\nresources:\n limits:\n cpu: 1000m\n memory: 1.5Gi\n requests:\n cpu: 500m\n memory: 1Gi\n"] Verify:false Version:"16.3.1" Wait:true WaitForJobs:true}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @module=helm tf_req_id=663c782d-4801-534d-4949-1143b3d46326 tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.678+0200" +2025-07-11T08:52:43.678+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: mongodb] Start: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm tf_req_id=663c782d-4801-534d-4949-1143b3d46326 timestamp="2025-07-11T08:52:43.678+0200" +2025-07-11T08:52:43.678+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=663c782d-4801-534d-4949-1143b3d46326 timestamp="2025-07-11T08:52:43.678+0200" +2025-07-11T08:52:43.678+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm configPaths=[] tf_req_id=663c782d-4801-534d-4949-1143b3d46326 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:43.678+0200" +2025-07-11T08:52:43.678+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=663c782d-4801-534d-4949-1143b3d46326 tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 timestamp="2025-07-11T08:52:43.678+0200" +2025-07-11T08:52:43.678+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: mongodb] Initial Values: Name=mongodb, Namespace=mongodb, Repository=oci://registry-1.docker.io/bitnamicharts, Repository_Username=, Repository_Password=, Chart=mongodb: tf_req_id=663c782d-4801-534d-4949-1143b3d46326 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:43.678+0200" +2025-07-11T08:52:43.678+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc000769560 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=663c782d-4801-534d-4949-1143b3d46326 tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.678+0200" +2025-07-11T08:52:43.813+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: minio] Got chart: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=31ae2ce1-fc1d-66ca-6299-b3e7a16fa386 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:43.813+0200" +2025-07-11T08:52:43.813+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=31ae2ce1-fc1d-66ca-6299-b3e7a16fa386 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 @module=helm timestamp="2025-07-11T08:52:43.813+0200" +2025-07-11T08:52:43.813+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: minio] Release validated: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 tf_req_id=31ae2ce1-fc1d-66ca-6299-b3e7a16fa386 timestamp="2025-07-11T08:52:43.813+0200" +2025-07-11T08:52:43.813+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: minio] Done: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_req_id=31ae2ce1-fc1d-66ca-6299-b3e7a16fa386 timestamp="2025-07-11T08:52:43.813+0200" +2025-07-11T08:52:43.816+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:43.816+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_namespace.tenant" references: [] +2025-07-11T08:52:43.818+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=969206 +2025-07-11T08:52:43.818+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:43.820+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:43 [INFO] Checking namespace 365zon +2025-07-11T08:52:43.820+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon Accept="application/json, */*" tf_http_trans_id=64e48d8d-12b1-b430-7ab3-e67b7a4bf10b @module=kubernetes.Kubernetes User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_req_method=GET tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T08:52:43.820+0200" +2025-07-11T08:52:43.825+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: rabbitmq getRelease post run: tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 timestamp="2025-07-11T08:52:43.825+0200" +2025-07-11T08:52:43.825+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: rabbitmq getRelease completed: @module=helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.825+0200" +2025-07-11T08:52:43.825+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"4.0.4","chart":"rabbitmq","first_deployed":1732607998,"last_deployed":1752215414,"name":"rabbitmq","namespace":"rabbitmq","notes":"CHART NAME: rabbitmq\nCHART VERSION: 15.1.0\nAPP VERSION: 4.0.4** Please be patient while the chart is being deployed **\n\nCredentials:\n echo \"Username : user\"\n echo \"Password : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-password}\" | base64 -d)\"\n echo \"ErLang Cookie : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-erlang-cookie}\" | base64 -d)\"\n\nNote that the credentials are saved in persistent volume claims and will not be changed upon upgrade or reinstallation unless the persistent volume claim has been deleted. If this is not the first installation of this chart, the credentials may not be valid.\nThis is applicable when no passwords are set and therefore the random password is autogenerated. In case of using a fixed password, you should specify it when upgrading.\nMore information about the credentials may be found at https://docs.bitnami.com/general/how-to/troubleshoot-helm-chart-issues/#credential-errors-while-upgrading-chart-releases.\n\nRabbitMQ can be accessed within the cluster on port 5672 at rabbitmq.rabbitmq.svc.cluster.local\n\nTo access for outside the cluster, perform the following steps:\n\nTo Access the RabbitMQ AMQP port:\n\n1. Create a port-forward to the AMQP port:\n\n kubectl port-forward --namespace rabbitmq svc/rabbitmq 5672:5672 &\n echo \"URL : amqp://127.0.0.1:5672/\"\n\n2. Access RabbitMQ using using the obtained URL.\n\nTo Access the RabbitMQ Management interface:\n\n1. Get the RabbitMQ Management URL and associate its hostname to your cluster external IP:\n\n export CLUSTER_IP=$(minikube ip) # On Minikube. Use: `kubectl cluster-info` on others K8s clusters\n echo \"RabbitMQ Management: http://rabbitmq.local/\"\n echo \"$CLUSTER_IP rabbitmq.local\" | sudo tee -a /etc/hosts\n\n2. Open a browser and access RabbitMQ Management using the obtained URL.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"auth\":{\"password\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"kubernetes.io/ingress.class\":\"nginx\"},\"enabled\":true,\"hostname\":\"rabbitmq.local\",\"ingressClassName\":\"nginx\",\"tls\":false},\"persistence\":{\"size\":\"4Gi\"},\"replicaCount\":1}","version":"15.1.0"}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 timestamp="2025-07-11T08:52:43.825+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=chart tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=sdk.framework tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=skip_crds tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=replace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=force_update tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_rpc=ReadResource tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=repository timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[0].value tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[0].name tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[0].type tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=set[0] timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=set[1].name tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_rpc=ReadResource tf_attribute_path=set[1].type tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[1].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[1] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release tf_attribute_path=set tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=pass_credentials tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=dependency_update tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=status tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=atomic tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=disable_openapi_validation tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=disable_crd_hooks tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.826+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_attribute_path=render_subchart_notes tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_rpc=ReadResource tf_attribute_path=reuse_values tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.826+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=metadata.chart tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.app_version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_rpc=ReadResource tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.version tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.name @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release tf_attribute_path=metadata.first_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_attribute_path=metadata.revision tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=metadata.notes tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.last_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=recreate_pods timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=cleanup_on_fail tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=reset_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_rpc=ReadResource tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=verify tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=lint tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release @module=sdk.framework tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=name tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=wait tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=values[0] tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=values tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=timeout tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=create_namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=disable_webhooks tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_attribute_path=wait_for_jobs tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=version @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set_sensitive[0].value tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource tf_attribute_path=set_sensitive[0].name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=set_sensitive[0] tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_attribute_path=set_sensitive tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.827+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=max_history tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cd7efdc2-7276-f21f-3300-9c82ede1a94c tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:43.827+0200" +2025-07-11T08:52:43.829+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:43.830+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0008c02a0 Settings:0xc0008c9440 RegistryClient:0xc00063b780 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_req_id=c63ac7fc-dc8a-7a34-7777-ecd83c5bdf49 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ValidateResourceConfig timestamp="2025-07-11T08:52:43.830+0200" +2025-07-11T08:52:43.832+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0008c02a0 Settings:0xc0008c9440 RegistryClient:0xc00063b780 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_req_id=3a1886aa-a172-74b9-077b-353428e1281b tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.832+0200" +2025-07-11T08:52:43.837+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"rabbitmq" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"rabbitmq" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"4.0.4","chart":"rabbitmq","first_deployed":1732607998,"last_deployed":1752215414,"name":"rabbitmq","namespace":"rabbitmq","notes":"CHART NAME: rabbitmq\nCHART VERSION: 15.1.0\nAPP VERSION: 4.0.4** Please be patient while the chart is being deployed **\n\nCredentials:\n echo \"Username : user\"\n echo \"Password : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-password}\" | base64 -d)\"\n echo \"ErLang Cookie : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-erlang-cookie}\" | base64 -d)\"\n\nNote that the credentials are saved in persistent volume claims and will not be changed upon upgrade or reinstallation unless the persistent volume claim has been deleted. If this is not the first installation of this chart, the credentials may not be valid.\nThis is applicable when no passwords are set and therefore the random password is autogenerated. In case of using a fixed password, you should specify it when upgrading.\nMore information about the credentials may be found at https://docs.bitnami.com/general/how-to/troubleshoot-helm-chart-issues/#credential-errors-while-upgrading-chart-releases.\n\nRabbitMQ can be accessed within the cluster on port 5672 at rabbitmq.rabbitmq.svc.cluster.local\n\nTo access for outside the cluster, perform the following steps:\n\nTo Access the RabbitMQ AMQP port:\n\n1. Create a port-forward to the AMQP port:\n\n kubectl port-forward --namespace rabbitmq svc/rabbitmq 5672:5672 &\n echo \"URL : amqp://127.0.0.1:5672/\"\n\n2. Access RabbitMQ using using the obtained URL.\n\nTo Access the RabbitMQ Management interface:\n\n1. Get the RabbitMQ Management URL and associate its hostname to your cluster external IP:\n\n export CLUSTER_IP=$(minikube ip) # On Minikube. Use: `kubectl cluster-info` on others K8s clusters\n echo \"RabbitMQ Management: http://rabbitmq.local/\"\n echo \"$CLUSTER_IP rabbitmq.local\" | sudo tee -a /etc/hosts\n\n2. Open a browser and access RabbitMQ Management using the obtained URL.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"auth\":{\"password\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"kubernetes.io/ingress.class\":\"nginx\"},\"enabled\":true,\"hostname\":\"rabbitmq.local\",\"ingressClassName\":\"nginx\",\"tls\":false},\"persistence\":{\"size\":\"4Gi\"},\"replicaCount\":1}","version":"15.1.0"} Name:"rabbitmq" Namespace:"rabbitmq" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"replicaCount","type":"","value":"1"},{"name":"persistence.size","type":"","value":"4Gi"}] SetList: SetSensitive:[{"name":"auth.password","type":,"value":"QA3UNmEGovybKcT415K6"}] SkipCrds:false Status:"deployed" Timeout:300 Values:["ingress:\n enabled: true\n tls: false\n ingressClassName: nginx\n hostname: rabbitmq.local\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n"] Verify:false Version:"15.1.0" Wait:true WaitForJobs:false}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange tf_req_id=3a1886aa-a172-74b9-077b-353428e1281b tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.837+0200" +2025-07-11T08:52:43.837+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"rabbitmq" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"rabbitmq" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"4.0.4","chart":"rabbitmq","first_deployed":1732607998,"last_deployed":1752215414,"name":"rabbitmq","namespace":"rabbitmq","notes":"CHART NAME: rabbitmq\nCHART VERSION: 15.1.0\nAPP VERSION: 4.0.4** Please be patient while the chart is being deployed **\n\nCredentials:\n echo \"Username : user\"\n echo \"Password : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-password}\" | base64 -d)\"\n echo \"ErLang Cookie : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-erlang-cookie}\" | base64 -d)\"\n\nNote that the credentials are saved in persistent volume claims and will not be changed upon upgrade or reinstallation unless the persistent volume claim has been deleted. If this is not the first installation of this chart, the credentials may not be valid.\nThis is applicable when no passwords are set and therefore the random password is autogenerated. In case of using a fixed password, you should specify it when upgrading.\nMore information about the credentials may be found at https://docs.bitnami.com/general/how-to/troubleshoot-helm-chart-issues/#credential-errors-while-upgrading-chart-releases.\n\nRabbitMQ can be accessed within the cluster on port 5672 at rabbitmq.rabbitmq.svc.cluster.local\n\nTo access for outside the cluster, perform the following steps:\n\nTo Access the RabbitMQ AMQP port:\n\n1. Create a port-forward to the AMQP port:\n\n kubectl port-forward --namespace rabbitmq svc/rabbitmq 5672:5672 &\n echo \"URL : amqp://127.0.0.1:5672/\"\n\n2. Access RabbitMQ using using the obtained URL.\n\nTo Access the RabbitMQ Management interface:\n\n1. Get the RabbitMQ Management URL and associate its hostname to your cluster external IP:\n\n export CLUSTER_IP=$(minikube ip) # On Minikube. Use: `kubectl cluster-info` on others K8s clusters\n echo \"RabbitMQ Management: http://rabbitmq.local/\"\n echo \"$CLUSTER_IP rabbitmq.local\" | sudo tee -a /etc/hosts\n\n2. Open a browser and access RabbitMQ Management using the obtained URL.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"auth\":{\"password\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"kubernetes.io/ingress.class\":\"nginx\"},\"enabled\":true,\"hostname\":\"rabbitmq.local\",\"ingressClassName\":\"nginx\",\"tls\":false},\"persistence\":{\"size\":\"4Gi\"},\"replicaCount\":1}","version":"15.1.0"} Name:"rabbitmq" Namespace:"rabbitmq" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"replicaCount","type":"","value":"1"},{"name":"persistence.size","type":"","value":"4Gi"}] SetList: SetSensitive:[{"name":"auth.password","type":,"value":"QA3UNmEGovybKcT415K6"}] SkipCrds:false Status:"deployed" Timeout:300 Values:["ingress:\n enabled: true\n tls: false\n ingressClassName: nginx\n hostname: rabbitmq.local\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n"] Verify:false Version:"15.1.0" Wait:true WaitForJobs:false}: @module=helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3a1886aa-a172-74b9-077b-353428e1281b tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:43.837+0200" +2025-07-11T08:52:43.837+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: rabbitmq] Start: @module=helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3a1886aa-a172-74b9-077b-353428e1281b tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:43.837+0200" +2025-07-11T08:52:43.837+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_resource_type=helm_release tf_rpc=PlanResourceChange KubernetesData=map[] @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3a1886aa-a172-74b9-077b-353428e1281b timestamp="2025-07-11T08:52:43.837+0200" +2025-07-11T08:52:43.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3a1886aa-a172-74b9-077b-353428e1281b tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 configPaths=[] tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.838+0200" +2025-07-11T08:52:43.838+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3a1886aa-a172-74b9-077b-353428e1281b timestamp="2025-07-11T08:52:43.838+0200" +2025-07-11T08:52:43.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: rabbitmq] Initial Values: Name=rabbitmq, Namespace=rabbitmq, Repository=oci://registry-1.docker.io/bitnamicharts, Repository_Username=, Repository_Password=, Chart=rabbitmq: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 tf_req_id=3a1886aa-a172-74b9-077b-353428e1281b timestamp="2025-07-11T08:52:43.838+0200" +2025-07-11T08:52:43.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc0008c9560 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3a1886aa-a172-74b9-077b-353428e1281b tf_resource_type=helm_release timestamp="2025-07-11T08:52:43.838+0200" +2025-07-11T08:52:43.988+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:52:43 [DEBUG] ({365zon2 on false { + "Version": "2012-10-17", + "Statement": [ + { + "Effect": "Allow", + "Action": [ + "s3:ListBucket" + ], + "Resource": [ + "arn:aws:s3:::365zon2" + ] + }, + { + "Effect": "Allow", + "Action": [ + "s3:DeleteObject", + "s3:GetObject", + "s3:PutObject" + ], + "Resource": [ + "arn:aws:s3:::365zon2/*" + ] + } + ] +} }): timestamp="2025-07-11T08:52:43.988+0200" +2025-07-11T08:52:43.990+0200 [WARN] Provider "registry.terraform.io/aminueza/minio" produced an invalid plan for module.tenant-365zon.module.minio.minio_iam_service_account.overlay, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .description: planned value cty.StringVal("") for a non-computed attribute + - .expiration: planned value cty.StringVal("1970-01-01T00:00:00Z") for a non-computed attribute + - .name: planned value cty.StringVal("") for a non-computed attribute + - .update_secret: planned value cty.False for a non-computed attribute + - .disable_user: planned value cty.False for a non-computed attribute +2025-07-11T08:52:43.990+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:43.992+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=969269 +2025-07-11T08:52:43.992+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:44.184+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Length=1223 Content-Type=application/json tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_code=200 tf_http_trans_id=64e48d8d-12b1-b430-7ab3-e67b7a4bf10b Audit-Id=f89789ad-baf5-4e99-b833-5c2e437cfebf Date="Fri, 11 Jul 2025 06:52:44 GMT" X-Content-Type-Options=nosniff tf_http_op_type=response + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"365zon","uid":"20230e1f-afa5-430b-9720-e3668166b470","resourceVersion":"109671116","creationTimestamp":"2025-07-11T06:29:49Z","labels":{"kubernetes.io/metadata.name":"365zon"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:51Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:51Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:49Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_reason="200 OK" X-Api-Cattle-Auth=true X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." timestamp="2025-07-11T08:52:44.184+0200" +2025-07-11T08:52:44.184+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:44 [INFO] Namespace 365zon exists +2025-07-11T08:52:44.184+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:44 [INFO] Reading namespace 365zon +2025-07-11T08:52:44.184+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET @module=kubernetes.Kubernetes Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_op_type=request tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_trans_id=f1f8ccd7-b77f-c7c9-d50b-e0b5d2151324 timestamp="2025-07-11T08:52:44.184+0200" +2025-07-11T08:52:44.234+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Content-Type-Options=nosniff @module=kubernetes.Kubernetes Audit-Id=7f3b7929-4382-4565-99fd-ae2f4ecb6ad8 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=1223 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Type=application/json tf_http_res_status_reason="200 OK" tf_http_trans_id=f1f8ccd7-b77f-c7c9-d50b-e0b5d2151324 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 Date="Fri, 11 Jul 2025 06:52:44 GMT" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"365zon","uid":"20230e1f-afa5-430b-9720-e3668166b470","resourceVersion":"109671116","creationTimestamp":"2025-07-11T06:29:49Z","labels":{"kubernetes.io/metadata.name":"365zon"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:51Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:51Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:49Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_code=200 X-Api-Cattle-Auth=true tf_http_op_type=response tf_http_res_version=HTTP/2.0 timestamp="2025-07-11T08:52:44.234+0200" +2025-07-11T08:52:44.235+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:44 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"365zon", GenerateName:"", Namespace:"", SelfLink:"", UID:"20230e1f-afa5-430b-9720-e3668166b470", ResourceVersion:"109671116", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 49, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"365zon"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:51Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:51Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 49, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000eea978), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 50, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000eea9a8), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:52:44.236+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.kubernetes_namespace.tenant, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute +2025-07-11T08:52:44.237+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.storage" references: [] +2025-07-11T08:52:44.237+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings" references: [] +2025-07-11T08:52:44.238+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:44 [INFO] Checking secret connection-strings +2025-07-11T08:52:44.238+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:44 [INFO] Checking secret storage +2025-07-11T08:52:44.238+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_method=GET Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_body="" tf_http_req_version=HTTP/1.1 tf_http_trans_id=b68b3fa7-736d-9d4e-2b67-15911a9c6a24 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/storage Accept="application/json, */*" Host=rancher.bridge.fourlights.dev timestamp="2025-07-11T08:52:44.238+0200" +2025-07-11T08:52:44.238+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_req_version=HTTP/1.1 tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/connection-strings tf_http_trans_id=2d337afc-9a11-62f6-0f0d-10749e6f944a Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request @module=kubernetes.Kubernetes Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev tf_http_req_body="" tf_http_req_method=GET timestamp="2025-07-11T08:52:44.238+0200" +2025-07-11T08:52:44.298+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"connection-strings","namespace":"365zon","uid":"47f6eb88-7be7-4756-ac01-6857de56e2e4","resourceVersion":"109671119","creationTimestamp":"2025-07-11T06:29:50Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:ConnectionStrings__DocumentDb":{},"f:ConnectionStrings__ServiceBus":{}},"f:type":{}}}]},"data":{"ConnectionStrings__DocumentDb":"bW9uZ29kYjovL3Jvb3Q6RzJNNWNrMzlCWDY3SDdMMkRvQjVMcVJGeHZQMTJ2SUxKVnc2V05aUkBtb25nb2RiLTAubW9uZ29kYi1oZWFkbGVzcy5tb25nb2RiLnN2Yy5jbHVzdGVyLmxvY2FsOjI3MDE3LG1vbmdvZGItMS5tb25nb2RiLWhlYWRsZXNzLm1vbmdvZGIuc3ZjLmNsdXN0ZXIubG9jYWw6MjcwMTcsbW9uZ29kYi0yLm1vbmdvZGItaGVhZGxlc3MubW9uZ29kYi5zdmMuY2x1c3Rlci5sb2NhbDoyNzAxNy9hZG1pbj9yZXBsaWNhU2V0PXJzMCZhdXRoU291cmNlPWFkbWlu","ConnectionStrings__ServiceBus":"cmFiYml0bXE6Ly91c2VyOlFBM1VObUVHb3Z5YktjVDQxNUs2QHJhYmJpdG1xLWhlYWRsZXNzLnJhYmJpdG1xLnN2Yy5jbHVzdGVyLmxvY2FsOjU2NzIv"},"type":"Opaque"} + @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Content-Type=application/json tf_http_op_type=response tf_http_res_status_reason="200 OK" Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=1039 tf_http_res_status_code=200 tf_http_trans_id=2d337afc-9a11-62f6-0f0d-10749e6f944a Audit-Id=1381948e-761e-468e-8dcb-0e7c411a9250 Date="Fri, 11 Jul 2025 06:52:44 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_version=HTTP/2.0 X-Api-Cattle-Auth=true timestamp="2025-07-11T08:52:44.298+0200" +2025-07-11T08:52:44.298+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"storage","namespace":"365zon","uid":"ef14e016-33d3-4f6d-8de9-1120ea8c2fd0","resourceVersion":"109677334","creationTimestamp":"2025-07-11T06:46:34Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:46:34Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:Storage__AccountKey":{},"f:Storage__AccountName":{},"f:Storage__BlobUri":{},"f:Storage__S3BucketName":{}},"f:type":{}}}]},"data":{"Storage__AccountKey":"RFJzblhXNm5ZVklWN2w4RlVtb2dkeDN5VU9XY2JmWjM0VUVkK0cyag==","Storage__AccountName":"RUFHVDNTMzY1SzlITElMQlcwTTU=","Storage__BlobUri":"aHR0cHM6Ly9zdG9yYWdlLjM2NXpvbi5mb3VybGlnaHRzLmRldg==","Storage__S3BucketName":"MzY1em9uMg=="},"type":"Opaque"} + Content-Length=764 Content-Type=application/json tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Date="Fri, 11 Jul 2025 06:52:44 GMT" X-Content-Type-Options=nosniff tf_http_trans_id=b68b3fa7-736d-9d4e-2b67-15911a9c6a24 Audit-Id=709ff42c-f518-4e1a-8f6d-3601cc2046f4 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Api-Cattle-Auth=true X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_op_type=response timestamp="2025-07-11T08:52:44.298+0200" +2025-07-11T08:52:44.298+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:44 [INFO] Reading secret storage +2025-07-11T08:52:44.298+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:44 [INFO] Reading secret connection-strings +2025-07-11T08:52:44.298+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" @module=kubernetes.Kubernetes Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_method=GET tf_http_req_version=HTTP/1.1 Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/storage Accept-Encoding=gzip tf_http_trans_id=e7501c1c-cc0a-44fe-c2c5-e7da4c2d5e94 timestamp="2025-07-11T08:52:44.298+0200" +2025-07-11T08:52:44.298+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_op_type=request tf_http_req_body="" tf_http_req_method=GET @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept-Encoding=gzip @module=kubernetes.Kubernetes Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/connection-strings tf_http_req_version=HTTP/1.1 Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=36ae442a-2c3a-a97d-f15d-7a895909e5d8 timestamp="2025-07-11T08:52:44.298+0200" +2025-07-11T08:52:44.343+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=36ae442a-2c3a-a97d-f15d-7a895909e5d8 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] tf_http_res_status_reason="200 OK" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Length=1039 X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"connection-strings","namespace":"365zon","uid":"47f6eb88-7be7-4756-ac01-6857de56e2e4","resourceVersion":"109671119","creationTimestamp":"2025-07-11T06:29:50Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:ConnectionStrings__DocumentDb":{},"f:ConnectionStrings__ServiceBus":{}},"f:type":{}}}]},"data":{"ConnectionStrings__DocumentDb":"bW9uZ29kYjovL3Jvb3Q6RzJNNWNrMzlCWDY3SDdMMkRvQjVMcVJGeHZQMTJ2SUxKVnc2V05aUkBtb25nb2RiLTAubW9uZ29kYi1oZWFkbGVzcy5tb25nb2RiLnN2Yy5jbHVzdGVyLmxvY2FsOjI3MDE3LG1vbmdvZGItMS5tb25nb2RiLWhlYWRsZXNzLm1vbmdvZGIuc3ZjLmNsdXN0ZXIubG9jYWw6MjcwMTcsbW9uZ29kYi0yLm1vbmdvZGItaGVhZGxlc3MubW9uZ29kYi5zdmMuY2x1c3Rlci5sb2NhbDoyNzAxNy9hZG1pbj9yZXBsaWNhU2V0PXJzMCZhdXRoU291cmNlPWFkbWlu","ConnectionStrings__ServiceBus":"cmFiYml0bXE6Ly91c2VyOlFBM1VObUVHb3Z5YktjVDQxNUs2QHJhYmJpdG1xLWhlYWRsZXNzLnJhYmJpdG1xLnN2Yy5jbHVzdGVyLmxvY2FsOjU2NzIv"},"type":"Opaque"} + tf_http_res_status_code=200 @module=kubernetes.Kubernetes Audit-Id=d25bc15e-1d89-49bb-af4e-92bc80f387bb Content-Type=application/json Date="Fri, 11 Jul 2025 06:52:44 GMT" X-Api-Cattle-Auth=true tf_http_res_version=HTTP/2.0 timestamp="2025-07-11T08:52:44.343+0200" +2025-07-11T08:52:44.343+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:44 [INFO] Received secret: v1.ObjectMeta{Name:"connection-strings", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"47f6eb88-7be7-4756-ac01-6857de56e2e4", ResourceVersion:"109671119", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 50, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 50, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000eeba70), Subresource:""}}} +2025-07-11T08:52:44.345+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.kubernetes_secret.connection_strings, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .type: planned value cty.StringVal("Opaque") for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:52:44.345+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_trans_id=e7501c1c-cc0a-44fe-c2c5-e7da4c2d5e94 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_res_status_reason="200 OK" Content-Length=764 Date="Fri, 11 Jul 2025 06:52:44 GMT" X-Api-Cattle-Auth=true @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Audit-Id=ca1b19c6-121e-4dab-8da8-74cff15c3b3c X-Content-Type-Options=nosniff + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"storage","namespace":"365zon","uid":"ef14e016-33d3-4f6d-8de9-1120ea8c2fd0","resourceVersion":"109677334","creationTimestamp":"2025-07-11T06:46:34Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:46:34Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:Storage__AccountKey":{},"f:Storage__AccountName":{},"f:Storage__BlobUri":{},"f:Storage__S3BucketName":{}},"f:type":{}}}]},"data":{"Storage__AccountKey":"RFJzblhXNm5ZVklWN2w4RlVtb2dkeDN5VU9XY2JmWjM0VUVkK0cyag==","Storage__AccountName":"RUFHVDNTMzY1SzlITElMQlcwTTU=","Storage__BlobUri":"aHR0cHM6Ly9zdG9yYWdlLjM2NXpvbi5mb3VybGlnaHRzLmRldg==","Storage__S3BucketName":"MzY1em9uMg=="},"type":"Opaque"} + tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 timestamp="2025-07-11T08:52:44.345+0200" +2025-07-11T08:52:44.346+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:44 [INFO] Received secret: v1.ObjectMeta{Name:"storage", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"ef14e016-33d3-4f6d-8de9-1120ea8c2fd0", ResourceVersion:"109677334", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 46, 34, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 46, 34, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0011fe3c0), Subresource:""}}} +2025-07-11T08:52:44.348+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.kubernetes_secret.storage, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .type: planned value cty.StringVal("Opaque") for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:52:45.067+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: mongodb] Got chart: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 tf_req_id=663c782d-4801-534d-4949-1143b3d46326 timestamp="2025-07-11T08:52:45.067+0200" +2025-07-11T08:52:45.067+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=663c782d-4801-534d-4949-1143b3d46326 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 timestamp="2025-07-11T08:52:45.067+0200" +2025-07-11T08:52:45.067+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: mongodb] Release validated: tf_req_id=663c782d-4801-534d-4949-1143b3d46326 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 @module=helm timestamp="2025-07-11T08:52:45.067+0200" +2025-07-11T08:52:45.067+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: mongodb] Done: @module=helm tf_req_id=663c782d-4801-534d-4949-1143b3d46326 tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:45.067+0200" +2025-07-11T08:52:45.069+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:45.071+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=968987 +2025-07-11T08:52:45.071+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:45.183+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: rabbitmq] Got chart: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 tf_req_id=3a1886aa-a172-74b9-077b-353428e1281b tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:45.183+0200" +2025-07-11T08:52:45.183+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: tf_req_id=3a1886aa-a172-74b9-077b-353428e1281b @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:45.183+0200" +2025-07-11T08:52:45.183+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: rabbitmq] Release validated: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm tf_req_id=3a1886aa-a172-74b9-077b-353428e1281b timestamp="2025-07-11T08:52:45.183+0200" +2025-07-11T08:52:45.183+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: rabbitmq] Done: @module=helm tf_req_id=3a1886aa-a172-74b9-077b-353428e1281b tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:45.183+0200" +2025-07-11T08:52:45.185+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:45.187+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=969175 +2025-07-11T08:52:45.187+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:49.888+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: redis] Got chart: tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 tf_req_id=1ecf5c53-384e-2cde-1bf6-9f935d7e2b6a @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:49.888+0200" +2025-07-11T08:52:49.889+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 @module=helm tf_req_id=1ecf5c53-384e-2cde-1bf6-9f935d7e2b6a tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:49.888+0200" +2025-07-11T08:52:49.889+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: redis] Release validated: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 @module=helm tf_req_id=1ecf5c53-384e-2cde-1bf6-9f935d7e2b6a tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:49.888+0200" +2025-07-11T08:52:49.889+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: redis] Done: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 tf_req_id=1ecf5c53-384e-2cde-1bf6-9f935d7e2b6a tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:49.888+0200" +2025-07-11T08:52:49.890+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:49.896+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=969220 +2025-07-11T08:52:49.896+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:50.250+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: postgresql] Got chart: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1e69b968-8767-8a90-1cf5-6eeb5ea73987 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 @module=helm timestamp="2025-07-11T08:52:50.250+0200" +2025-07-11T08:52:50.250+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: @module=helm tf_req_id=1e69b968-8767-8a90-1cf5-6eeb5ea73987 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:50.250+0200" +2025-07-11T08:52:50.250+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: postgresql] Release validated: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @module=helm tf_req_id=1e69b968-8767-8a90-1cf5-6eeb5ea73987 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 timestamp="2025-07-11T08:52:50.250+0200" +2025-07-11T08:52:50.250+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: postgresql] Done: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1e69b968-8767-8a90-1cf5-6eeb5ea73987 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 @module=helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:50.250+0200" +2025-07-11T08:52:50.252+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:50.252+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.kubernetes_job.create-tenant[0]" references: [] +2025-07-11T08:52:50.256+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=968917 +2025-07-11T08:52:50.256+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:50.265+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:50 [INFO] Checking job create-tenant-zitadel +2025-07-11T08:52:50.266+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept="application/json, */*" Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/apis/batch/v1/namespaces/postgresql/jobs/create-tenant-zitadel Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" @module=kubernetes.Kubernetes new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" tf_http_req_method=GET tf_http_req_version=HTTP/1.1 tf_http_trans_id=f36fa9f9-d3e7-8be4-2d04-1c7cc2deb240 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 User-Agent="HashiCorp/1.0 Terraform/1.12.1" timestamp="2025-07-11T08:52:50.266+0200" +2025-07-11T08:52:50.400+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Content-Type=application/json X-Content-Type-Options=nosniff tf_http_res_status_code=200 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 + tf_http_res_body= + | {"kind":"Job","apiVersion":"batch/v1","metadata":{"name":"create-tenant-zitadel","namespace":"postgresql","uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","resourceVersion":"109671658","generation":1,"creationTimestamp":"2025-07-11T06:30:35Z","labels":{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","batch.kubernetes.io/job-name":"create-tenant-zitadel","controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","job-name":"create-tenant-zitadel"},"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"batch/v1","time":"2025-07-11T06:30:35Z","fieldsType":"FieldsV1","fieldsV1":{"f:spec":{"f:backoffLimit":{},"f:completionMode":{},"f:completions":{},"f:manualSelector":{},"f:parallelism":{},"f:podReplacementPolicy":{},"f:suspend":{},"f:template":{"f:spec":{"f:automountServiceAccountToken":{},"f:containers":{"k:{\"name\":\"create-db-user\"}":{".":{},"f:args":{},"f:command":{},"f:env":{".":{},"k:{\"name\":\"DB_NAME\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"DB_PASSWORD\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"DB_USER\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"POSTGRES_HOST\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"ROOT_DATABASE\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"ROOT_PASSWORD\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"ROOT_USERNAME\"}":{".":{},"f:name":{},"f:value":{}}},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:shareProcessNamespace":{},"f:terminationGracePeriodSeconds":{}}}}}},{"manager":"kube-controller-manager","operation":"Update","apiVersion":"batch/v1","time":"2025-07-11T06:30:48Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:completionTime":{},"f:conditions":{},"f:ready":{},"f:startTime":{},"f:succeeded":{},"f:terminating":{},"f:uncountedTerminatedPods":{}}},"subresource":"status"}]},"spec":{"parallelism":1,"completions":1,"backoffLimit":6,"selector":{"matchLabels":{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6"}},"manualSelector":false,"template":{"metadata":{"creationTimestamp":null,"labels":{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","batch.kubernetes.io/job-name":"create-tenant-zitadel","controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","job-name":"create-tenant-zitadel"}},"spec":{"containers":[{"name":"create-db-user","image":"postgres:17-alpine","command":["/bin/sh","-c"],"args":["# Wait for postgres to be ready\nuntil PGPASSWORD=$ROOT_PASSWORD psql -h $POSTGRES_HOST -U $ROOT_USERNAME -d $ROOT_DATABASE -c '\\l'; do\n echo \"Waiting for postgres...\"\n sleep 2\ndone\n\n# Create user and database\nPGPASSWORD=$ROOT_PASSWORD psql -v ON_ERROR_STOP=1 -h $POSTGRES_HOST -U $ROOT_USERNAME -d $ROOT_DATABASE \u003c\u003c-EOSQL\n CREATE USER $DB_USER WITH PASSWORD '$DB_PASSWORD';\n CREATE DATABASE $DB_NAME OWNER $DB_USER;\n GRANT ALL PRIVILEGES ON DATABASE $DB_NAME TO $DB_USER;\nEOSQL\n"],"env":[{"name":"POSTGRES_HOST","value":"postgresql-hl.postgresql.svc.cluster.local"},{"name":"ROOT_USERNAME","value":"postgres"},{"name":"ROOT_PASSWORD","value":"PvwMI{LznVaS\u003cq_[(rXD0p]c\u003e_W-112$IZfdAH2Q"},{"name":"ROOT_DATABASE","value":"postgres"},{"name":"DB_NAME","value":"zitadel"},{"name":"DB_USER","value":"zitadel"},{"name":"DB_PASSWORD","value":"LW+70S#T8*TcfX]HQ*w12\u003eB\u0026"}],"resources":{},"terminationMessagePath":"/dev/termination-log","terminationMessagePolicy":"File","imagePullPolicy":"IfNotPresent"}],"restartPolicy":"Never","terminationGracePeriodSeconds":30,"dnsPolicy":"ClusterFirst","automountServiceAccountToken":true,"shareProcessNamespace":false,"securityContext":{},"schedulerName":"default-scheduler","enableServiceLinks":true}},"completionMode":"NonIndexed","suspend":false,"podReplacementPolicy":"TerminatingOrFailed"},"status":{"conditions":[{"type":"Complete","status":"True","lastProbeTime":"2025-07-11T06:30:48Z","lastTransitionTime":"2025-07-11T06:30:48Z"}],"startTime":"2025-07-11T06:30:35Z","completionTime":"2025-07-11T06:30:48Z","succeeded":1,"terminating":0,"uncountedTerminatedPods":{},"ready":0}} + tf_http_res_status_reason="200 OK" Audit-Id=09e847e9-0b81-466d-ad29-511e9ece546b Date="Fri, 11 Jul 2025 06:52:50 GMT" tf_http_op_type=response tf_http_res_version=HTTP/2.0 tf_http_trans_id=f36fa9f9-d3e7-8be4-2d04-1c7cc2deb240 timestamp="2025-07-11T08:52:50.400+0200" +2025-07-11T08:52:50.402+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:50 [INFO] Reading job create-tenant-zitadel +2025-07-11T08:52:50.402+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_trans_id=87a1aa47-adae-1158-e838-93c8a9554f35 @module=kubernetes.Kubernetes User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/apis/batch/v1/namespaces/postgresql/jobs/create-tenant-zitadel @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev tf_http_req_method=GET tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T08:52:50.402+0200" +2025-07-11T08:52:50.445+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 + tf_http_res_body= + | {"kind":"Job","apiVersion":"batch/v1","metadata":{"name":"create-tenant-zitadel","namespace":"postgresql","uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","resourceVersion":"109671658","generation":1,"creationTimestamp":"2025-07-11T06:30:35Z","labels":{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","batch.kubernetes.io/job-name":"create-tenant-zitadel","controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","job-name":"create-tenant-zitadel"},"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"batch/v1","time":"2025-07-11T06:30:35Z","fieldsType":"FieldsV1","fieldsV1":{"f:spec":{"f:backoffLimit":{},"f:completionMode":{},"f:completions":{},"f:manualSelector":{},"f:parallelism":{},"f:podReplacementPolicy":{},"f:suspend":{},"f:template":{"f:spec":{"f:automountServiceAccountToken":{},"f:containers":{"k:{\"name\":\"create-db-user\"}":{".":{},"f:args":{},"f:command":{},"f:env":{".":{},"k:{\"name\":\"DB_NAME\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"DB_PASSWORD\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"DB_USER\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"POSTGRES_HOST\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"ROOT_DATABASE\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"ROOT_PASSWORD\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"ROOT_USERNAME\"}":{".":{},"f:name":{},"f:value":{}}},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:shareProcessNamespace":{},"f:terminationGracePeriodSeconds":{}}}}}},{"manager":"kube-controller-manager","operation":"Update","apiVersion":"batch/v1","time":"2025-07-11T06:30:48Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:completionTime":{},"f:conditions":{},"f:ready":{},"f:startTime":{},"f:succeeded":{},"f:terminating":{},"f:uncountedTerminatedPods":{}}},"subresource":"status"}]},"spec":{"parallelism":1,"completions":1,"backoffLimit":6,"selector":{"matchLabels":{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6"}},"manualSelector":false,"template":{"metadata":{"creationTimestamp":null,"labels":{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","batch.kubernetes.io/job-name":"create-tenant-zitadel","controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","job-name":"create-tenant-zitadel"}},"spec":{"containers":[{"name":"create-db-user","image":"postgres:17-alpine","command":["/bin/sh","-c"],"args":["# Wait for postgres to be ready\nuntil PGPASSWORD=$ROOT_PASSWORD psql -h $POSTGRES_HOST -U $ROOT_USERNAME -d $ROOT_DATABASE -c '\\l'; do\n echo \"Waiting for postgres...\"\n sleep 2\ndone\n\n# Create user and database\nPGPASSWORD=$ROOT_PASSWORD psql -v ON_ERROR_STOP=1 -h $POSTGRES_HOST -U $ROOT_USERNAME -d $ROOT_DATABASE \u003c\u003c-EOSQL\n CREATE USER $DB_USER WITH PASSWORD '$DB_PASSWORD';\n CREATE DATABASE $DB_NAME OWNER $DB_USER;\n GRANT ALL PRIVILEGES ON DATABASE $DB_NAME TO $DB_USER;\nEOSQL\n"],"env":[{"name":"POSTGRES_HOST","value":"postgresql-hl.postgresql.svc.cluster.local"},{"name":"ROOT_USERNAME","value":"postgres"},{"name":"ROOT_PASSWORD","value":"PvwMI{LznVaS\u003cq_[(rXD0p]c\u003e_W-112$IZfdAH2Q"},{"name":"ROOT_DATABASE","value":"postgres"},{"name":"DB_NAME","value":"zitadel"},{"name":"DB_USER","value":"zitadel"},{"name":"DB_PASSWORD","value":"LW+70S#T8*TcfX]HQ*w12\u003eB\u0026"}],"resources":{},"terminationMessagePath":"/dev/termination-log","terminationMessagePolicy":"File","imagePullPolicy":"IfNotPresent"}],"restartPolicy":"Never","terminationGracePeriodSeconds":30,"dnsPolicy":"ClusterFirst","automountServiceAccountToken":true,"shareProcessNamespace":false,"securityContext":{},"schedulerName":"default-scheduler","enableServiceLinks":true}},"completionMode":"NonIndexed","suspend":false,"podReplacementPolicy":"TerminatingOrFailed"},"status":{"conditions":[{"type":"Complete","status":"True","lastProbeTime":"2025-07-11T06:30:48Z","lastTransitionTime":"2025-07-11T06:30:48Z"}],"startTime":"2025-07-11T06:30:35Z","completionTime":"2025-07-11T06:30:48Z","succeeded":1,"terminating":0,"uncountedTerminatedPods":{},"ready":0}} + tf_http_trans_id=87a1aa47-adae-1158-e838-93c8a9554f35 Content-Type=application/json X-Content-Type-Options=nosniff Audit-Id=5cf0390c-898f-4301-95c9-4e80ddc652c4 X-Api-Cattle-Auth=true tf_http_op_type=response tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Date="Fri, 11 Jul 2025 06:52:50 GMT" X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." timestamp="2025-07-11T08:52:50.445+0200" +2025-07-11T08:52:50.445+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:50 [INFO] Received job: &v1.Job{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"create-tenant-zitadel", GenerateName:"", Namespace:"postgresql", SelfLink:"", UID:"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6", ResourceVersion:"109671658", Generation:1, CreationTimestamp:time.Date(2025, time.July, 11, 8, 30, 35, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6", "batch.kubernetes.io/job-name":"create-tenant-zitadel", "controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6", "job-name":"create-tenant-zitadel"}, Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"batch/v1", Time:time.Date(2025, time.July, 11, 8, 30, 35, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001317608), Subresource:""}, v1.ManagedFieldsEntry{Manager:"kube-controller-manager", Operation:"Update", APIVersion:"batch/v1", Time:time.Date(2025, time.July, 11, 8, 30, 48, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001317638), Subresource:"status"}}}, Spec:v1.JobSpec{Parallelism:(*int32)(0xc00133c550), Completions:(*int32)(0xc00133c554), ActiveDeadlineSeconds:(*int64)(nil), PodFailurePolicy:(*v1.PodFailurePolicy)(nil), BackoffLimit:(*int32)(0xc00133c558), BackoffLimitPerIndex:(*int32)(nil), MaxFailedIndexes:(*int32)(nil), Selector:(*v1.LabelSelector)(0xc00133ab40), ManualSelector:(*bool)(0xc00133c55c), Template:v1.PodTemplateSpec{ObjectMeta:v1.ObjectMeta{Name:"", GenerateName:"", Namespace:"", SelfLink:"", UID:"", ResourceVersion:"", Generation:0, CreationTimestamp:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6", "batch.kubernetes.io/job-name":"create-tenant-zitadel", "controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6", "job-name":"create-tenant-zitadel"}, Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry(nil)}, Spec:v1.PodSpec{Volumes:[]v1.Volume(nil), InitContainers:[]v1.Container(nil), Containers:[]v1.Container{v1.Container{Name:"create-db-user", Image:"postgres:17-alpine", Command:[]string{"/bin/sh", "-c"}, Args:[]string{"# Wait for postgres to be ready\nuntil PGPASSWORD=$ROOT_PASSWORD psql -h $POSTGRES_HOST -U $ROOT_USERNAME -d $ROOT_DATABASE -c '\\l'; do\n echo \"Waiting for postgres...\"\n sleep 2\ndone\n\n# Create user and database\nPGPASSWORD=$ROOT_PASSWORD psql -v ON_ERROR_STOP=1 -h $POSTGRES_HOST -U $ROOT_USERNAME -d $ROOT_DATABASE <<-EOSQL\n CREATE USER $DB_USER WITH PASSWORD '$DB_PASSWORD';\n CREATE DATABASE $DB_NAME OWNER $DB_USER;\n GRANT ALL PRIVILEGES ON DATABASE $DB_NAME TO $DB_USER;\nEOSQL\n"}, WorkingDir:"", Ports:[]v1.ContainerPort(nil), EnvFrom:[]v1.EnvFromSource(nil), Env:[]v1.EnvVar{v1.EnvVar{Name:"POSTGRES_HOST", Value:"postgresql-hl.postgresql.svc.cluster.local", ValueFrom:(*v1.EnvVarSource)(nil)}, v1.EnvVar{Name:"ROOT_USERNAME", Value:"postgres", ValueFrom:(*v1.EnvVarSource)(nil)}, v1.EnvVar{Name:"ROOT_PASSWORD", Value:"PvwMI{LznVaS_W-112$IZfdAH2Q", ValueFrom:(*v1.EnvVarSource)(nil)}, v1.EnvVar{Name:"ROOT_DATABASE", Value:"postgres", ValueFrom:(*v1.EnvVarSource)(nil)}, v1.EnvVar{Name:"DB_NAME", Value:"zitadel", ValueFrom:(*v1.EnvVarSource)(nil)}, v1.EnvVar{Name:"DB_USER", Value:"zitadel", ValueFrom:(*v1.EnvVarSource)(nil)}, v1.EnvVar{Name:"DB_PASSWORD", Value:"LW+70S#T8*TcfX]HQ*w12>B&", ValueFrom:(*v1.EnvVarSource)(nil)}}, Resources:v1.ResourceRequirements{Limits:v1.ResourceList(nil), Requests:v1.ResourceList(nil), Claims:[]v1.ResourceClaim(nil)}, ResizePolicy:[]v1.ContainerResizePolicy(nil), RestartPolicy:(*v1.ContainerRestartPolicy)(nil), VolumeMounts:[]v1.VolumeMount(nil), VolumeDevices:[]v1.VolumeDevice(nil), LivenessProbe:(*v1.Probe)(nil), ReadinessProbe:(*v1.Probe)(nil), StartupProbe:(*v1.Probe)(nil), Lifecycle:(*v1.Lifecycle)(nil), TerminationMessagePath:"/dev/termination-log", TerminationMessagePolicy:"File", ImagePullPolicy:"IfNotPresent", SecurityContext:(*v1.SecurityContext)(nil), Stdin:false, StdinOnce:false, TTY:false}}, EphemeralContainers:[]v1.EphemeralContainer(nil), RestartPolicy:"Never", TerminationGracePeriodSeconds:(*int64)(0xc00133c648), ActiveDeadlineSeconds:(*int64)(nil), DNSPolicy:"ClusterFirst", NodeSelector:map[string]string(nil), ServiceAccountName:"", DeprecatedServiceAccount:"", AutomountServiceAccountToken:(*bool)(0xc00133c660), NodeName:"", HostNetwork:false, HostPID:false, HostIPC:false, ShareProcessNamespace:(*bool)(0xc00133c661), SecurityContext:(*v1.PodSecurityContext)(0xc000231ab0), ImagePullSecrets:[]v1.LocalObjectReference(nil), Hostname:"", Subdomain:"", Affinity:(*v1.Affinity)(nil), SchedulerName:"default-scheduler", Tolerations:[]v1.Toleration(nil), HostAliases:[]v1.HostAlias(nil), PriorityClassName:"", Priority:(*int32)(nil), DNSConfig:(*v1.PodDNSConfig)(nil), ReadinessGates:[]v1.PodReadinessGate(nil), RuntimeClassName:(*string)(nil), EnableServiceLinks:(*bool)(0xc00133c662), PreemptionPolicy:(*v1.PreemptionPolicy)(nil), Overhead:v1.ResourceList(nil), TopologySpreadConstraints:[]v1.TopologySpreadConstraint(nil), SetHostnameAsFQDN:(*bool)(nil), OS:(*v1.PodOS)(nil), HostUsers:(*bool)(nil), SchedulingGates:[]v1.PodSchedulingGate(nil), ResourceClaims:[]v1.PodResourceClaim(nil)}}, TTLSecondsAfterFinished:(*int32)(nil), CompletionMode:(*v1.CompletionMode)(0xc00131df20), Suspend:(*bool)(0xc00133c66e), PodReplacementPolicy:(*v1.PodReplacementPolicy)(0xc00131df30)}, Status:v1.JobStatus{Conditions:[]v1.JobCondition{v1.JobCondition{Type:"Complete", Status:"True", LastProbeTime:time.Date(2025, time.July, 11, 8, 30, 48, 0, time.Local), LastTransitionTime:time.Date(2025, time.July, 11, 8, 30, 48, 0, time.Local), Reason:"", Message:""}}, StartTime:time.Date(2025, time.July, 11, 8, 30, 35, 0, time.Local), CompletionTime:time.Date(2025, time.July, 11, 8, 30, 48, 0, time.Local), Active:0, Succeeded:1, Failed:0, Terminating:(*int32)(0xc00133c67c), CompletedIndexes:"", FailedIndexes:(*string)(nil), UncountedTerminatedPods:(*v1.UncountedTerminatedPods)(0xc001339860), Ready:(*int32)(0xc00133c680)}} +2025-07-11T08:52:50.463+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.zitadel-db.kubernetes_job.create-tenant[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_completion: planned value cty.True for a non-computed attribute + - .spec[0].completions: planned value cty.NumberIntVal(1) for a non-computed attribute + - .spec[0].manual_selector: planned value cty.False for a non-computed attribute + - .spec[0].parallelism: planned value cty.NumberIntVal(1) for a non-computed attribute + - .spec[0].ttl_seconds_after_finished: planned value cty.StringVal("") for a non-computed attribute + - .spec[0].active_deadline_seconds: planned value cty.NumberIntVal(0) for a non-computed attribute + - .spec[0].backoff_limit: planned value cty.NumberIntVal(6) for a non-computed attribute + - .spec[0].selector: block count in plan (1) disagrees with count in config (0) + - .spec[0].template[0].spec[0].host_ipc: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].host_network: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].host_pid: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].node_selector: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .spec[0].template[0].spec[0].priority_class_name: planned value cty.StringVal("") for a non-computed attribute + - .spec[0].template[0].spec[0].active_deadline_seconds: planned value cty.NumberIntVal(0) for a non-computed attribute + - .spec[0].template[0].spec[0].restart_policy: planned value cty.StringVal("Never") for a non-computed attribute + - .spec[0].template[0].spec[0].share_process_namespace: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].automount_service_account_token: planned value cty.True for a non-computed attribute + - .spec[0].template[0].spec[0].dns_policy: planned value cty.StringVal("ClusterFirst") for a non-computed attribute + - .spec[0].template[0].spec[0].enable_service_links: planned value cty.True for a non-computed attribute + - .spec[0].template[0].spec[0].subdomain: planned value cty.StringVal("") for a non-computed attribute + - .spec[0].template[0].spec[0].runtime_class_name: planned value cty.StringVal("") for a non-computed attribute + - .spec[0].template[0].spec[0].termination_grace_period_seconds: planned value cty.NumberIntVal(30) for a non-computed attribute + - .spec[0].template[0].spec[0].container[0].termination_message_path: planned value cty.StringVal("/dev/termination-log") for a non-computed attribute + - .spec[0].template[0].spec[0].container[0].tty: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].container[0].working_dir: planned value cty.StringVal("") for a non-computed attribute + - .spec[0].template[0].spec[0].container[0].stdin: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].container[0].stdin_once: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].container[0].resources: block count in plan (1) disagrees with count in config (0) + - .spec[0].template[0].metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .spec[0].template[0].metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .spec[0].template[0].metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute +2025-07-11T08:52:50.465+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:50.465+0200 [DEBUG] ReferenceTransformer: "module.zitadel.helm_release.zitadel[0]" references: [] +2025-07-11T08:52:50.467+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=969074 +2025-07-11T08:52:50.467+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:50.470+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0007ba2a0 Settings:0xc0007c1440 RegistryClient:0xc0007cc500 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 @module=helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:50.470+0200" +2025-07-11T08:52:50.471+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"zitadel" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"zitadel" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"v2.67.2","chart":"zitadel","first_deployed":1752215453,"last_deployed":1752215453,"name":"zitadel","namespace":"zitadel","notes":"Thank you for installing zitadel.\nExtract your service account key for authenticating at the ZITADEL API's:\n\n $ kubectl -n zitadel get secret zitadel-admin-sa -o jsonpath='{ .data.zitadel-admin-sa\\.json }' | base64 -D","revision":1,"values":"{\"ingress\":{\"annotations\":{\"cert-manager.io/cluster-issuer\":\"letsencrypt\",\"gethomepage.dev/description\":\"Identity and Access Management\",\"gethomepage.dev/enabled\":\"true\",\"gethomepage.dev/group\":\"Tools\",\"gethomepage.dev/icon\":\"zitadel.png\",\"gethomepage.dev/name\":\"Zitadel\",\"kubernetes.io/ingress.class\":\"nginx\"},\"className\":\"nginx\",\"enabled\":true,\"hosts\":[{\"host\":\"zitadel.365zon.fourlights.dev\",\"paths\":[{\"path\":\"/\",\"pathType\":\"Prefix\"}]}]},\"readinessProbe\":{\"failureThreshold\":10,\"initialDelaySeconds\":5,\"periodSeconds\":5},\"service\":{\"annotations\":{\"traefik.ingress.kubernetes.io/service.serversscheme\":\"h2c\"}},\"startupProbe\":{\"failureThreshold\":30,\"periodSeconds\":5},\"zitadel\":{\"configmapConfig\":{\"Database\":{\"Postgres\":{\"Admin\":{\"Password\":\"PvwMI{LznVaS\\u003cq_[(rXD0p]c\\u003e_W-112$IZfdAH2Q\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"postgres\"},\"Database\":\"zitadel\",\"Host\":\"postgresql-hl.postgresql.svc.cluster.local\",\"MaxConnIdleTime\":\"5m\",\"MaxConnLifetime\":\"30m\",\"MaxIdleConns\":10,\"MaxOpenConns\":20,\"Port\":5432,\"User\":{\"Password\":\"LW+70S#T8*TcfX]HQ*w12\\u003eB\\u0026\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"zitadel\"}}},\"ExternalDomain\":\"zitadel.365zon.fourlights.dev\",\"ExternalPort\":443,\"ExternalSecure\":true,\"FirstInstance\":{\"Org\":{\"Machine\":{\"Machine\":{\"Name\":\"Admin\",\"Username\":\"zitadel-admin-sa\"},\"MachineKey\":{\"ExpirationDate\":\"2026-01-01T00:00:00Z\",\"Type\":1}}}},\"Log\":{\"Level\":\"info\"},\"LogStore\":{\"Access\":{\"Stdout\":{\"Enabled\":true}}},\"TLS\":{\"Enabled\":false}},\"masterkeySecretName\":\"zitadel\"}}","version":"8.12.0"} Name:"zitadel" Namespace:"zitadel" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.zitadel.com" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["zitadel:\n masterkeySecretName: \"zitadel\"\n configmapConfig:\n Log:\n Level: 'info'\n LogStore:\n Access:\n Stdout:\n Enabled: true\n ExternalSecure: true\n ExternalDomain: zitadel.365zon.fourlights.dev\n ExternalPort: 443\n TLS:\n Enabled: false\n FirstInstance:\n Org:\n Machine:\n Machine:\n Username: zitadel-admin-sa\n Name: Admin\n MachineKey:\n ExpirationDate: \"2026-01-01T00:00:00Z\"\n Type: 1\n Database:\n Postgres:\n Host: postgresql-hl.postgresql.svc.cluster.local\n Port: 5432\n Database: zitadel\n MaxOpenConns: 20\n MaxIdleConns: 10\n MaxConnLifetime: 30m\n MaxConnIdleTime: 5m\n User:\n Username: zitadel\n Password: \"LW+70S#T8*TcfX]HQ*w12>B&\"\n SSL:\n Mode: disable\n Admin:\n Username: postgres\n Password: \"PvwMI{LznVaS_W-112$IZfdAH2Q\"\n SSL:\n Mode: disable\n \n\nreadinessProbe:\n initialDelaySeconds: 5\n periodSeconds: 5\n failureThreshold: 10\n\nstartupProbe:\n periodSeconds: 5\n failureThreshold: 30\n\nservice:\n annotations:\n traefik.ingress.kubernetes.io/service.serversscheme: h2c\n\ningress:\n enabled: true\n className: nginx\n annotations:\n kubernetes.io/ingress.class: nginx\n cert-manager.io/cluster-issuer: letsencrypt\n \n gethomepage.dev/enabled: \"true\"\n gethomepage.dev/name: \"Zitadel\"\n gethomepage.dev/description: \"Identity and Access Management\"\n gethomepage.dev/group: \"Tools\"\n gethomepage.dev/icon: \"zitadel.png\"\n \n hosts:\n - host: zitadel.365zon.fourlights.dev\n paths:\n - path: /\n pathType: Prefix\n\n"] Verify:false Version:"8.12.0" Wait:true WaitForJobs:true}: @module=helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:50.470+0200" +2025-07-11T08:52:50.471+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: zitadel] Start: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_rpc=ReadResource timestamp="2025-07-11T08:52:50.470+0200" +2025-07-11T08:52:50.471+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=helm KubernetesData=map[] tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 timestamp="2025-07-11T08:52:50.471+0200" +2025-07-11T08:52:50.471+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm timestamp="2025-07-11T08:52:50.471+0200" +2025-07-11T08:52:50.471+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:50.471+0200" +2025-07-11T08:52:50.471+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: zitadel getRelease post action created: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 timestamp="2025-07-11T08:52:50.471+0200" +2025-07-11T08:52:50.671+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: zitadel getRelease post run: @module=helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_rpc=ReadResource timestamp="2025-07-11T08:52:50.671+0200" +2025-07-11T08:52:50.671+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: zitadel getRelease completed: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_rpc=ReadResource timestamp="2025-07-11T08:52:50.671+0200" +2025-07-11T08:52:50.671+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: zitadel] Done: @module=helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:52:50.671+0200" +2025-07-11T08:52:50.671+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: zitadel] Started: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:50.671+0200" +2025-07-11T08:52:50.671+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_rpc=ReadResource @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 timestamp="2025-07-11T08:52:50.671+0200" +2025-07-11T08:52:50.671+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @module=helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:50.671+0200" +2025-07-11T08:52:50.671+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release timestamp="2025-07-11T08:52:50.671+0200" +2025-07-11T08:52:50.671+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: zitadel getRelease post action created: tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=helm timestamp="2025-07-11T08:52:50.671+0200" +2025-07-11T08:52:50.759+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: zitadel getRelease post run: tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release timestamp="2025-07-11T08:52:50.759+0200" +2025-07-11T08:52:50.759+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: zitadel getRelease completed: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm timestamp="2025-07-11T08:52:50.759+0200" +2025-07-11T08:52:50.759+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"v2.67.2","chart":"zitadel","first_deployed":1752215453,"last_deployed":1752215453,"name":"zitadel","namespace":"zitadel","notes":"Thank you for installing zitadel.\nExtract your service account key for authenticating at the ZITADEL API's:\n\n $ kubectl -n zitadel get secret zitadel-admin-sa -o jsonpath='{ .data.zitadel-admin-sa\\.json }' | base64 -D","revision":1,"values":"{\"ingress\":{\"annotations\":{\"cert-manager.io/cluster-issuer\":\"letsencrypt\",\"gethomepage.dev/description\":\"Identity and Access Management\",\"gethomepage.dev/enabled\":\"true\",\"gethomepage.dev/group\":\"Tools\",\"gethomepage.dev/icon\":\"zitadel.png\",\"gethomepage.dev/name\":\"Zitadel\",\"kubernetes.io/ingress.class\":\"nginx\"},\"className\":\"nginx\",\"enabled\":true,\"hosts\":[{\"host\":\"zitadel.365zon.fourlights.dev\",\"paths\":[{\"path\":\"/\",\"pathType\":\"Prefix\"}]}]},\"readinessProbe\":{\"failureThreshold\":10,\"initialDelaySeconds\":5,\"periodSeconds\":5},\"service\":{\"annotations\":{\"traefik.ingress.kubernetes.io/service.serversscheme\":\"h2c\"}},\"startupProbe\":{\"failureThreshold\":30,\"periodSeconds\":5},\"zitadel\":{\"configmapConfig\":{\"Database\":{\"Postgres\":{\"Admin\":{\"Password\":\"PvwMI{LznVaS\\u003cq_[(rXD0p]c\\u003e_W-112$IZfdAH2Q\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"postgres\"},\"Database\":\"zitadel\",\"Host\":\"postgresql-hl.postgresql.svc.cluster.local\",\"MaxConnIdleTime\":\"5m\",\"MaxConnLifetime\":\"30m\",\"MaxIdleConns\":10,\"MaxOpenConns\":20,\"Port\":5432,\"User\":{\"Password\":\"LW+70S#T8*TcfX]HQ*w12\\u003eB\\u0026\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"zitadel\"}}},\"ExternalDomain\":\"zitadel.365zon.fourlights.dev\",\"ExternalPort\":443,\"ExternalSecure\":true,\"FirstInstance\":{\"Org\":{\"Machine\":{\"Machine\":{\"Name\":\"Admin\",\"Username\":\"zitadel-admin-sa\"},\"MachineKey\":{\"ExpirationDate\":\"2026-01-01T00:00:00Z\",\"Type\":1}}}},\"Log\":{\"Level\":\"info\"},\"LogStore\":{\"Access\":{\"Stdout\":{\"Enabled\":true}}},\"TLS\":{\"Enabled\":false}},\"masterkeySecretName\":\"zitadel\"}}","version":"8.12.0"}: tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:50.759+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=status tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=timeout tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release tf_attribute_path=disable_webhooks tf_rpc=ReadResource timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=disable_openapi_validation tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=wait timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release tf_attribute_path=metadata.chart tf_rpc=ReadResource timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.revision timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.values tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=metadata.namespace tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.first_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_rpc=ReadResource tf_resource_type=helm_release timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=metadata.last_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_rpc=ReadResource tf_attribute_path=metadata.notes tf_resource_type=helm_release timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=metadata.version timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.app_version tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_attribute_path=pass_credentials tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=replace tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=disable_crd_hooks tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=render_subchart_notes tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=create_namespace @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=name tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_rpc=ReadResource timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=reuse_values tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=max_history timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.760+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_rpc=ReadResource tf_attribute_path=repository tf_resource_type=helm_release timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.761+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=recreate_pods tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.761+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=verify @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.761+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=reset_values tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:50.760+0200" +2025-07-11T08:52:50.761+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=values[0] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 timestamp="2025-07-11T08:52:50.761+0200" +2025-07-11T08:52:50.761+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=values tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:50.761+0200" +2025-07-11T08:52:50.761+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 timestamp="2025-07-11T08:52:50.761+0200" +2025-07-11T08:52:50.761+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=wait_for_jobs tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 timestamp="2025-07-11T08:52:50.761+0200" +2025-07-11T08:52:50.761+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=atomic tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release timestamp="2025-07-11T08:52:50.761+0200" +2025-07-11T08:52:50.761+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=dependency_update tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:50.761+0200" +2025-07-11T08:52:50.761+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=cleanup_on_fail tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release timestamp="2025-07-11T08:52:50.761+0200" +2025-07-11T08:52:50.761+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=skip_crds tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:50.761+0200" +2025-07-11T08:52:50.761+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=chart tf_resource_type=helm_release timestamp="2025-07-11T08:52:50.761+0200" +2025-07-11T08:52:50.761+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=lint timestamp="2025-07-11T08:52:50.761+0200" +2025-07-11T08:52:50.761+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=0db9caa3-130e-b607-70e8-d411e25d0105 @module=sdk.framework tf_attribute_path=force_update tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:50.761+0200" +2025-07-11T08:52:50.763+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:50.764+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0007ba2a0 Settings:0xc0007c1440 RegistryClient:0xc0007cc500 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_req_id=5a907201-b104-d00a-fa69-cbf6b1a836a2 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ValidateResourceConfig timestamp="2025-07-11T08:52:50.764+0200" +2025-07-11T08:52:50.766+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0007ba2a0 Settings:0xc0007c1440 RegistryClient:0xc0007cc500 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=74c35250-6ded-48a6-5230-04436fe7f6d5 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm timestamp="2025-07-11T08:52:50.766+0200" +2025-07-11T08:52:50.771+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"zitadel" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"zitadel" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"v2.67.2","chart":"zitadel","first_deployed":1752215453,"last_deployed":1752215453,"name":"zitadel","namespace":"zitadel","notes":"Thank you for installing zitadel.\nExtract your service account key for authenticating at the ZITADEL API's:\n\n $ kubectl -n zitadel get secret zitadel-admin-sa -o jsonpath='{ .data.zitadel-admin-sa\\.json }' | base64 -D","revision":1,"values":"{\"ingress\":{\"annotations\":{\"cert-manager.io/cluster-issuer\":\"letsencrypt\",\"gethomepage.dev/description\":\"Identity and Access Management\",\"gethomepage.dev/enabled\":\"true\",\"gethomepage.dev/group\":\"Tools\",\"gethomepage.dev/icon\":\"zitadel.png\",\"gethomepage.dev/name\":\"Zitadel\",\"kubernetes.io/ingress.class\":\"nginx\"},\"className\":\"nginx\",\"enabled\":true,\"hosts\":[{\"host\":\"zitadel.365zon.fourlights.dev\",\"paths\":[{\"path\":\"/\",\"pathType\":\"Prefix\"}]}]},\"readinessProbe\":{\"failureThreshold\":10,\"initialDelaySeconds\":5,\"periodSeconds\":5},\"service\":{\"annotations\":{\"traefik.ingress.kubernetes.io/service.serversscheme\":\"h2c\"}},\"startupProbe\":{\"failureThreshold\":30,\"periodSeconds\":5},\"zitadel\":{\"configmapConfig\":{\"Database\":{\"Postgres\":{\"Admin\":{\"Password\":\"PvwMI{LznVaS\\u003cq_[(rXD0p]c\\u003e_W-112$IZfdAH2Q\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"postgres\"},\"Database\":\"zitadel\",\"Host\":\"postgresql-hl.postgresql.svc.cluster.local\",\"MaxConnIdleTime\":\"5m\",\"MaxConnLifetime\":\"30m\",\"MaxIdleConns\":10,\"MaxOpenConns\":20,\"Port\":5432,\"User\":{\"Password\":\"LW+70S#T8*TcfX]HQ*w12\\u003eB\\u0026\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"zitadel\"}}},\"ExternalDomain\":\"zitadel.365zon.fourlights.dev\",\"ExternalPort\":443,\"ExternalSecure\":true,\"FirstInstance\":{\"Org\":{\"Machine\":{\"Machine\":{\"Name\":\"Admin\",\"Username\":\"zitadel-admin-sa\"},\"MachineKey\":{\"ExpirationDate\":\"2026-01-01T00:00:00Z\",\"Type\":1}}}},\"Log\":{\"Level\":\"info\"},\"LogStore\":{\"Access\":{\"Stdout\":{\"Enabled\":true}}},\"TLS\":{\"Enabled\":false}},\"masterkeySecretName\":\"zitadel\"}}","version":"8.12.0"} Name:"zitadel" Namespace:"zitadel" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.zitadel.com" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["zitadel:\n masterkeySecretName: \"zitadel\"\n configmapConfig:\n Log:\n Level: 'info'\n LogStore:\n Access:\n Stdout:\n Enabled: true\n ExternalSecure: true\n ExternalDomain: zitadel.365zon.fourlights.dev\n ExternalPort: 443\n TLS:\n Enabled: false\n FirstInstance:\n Org:\n Machine:\n Machine:\n Username: zitadel-admin-sa\n Name: Admin\n MachineKey:\n ExpirationDate: \"2026-01-01T00:00:00Z\"\n Type: 1\n Database:\n Postgres:\n Host: postgresql-hl.postgresql.svc.cluster.local\n Port: 5432\n Database: zitadel\n MaxOpenConns: 20\n MaxIdleConns: 10\n MaxConnLifetime: 30m\n MaxConnIdleTime: 5m\n User:\n Username: zitadel\n Password: \"LW+70S#T8*TcfX]HQ*w12>B&\"\n SSL:\n Mode: disable\n Admin:\n Username: postgres\n Password: \"PvwMI{LznVaS_W-112$IZfdAH2Q\"\n SSL:\n Mode: disable\n \n\nreadinessProbe:\n initialDelaySeconds: 5\n periodSeconds: 5\n failureThreshold: 10\n\nstartupProbe:\n periodSeconds: 5\n failureThreshold: 30\n\nservice:\n annotations:\n traefik.ingress.kubernetes.io/service.serversscheme: h2c\n\ningress:\n enabled: true\n className: nginx\n annotations:\n kubernetes.io/ingress.class: nginx\n cert-manager.io/cluster-issuer: letsencrypt\n \n gethomepage.dev/enabled: \"true\"\n gethomepage.dev/name: \"Zitadel\"\n gethomepage.dev/description: \"Identity and Access Management\"\n gethomepage.dev/group: \"Tools\"\n gethomepage.dev/icon: \"zitadel.png\"\n \n hosts:\n - host: zitadel.365zon.fourlights.dev\n paths:\n - path: /\n pathType: Prefix\n\n"] Verify:false Version:"8.12.0" Wait:true WaitForJobs:true}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=74c35250-6ded-48a6-5230-04436fe7f6d5 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:50.771+0200" +2025-07-11T08:52:50.771+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"zitadel" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"zitadel" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"v2.67.2","chart":"zitadel","first_deployed":1752215453,"last_deployed":1752215453,"name":"zitadel","namespace":"zitadel","notes":"Thank you for installing zitadel.\nExtract your service account key for authenticating at the ZITADEL API's:\n\n $ kubectl -n zitadel get secret zitadel-admin-sa -o jsonpath='{ .data.zitadel-admin-sa\\.json }' | base64 -D","revision":1,"values":"{\"ingress\":{\"annotations\":{\"cert-manager.io/cluster-issuer\":\"letsencrypt\",\"gethomepage.dev/description\":\"Identity and Access Management\",\"gethomepage.dev/enabled\":\"true\",\"gethomepage.dev/group\":\"Tools\",\"gethomepage.dev/icon\":\"zitadel.png\",\"gethomepage.dev/name\":\"Zitadel\",\"kubernetes.io/ingress.class\":\"nginx\"},\"className\":\"nginx\",\"enabled\":true,\"hosts\":[{\"host\":\"zitadel.365zon.fourlights.dev\",\"paths\":[{\"path\":\"/\",\"pathType\":\"Prefix\"}]}]},\"readinessProbe\":{\"failureThreshold\":10,\"initialDelaySeconds\":5,\"periodSeconds\":5},\"service\":{\"annotations\":{\"traefik.ingress.kubernetes.io/service.serversscheme\":\"h2c\"}},\"startupProbe\":{\"failureThreshold\":30,\"periodSeconds\":5},\"zitadel\":{\"configmapConfig\":{\"Database\":{\"Postgres\":{\"Admin\":{\"Password\":\"PvwMI{LznVaS\\u003cq_[(rXD0p]c\\u003e_W-112$IZfdAH2Q\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"postgres\"},\"Database\":\"zitadel\",\"Host\":\"postgresql-hl.postgresql.svc.cluster.local\",\"MaxConnIdleTime\":\"5m\",\"MaxConnLifetime\":\"30m\",\"MaxIdleConns\":10,\"MaxOpenConns\":20,\"Port\":5432,\"User\":{\"Password\":\"LW+70S#T8*TcfX]HQ*w12\\u003eB\\u0026\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"zitadel\"}}},\"ExternalDomain\":\"zitadel.365zon.fourlights.dev\",\"ExternalPort\":443,\"ExternalSecure\":true,\"FirstInstance\":{\"Org\":{\"Machine\":{\"Machine\":{\"Name\":\"Admin\",\"Username\":\"zitadel-admin-sa\"},\"MachineKey\":{\"ExpirationDate\":\"2026-01-01T00:00:00Z\",\"Type\":1}}}},\"Log\":{\"Level\":\"info\"},\"LogStore\":{\"Access\":{\"Stdout\":{\"Enabled\":true}}},\"TLS\":{\"Enabled\":false}},\"masterkeySecretName\":\"zitadel\"}}","version":"8.12.0"} Name:"zitadel" Namespace:"zitadel" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.zitadel.com" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["zitadel:\n masterkeySecretName: \"zitadel\"\n configmapConfig:\n Log:\n Level: 'info'\n LogStore:\n Access:\n Stdout:\n Enabled: true\n ExternalSecure: true\n ExternalDomain: zitadel.365zon.fourlights.dev\n ExternalPort: 443\n TLS:\n Enabled: false\n FirstInstance:\n Org:\n Machine:\n Machine:\n Username: zitadel-admin-sa\n Name: Admin\n MachineKey:\n ExpirationDate: \"2026-01-01T00:00:00Z\"\n Type: 1\n Database:\n Postgres:\n Host: postgresql-hl.postgresql.svc.cluster.local\n Port: 5432\n Database: zitadel\n MaxOpenConns: 20\n MaxIdleConns: 10\n MaxConnLifetime: 30m\n MaxConnIdleTime: 5m\n User:\n Username: zitadel\n Password: \"LW+70S#T8*TcfX]HQ*w12>B&\"\n SSL:\n Mode: disable\n Admin:\n Username: postgres\n Password: \"PvwMI{LznVaS_W-112$IZfdAH2Q\"\n SSL:\n Mode: disable\n \n\nreadinessProbe:\n initialDelaySeconds: 5\n periodSeconds: 5\n failureThreshold: 10\n\nstartupProbe:\n periodSeconds: 5\n failureThreshold: 30\n\nservice:\n annotations:\n traefik.ingress.kubernetes.io/service.serversscheme: h2c\n\ningress:\n enabled: true\n className: nginx\n annotations:\n kubernetes.io/ingress.class: nginx\n cert-manager.io/cluster-issuer: letsencrypt\n \n gethomepage.dev/enabled: \"true\"\n gethomepage.dev/name: \"Zitadel\"\n gethomepage.dev/description: \"Identity and Access Management\"\n gethomepage.dev/group: \"Tools\"\n gethomepage.dev/icon: \"zitadel.png\"\n \n hosts:\n - host: zitadel.365zon.fourlights.dev\n paths:\n - path: /\n pathType: Prefix\n\n"] Verify:false Version:"8.12.0" Wait:true WaitForJobs:true}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 tf_req_id=74c35250-6ded-48a6-5230-04436fe7f6d5 timestamp="2025-07-11T08:52:50.771+0200" +2025-07-11T08:52:50.771+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Start: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=74c35250-6ded-48a6-5230-04436fe7f6d5 tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 @module=helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:50.771+0200" +2025-07-11T08:52:50.771+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @module=helm KubernetesData=map[] tf_req_id=74c35250-6ded-48a6-5230-04436fe7f6d5 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:50.771+0200" +2025-07-11T08:52:50.771+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm configPaths=[] tf_req_id=74c35250-6ded-48a6-5230-04436fe7f6d5 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:50.771+0200" +2025-07-11T08:52:50.771+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=74c35250-6ded-48a6-5230-04436fe7f6d5 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 timestamp="2025-07-11T08:52:50.771+0200" +2025-07-11T08:52:50.771+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Initial Values: Name=zitadel, Namespace=zitadel, Repository=https://charts.zitadel.com, Repository_Username=, Repository_Password=, Chart=zitadel: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 tf_req_id=74c35250-6ded-48a6-5230-04436fe7f6d5 tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:50.771+0200" +2025-07-11T08:52:50.771+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc0007c1560 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=74c35250-6ded-48a6-5230-04436fe7f6d5 tf_resource_type=helm_release timestamp="2025-07-11T08:52:50.771+0200" +2025-07-11T08:52:51.615+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Got chart: @module=helm tf_req_id=74c35250-6ded-48a6-5230-04436fe7f6d5 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 timestamp="2025-07-11T08:52:51.615+0200" +2025-07-11T08:52:51.615+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @module=helm tf_req_id=74c35250-6ded-48a6-5230-04436fe7f6d5 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 timestamp="2025-07-11T08:52:51.615+0200" +2025-07-11T08:52:51.615+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Release validated: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=74c35250-6ded-48a6-5230-04436fe7f6d5 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:51.615+0200" +2025-07-11T08:52:51.615+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Done: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange tf_req_id=74c35250-6ded-48a6-5230-04436fe7f6d5 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 timestamp="2025-07-11T08:52:51.615+0200" +2025-07-11T08:52:51.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin" references: [] +2025-07-11T08:52:51.617+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:51.619+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=969143 +2025-07-11T08:52:51.619+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:51.620+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:51 [INFO] Reading secret zitadel-admin-sa +2025-07-11T08:52:51.621+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_body="" tf_http_req_method=GET Accept="application/json, */*" Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_version=HTTP/1.1 tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/zitadel/secrets/zitadel-admin-sa tf_http_trans_id=151b0fa6-a169-daa8-8528-20e41f04152f @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request timestamp="2025-07-11T08:52:51.620+0200" +2025-07-11T08:52:51.681+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_res_status_reason="200 OK" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 X-Api-Cattle-Auth=true + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"zitadel-admin-sa","namespace":"zitadel","uid":"a0a1976c-014e-4471-9660-8fb4e595ae6e","resourceVersion":"109672001","creationTimestamp":"2025-07-11T06:31:34Z","managedFields":[{"manager":"kubectl-create","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:31:34Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:zitadel-admin-sa.json":{}},"f:type":{}}}]},"data":{"zitadel-admin-sa.json":"eyJ0eXBlIjoic2VydmljZWFjY291bnQiLCJrZXlJZCI6IjMyODM2Mjc4NTA0NDU3NTY2MiIsImtleSI6Ii0tLS0tQkVHSU4gUlNBIFBSSVZBVEUgS0VZLS0tLS1cbk1JSUVvd0lCQUFLQ0FRRUExK2dnQTA1UHNaWnpwa2xjcUVBY2s4VVVrbjFINUhKWGlEM3RvMElVMnZuTFFZazlcbi9weEhNMzBuMnVXTE9mbEwzT1dlcXkwckRmUjJ0cDNhMGd6aUdPM01WNkV1RFBnNzNXWnFITXd4YTRSa1BPTU9cbkxjSGNmbnA0Ykc5UnhaZ2J2ajJwRmt2UEovajVLQzU0SER5b2wydXJXdUdTVktLSUdZN2JVRTRIRDBuK2VqcjZcbkxvRWVHdElWMTd0dGlwcXZGMmpQTVhIdkgveWpzUVdQb2ZSUWg2a3FueFR1d3llc2psRVh5ZXpNUDErV2ZwQ2Fcbi9rbUdmb3dvY3lJdU1OSFVTZXltTGZCWDNLSVlWV3ArL0h1a1AxSjc4MVJRTFBpdmRoOGhpUFpUNTYwZ1hoNzJcbmlTS0NMZ1RMdVV0NzJMRnMrMVhuS3VxMmdJT0Z2UDhqcGFlK0dRSURBUUFCQW9JQkFFa2MrU0pGZGFWTXJwTWtcbkNyV0xLR0k5L2U1eGNGUURDSE5CaldTWXJ4bE1ON0ZVdVdLc0oweGZXSXkrNkx2VUdRV1AySUJkQmxSdWNYajdcbjBhc0o0OUxQVEVCc2UzeTIzd2JsZEkrVjhqSlhuZDRrZ1p1ckozREpKbGlLQmVYazBaaEZweW0rdUVMd0ErZkFcbmZMb0xMSWhDVkwrczNYRzlyRnNEVG05T1RRTzJ5a1B2d0dBeDE1MW5pdEJuTEptNm1zK21lQk9QYy9mL25zSCtcbklSNlczRm00aFdqU2VLZGVXU0pHNmVQa0pxYlhMVE5ZaHhua2JnTmc0Zno0Q0NQZjM5YXFTM05id2lVdi9kUUdcbmk4Y3AvVW5zWkdGMElsbVN5aXBRaXJGazl3TGQ5aVg5dk5vclBQTW9zRDY4bS9wbEMzZVhGSVFBVGJCWEVHYWZcbmVsTVVtZVVDZ1lFQTJqME00MmlpQlEwcXN1ajRyZmRDdjhyamFJdmE1RUc2SnAyQU10WG1RUXVscnAzMWl1S3dcbmpmcE1vVUFpcDVIUzFQZFF1WENLNm03RFZTM05yMzlwQmNHcnN1bVUvblcxaDNBV1RSNEdlV0Z0Y0NqNWVrN3Fcbml0SktmcEdueWZXbHBQZWx1WGZHbVM2bnBBMzZVUmxoWCtGZmFFNnZFSFZhN28vaGN3NGJGNnNDZ1lFQS9VUEtcbkhDd0pOQlBQMDRRN3pHRjJpdmwveno5V0R3bnAzZDlRWnpwbWpDWmEzSjUydExTaHM1VVJDOFZlU0g2bVdoNzhcbmZNb0ZiOGZGaUpVU2pBMURoMFgxcGJoWExlRm5KbW9iSEFsSFp2ZE1nR0RRU2UwVmZubUM3dEp4d0VRM3RkeHVcbi9FOTVrTkZ2WFVTcTBsU0lDRzhURndyMnpIdWVKZjhzUEh2c2JVc0NnWUVBenV0M250NkVUL25OOUZoRUFONGhcbjRhdEN0c3R6dlZ3OFhZU1VHcDhJYzcvUlZhRGJRTlh5eElyL3dSd0lQNDFac3liUzJTQkY5a1VTMjE1VVdRT2FcbjFpUnM0WFByR3VFTVB1QWRwUHpFOHExWGtES3BhRGdPMVpUUm9QUUZmTTEyUXRXendnZzR1dUNyZmpicWtaNVlcbjN3blc1aFZFazN4UnZVT2FaUGFJNVlVQ2dZQVFDNU5xWlgvUHhOR04zUHJNMy8vYW5pUHl4VmgyYTNKZGxDQkxcbjZlOUZRY2pQNFZvejZKMjErdU94a3pkOThFZ3B2WHpSaXhyOUVmTDV6RGY0bDM2SHUyN3NxTmtkRndLcDlGN3pcblQ4TXVTc3lWOVl3OG9zQ1IyckRvNEh4RWFnMzlmNUdvZW9DQkpFT2g3US9GYzRXS3d6NjZYdjl6eFFFbjl4cWVcbldsdUlNUUtCZ0VGa2x0ZjA5NTdwRUM3cFBiL3Q5LzIwajdPREtTS3JTWUUzK1NHaTlYd1VlVDc0SGtVNDNFdWZcbmEzS1dsd01tSmNZdnRjNFJETnVZSjZGOS9lQXE1YzVNcWd5U0VIb01oMzg2dTNZenpaQmNJNUwwNnBNSTRrWWJcbmpoSzYzT0NybHplSUx4d2N3YzAwenRZSGJqeGsveUZPVVdRL09rbkN6bEdFMG84VE9QeXVcbi0tLS0tRU5EIFJTQSBQUklWQVRFIEtFWS0tLS0tXG4iLCJleHBpcmF0aW9uRGF0ZSI6IjIwMjYtMDEtMDFUMDA6MDA6MDBaIiwidXNlcklkIjoiMzI4MzYyNzg1MDQ0NTEwMTI2In0K"},"type":"Opaque"} + tf_http_res_version=HTTP/2.0 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json Date="Fri, 11 Jul 2025 06:52:51 GMT" X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response tf_http_trans_id=151b0fa6-a169-daa8-8528-20e41f04152f @module=kubernetes.Kubernetes Audit-Id=88f78b20-46d8-476f-a29c-d6b786bc9e46 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_code=200 timestamp="2025-07-11T08:52:51.681+0200" +2025-07-11T08:52:51.681+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:52:51 [INFO] Received secret: v1.ObjectMeta{Name:"zitadel-admin-sa", GenerateName:"", Namespace:"zitadel", SelfLink:"", UID:"a0a1976c-014e-4471-9660-8fb4e595ae6e", ResourceVersion:"109672001", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 31, 34, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"kubectl-create", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 31, 34, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001481260), Subresource:""}}} +2025-07-11T08:52:51.682+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file" references: [] +2025-07-11T08:52:51.682+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:51.684+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=969157 +2025-07-11T08:52:51.684+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:51.686+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=5718ecff-0495-3d51-f7ab-5cb6ab87fc3c tf_resource_type=local_file tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=content_sha1 tf_provider_addr=registry.terraform.io/hashicorp/local timestamp="2025-07-11T08:52:51.686+0200" +2025-07-11T08:52:51.686+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=local_file @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=content_base64sha512 tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=5718ecff-0495-3d51-f7ab-5cb6ab87fc3c timestamp="2025-07-11T08:52:51.686+0200" +2025-07-11T08:52:51.687+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=5718ecff-0495-3d51-f7ab-5cb6ab87fc3c tf_resource_type=local_file @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource timestamp="2025-07-11T08:52:51.686+0200" +2025-07-11T08:52:51.687+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=5718ecff-0495-3d51-f7ab-5cb6ab87fc3c tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=local_file @module=sdk.framework tf_attribute_path=filename timestamp="2025-07-11T08:52:51.686+0200" +2025-07-11T08:52:51.687+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=content_md5 tf_req_id=5718ecff-0495-3d51-f7ab-5cb6ab87fc3c tf_resource_type=local_file tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/local timestamp="2025-07-11T08:52:51.686+0200" +2025-07-11T08:52:51.687+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: tf_req_id=5718ecff-0495-3d51-f7ab-5cb6ab87fc3c tf_rpc=ReadResource tf_attribute_path=directory_permission tf_provider_addr=registry.terraform.io/hashicorp/local tf_resource_type=local_file @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:52:51.687+0200" +2025-07-11T08:52:51.687+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=content_sha512 tf_provider_addr=registry.terraform.io/hashicorp/local tf_resource_type=local_file tf_rpc=ReadResource tf_req_id=5718ecff-0495-3d51-f7ab-5cb6ab87fc3c timestamp="2025-07-11T08:52:51.687+0200" +2025-07-11T08:52:51.687+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=content_base64sha256 tf_req_id=5718ecff-0495-3d51-f7ab-5cb6ab87fc3c tf_resource_type=local_file tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/local timestamp="2025-07-11T08:52:51.687+0200" +2025-07-11T08:52:51.687+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/local tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=file_permission tf_req_id=5718ecff-0495-3d51-f7ab-5cb6ab87fc3c tf_resource_type=local_file timestamp="2025-07-11T08:52:51.687+0200" +2025-07-11T08:52:51.687+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=5718ecff-0495-3d51-f7ab-5cb6ab87fc3c tf_resource_type=local_file tf_rpc=ReadResource tf_attribute_path=content_sha256 tf_provider_addr=registry.terraform.io/hashicorp/local @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:52:51.687+0200" +2025-07-11T08:52:51.687+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=content tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=5718ecff-0495-3d51-f7ab-5cb6ab87fc3c tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=local_file timestamp="2025-07-11T08:52:51.687+0200" +2025-07-11T08:52:51.690+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:51.691+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 id=968901 +2025-07-11T08:52:51.691+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:51.691+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:51.691+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:51.696+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:52:51.696+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=969488 +2025-07-11T08:52:51.696+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:52:51.704+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:51.704+0200" +2025-07-11T08:52:51.716+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:51.716+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin4181766461 network=unix timestamp="2025-07-11T08:52:51.716+0200" +2025-07-11T08:52:51.724+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:51.724+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:51.729+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:52:51.729+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=969500 +2025-07-11T08:52:51.729+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:52:51.729+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=8afe3a63-0b11-b044-095b-b78022b9e986 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=domain tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:52:51.729+0200" +2025-07-11T08:52:51.729+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=sdk.framework tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_req_id=8afe3a63-0b11-b044-095b-b78022b9e986 timestamp="2025-07-11T08:52:51.729+0200" +2025-07-11T08:52:51.729+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=insecure tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=8afe3a63-0b11-b044-095b-b78022b9e986 tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:51.729+0200" +2025-07-11T08:52:51.729+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig tf_attribute_path=insecure tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=8afe3a63-0b11-b044-095b-b78022b9e986 timestamp="2025-07-11T08:52:51.729+0200" +2025-07-11T08:52:51.729+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=8afe3a63-0b11-b044-095b-b78022b9e986 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:51.729+0200" +2025-07-11T08:52:51.729+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=8afe3a63-0b11-b044-095b-b78022b9e986 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:51.729+0200" +2025-07-11T08:52:51.729+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_req_id=8afe3a63-0b11-b044-095b-b78022b9e986 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:51.729+0200" +2025-07-11T08:52:51.729+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=jwt_profile_file tf_req_id=8afe3a63-0b11-b044-095b-b78022b9e986 tf_rpc=ValidateProviderConfig @module=sdk.framework timestamp="2025-07-11T08:52:51.729+0200" +2025-07-11T08:52:51.729+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=jwt_profile_json tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_mux_provider="*proto6server.Server" tf_req_id=8afe3a63-0b11-b044-095b-b78022b9e986 timestamp="2025-07-11T08:52:51.729+0200" +2025-07-11T08:52:51.729+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_req_id=8afe3a63-0b11-b044-095b-b78022b9e986 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=jwt_profile_json tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:52:51.729+0200" +2025-07-11T08:52:51.729+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=8afe3a63-0b11-b044-095b-b78022b9e986 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:51.729+0200" +2025-07-11T08:52:51.729+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=8afe3a63-0b11-b044-095b-b78022b9e986 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=port timestamp="2025-07-11T08:52:51.729+0200" +2025-07-11T08:52:51.736+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:51.736+0200" +2025-07-11T08:52:51.748+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:51.748+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin249457765 network=unix timestamp="2025-07-11T08:52:51.748+0200" +2025-07-11T08:52:51.756+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:52:51.756+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:52:51.756+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Provider Configure: @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=248228ae-b444-9620-53a8-f16a3976a5b9 tf_rpc=ConfigureProvider @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:12 tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:52:51.756+0200" +2025-07-11T08:52:51.756+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Provider Configure: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=248228ae-b444-9620-53a8-f16a3976a5b9 tf_rpc=ConfigureProvider @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:20 @module=sdk.framework timestamp="2025-07-11T08:52:51.756+0200" +2025-07-11T08:52:51.760+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:52:51.760+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=969513 +2025-07-11T08:52:51.760+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:52:51.768+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:52:51.768+0200" +2025-07-11T08:52:51.780+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:52:51.780+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: network=unix address=/tmp/plugin799808377 timestamp="2025-07-11T08:52:51.780+0200" +2025-07-11T08:52:51.794+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=c9184f79-62a8-8513-d5e3-139e829646d3 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:51.794+0200" +2025-07-11T08:52:51.794+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=c9184f79-62a8-8513-d5e3-139e829646d3 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:51.794+0200" +2025-07-11T08:52:51.794+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=sdk.framework tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_req_id=c9184f79-62a8-8513-d5e3-139e829646d3 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:51.794+0200" +2025-07-11T08:52:51.794+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig tf_attribute_path=token tf_req_id=c9184f79-62a8-8513-d5e3-139e829646d3 timestamp="2025-07-11T08:52:51.794+0200" +2025-07-11T08:52:51.794+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_req_id=c9184f79-62a8-8513-d5e3-139e829646d3 tf_rpc=ValidateProviderConfig @module=sdk.framework timestamp="2025-07-11T08:52:51.794+0200" +2025-07-11T08:52:51.794+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_rpc=ValidateProviderConfig tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=c9184f79-62a8-8513-d5e3-139e829646d3 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 timestamp="2025-07-11T08:52:51.794+0200" +2025-07-11T08:52:51.794+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=jwt_profile_json tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=c9184f79-62a8-8513-d5e3-139e829646d3 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T08:52:51.794+0200" +2025-07-11T08:52:51.794+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=jwt_profile_json tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=c9184f79-62a8-8513-d5e3-139e829646d3 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 timestamp="2025-07-11T08:52:51.794+0200" +2025-07-11T08:52:51.794+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=c9184f79-62a8-8513-d5e3-139e829646d3 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:51.794+0200" +2025-07-11T08:52:51.794+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_req_id=c9184f79-62a8-8513-d5e3-139e829646d3 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_attribute_path=port tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:52:51.794+0200" +2025-07-11T08:52:51.794+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=c9184f79-62a8-8513-d5e3-139e829646d3 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=domain timestamp="2025-07-11T08:52:51.794+0200" +2025-07-11T08:52:51.794+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_req_id=c9184f79-62a8-8513-d5e3-139e829646d3 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:51.794+0200" +2025-07-11T08:52:51.795+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Provider Configure: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:12 tf_req_id=aeaa99ab-cbc4-247e-b9eb-1dc7d0a5f433 tf_rpc=ConfigureProvider @module=sdk.framework timestamp="2025-07-11T08:52:51.795+0200" +2025-07-11T08:52:51.795+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Provider Configure: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=aeaa99ab-cbc4-247e-b9eb-1dc7d0a5f433 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:20 tf_mux_provider="*proto6server.Server" tf_rpc=ConfigureProvider @module=sdk.framework timestamp="2025-07-11T08:52:51.795+0200" +2025-07-11T08:52:51.795+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=jwt_profile_json tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=6eeccb46-f258-c3db-7be1-d8a0b280afce tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:51.795+0200" +2025-07-11T08:52:51.795+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_req_id=6eeccb46-f258-c3db-7be1-d8a0b280afce @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=jwt_profile_json tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:51.795+0200" +2025-07-11T08:52:51.795+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=port tf_rpc=ValidateProviderConfig @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=6eeccb46-f258-c3db-7be1-d8a0b280afce timestamp="2025-07-11T08:52:51.795+0200" +2025-07-11T08:52:51.795+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=port tf_req_id=6eeccb46-f258-c3db-7be1-d8a0b280afce tf_rpc=ValidateProviderConfig tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:52:51.795+0200" +2025-07-11T08:52:51.795+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_req_id=6eeccb46-f258-c3db-7be1-d8a0b280afce tf_rpc=ValidateProviderConfig @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:52:51.795+0200" +2025-07-11T08:52:51.795+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=6eeccb46-f258-c3db-7be1-d8a0b280afce @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=domain tf_rpc=ValidateProviderConfig tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:52:51.795+0200" +2025-07-11T08:52:51.795+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=6eeccb46-f258-c3db-7be1-d8a0b280afce tf_attribute_path=insecure tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:52:51.795+0200" +2025-07-11T08:52:51.795+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=6eeccb46-f258-c3db-7be1-d8a0b280afce tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=insecure timestamp="2025-07-11T08:52:51.795+0200" +2025-07-11T08:52:51.795+0200 [DEBUG] Resource instance state not found for node "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default", instance module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default +2025-07-11T08:52:51.795+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default" references: [] +2025-07-11T08:52:51.795+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=6eeccb46-f258-c3db-7be1-d8a0b280afce timestamp="2025-07-11T08:52:51.795+0200" +2025-07-11T08:52:51.795+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=6eeccb46-f258-c3db-7be1-d8a0b280afce @module=sdk.framework tf_attribute_path=token tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:51.795+0200" +2025-07-11T08:52:51.795+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=jwt_profile_file @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=6eeccb46-f258-c3db-7be1-d8a0b280afce tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:52:51.795+0200" +2025-07-11T08:52:51.795+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=6eeccb46-f258-c3db-7be1-d8a0b280afce tf_rpc=ValidateProviderConfig tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:52:51.795+0200" +2025-07-11T08:52:51.795+0200 [DEBUG] refresh: module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default: no state, so not refreshing +2025-07-11T08:52:51.795+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Provider Configure: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:12 tf_req_id=80233c06-cb14-793a-d1bc-1c40fed7f49d tf_rpc=ConfigureProvider @module=sdk.framework timestamp="2025-07-11T08:52:51.795+0200" +2025-07-11T08:52:51.795+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Provider Configure: @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_rpc=ConfigureProvider @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:20 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=80233c06-cb14-793a-d1bc-1c40fed7f49d timestamp="2025-07-11T08:52:51.795+0200" +2025-07-11T08:52:51.797+0200 [DEBUG] Resource instance state not found for node "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default", instance module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default +2025-07-11T08:52:51.797+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default" references: [] +2025-07-11T08:52:51.797+0200 [DEBUG] Resource instance state not found for node "module.zitadel-argocd.zitadel_action.groups-claim", instance module.zitadel-argocd.zitadel_action.groups-claim +2025-07-11T08:52:51.797+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_action.groups-claim" references: [] +2025-07-11T08:52:51.797+0200 [DEBUG] Resource instance state not found for node "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default", instance module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default +2025-07-11T08:52:51.797+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default" references: [] +2025-07-11T08:52:51.797+0200 [DEBUG] refresh: module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default: no state, so not refreshing +2025-07-11T08:52:51.797+0200 [DEBUG] refresh: module.zitadel-argocd.zitadel_action.groups-claim: no state, so not refreshing +2025-07-11T08:52:51.798+0200 [DEBUG] Resource instance state not found for node "module.zitadel-argocd.module.zitadel_project.zitadel_project.default", instance module.zitadel-argocd.module.zitadel_project.zitadel_project.default +2025-07-11T08:52:51.798+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default" references: [] +2025-07-11T08:52:51.798+0200 [DEBUG] refresh: module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default: no state, so not refreshing +2025-07-11T08:52:51.798+0200 [DEBUG] refresh: module.zitadel-argocd.module.zitadel_project.zitadel_project.default: no state, so not refreshing +2025-07-11T08:52:51.798+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default +2025-07-11T08:52:51.798+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default" references: [] +2025-07-11T08:52:51.798+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default: no state, so not refreshing +2025-07-11T08:52:51.799+0200 [DEBUG] Resource instance state not found for node "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info", instance module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info +2025-07-11T08:52:51.799+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info" references: [] +2025-07-11T08:52:51.799+0200 [DEBUG] Resource instance state not found for node "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token", instance module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token +2025-07-11T08:52:51.799+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token" references: [] +2025-07-11T08:52:51.799+0200 [DEBUG] refresh: module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info: no state, so not refreshing +2025-07-11T08:52:51.800+0200 [DEBUG] Resource instance state not found for node "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default", instance module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default +2025-07-11T08:52:51.800+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default" references: [] +2025-07-11T08:52:51.800+0200 [DEBUG] refresh: module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token: no state, so not refreshing +2025-07-11T08:52:51.800+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .preferred_language: planned value cty.StringVal("und") for a non-computed attribute + - .gender: planned value cty.StringVal("GENDER_UNSPECIFIED") for a non-computed attribute +2025-07-11T08:52:51.800+0200 [DEBUG] refresh: module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default: no state, so not refreshing +2025-07-11T08:52:51.801+0200 [DEBUG] Resource instance state not found for node "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default", instance module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default +2025-07-11T08:52:51.801+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default" references: [] +2025-07-11T08:52:51.801+0200 [DEBUG] refresh: module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default: no state, so not refreshing +2025-07-11T08:52:51.801+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .action_ids: planned value cty.UnknownVal(cty.Set(cty.String)) does not match config value cty.SetVal([]cty.Value{cty.UnknownVal(cty.String)}) +2025-07-11T08:52:51.802+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .idps: planned value cty.UnknownVal(cty.Set(cty.String)) does not match config value cty.SetVal([]cty.Value{cty.UnknownVal(cty.String)}) +2025-07-11T08:52:51.802+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .action_ids: planned value cty.UnknownVal(cty.Set(cty.String)) does not match config value cty.SetVal([]cty.Value{cty.UnknownVal(cty.String)}) +2025-07-11T08:52:51.803+0200 [DEBUG] Resource instance state not found for node "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0]", instance module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0] +2025-07-11T08:52:51.803+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0]" references: [] +2025-07-11T08:52:51.804+0200 [DEBUG] refresh: module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0]: no state, so not refreshing +2025-07-11T08:52:51.804+0200 [DEBUG] Resource instance state not found for node "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]", instance module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0] +2025-07-11T08:52:51.804+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]" references: [] +2025-07-11T08:52:51.804+0200 [DEBUG] Resource instance state not found for node "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]", instance module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0] +2025-07-11T08:52:51.804+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]" references: [] +2025-07-11T08:52:51.804+0200 [DEBUG] refresh: module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]: no state, so not refreshing +2025-07-11T08:52:51.805+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0] +2025-07-11T08:52:51.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]" references: [] +2025-07-11T08:52:51.805+0200 [DEBUG] Resource instance state not found for node "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default", instance module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default +2025-07-11T08:52:51.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [] +2025-07-11T08:52:51.805+0200 [DEBUG] refresh: module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]: no state, so not refreshing +2025-07-11T08:52:51.805+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]: no state, so not refreshing +2025-07-11T08:52:51.805+0200 [DEBUG] Resource instance state not found for node "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default", instance module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default +2025-07-11T08:52:51.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default" references: [] +2025-07-11T08:52:51.805+0200 [DEBUG] refresh: module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default: no state, so not refreshing +2025-07-11T08:52:51.805+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:51.807+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=969513 +2025-07-11T08:52:51.807+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:51.807+0200 [DEBUG] refresh: module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default: no state, so not refreshing +2025-07-11T08:52:51.808+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3] +2025-07-11T08:52:51.808+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4] +2025-07-11T08:52:51.808+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5] +2025-07-11T08:52:51.808+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6] +2025-07-11T08:52:51.808+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7] +2025-07-11T08:52:51.808+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0] +2025-07-11T08:52:51.808+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1] +2025-07-11T08:52:51.808+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2] +2025-07-11T08:52:51.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1]" references: [] +2025-07-11T08:52:51.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2]" references: [] +2025-07-11T08:52:51.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3]" references: [] +2025-07-11T08:52:51.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4]" references: [] +2025-07-11T08:52:51.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]" references: [] +2025-07-11T08:52:51.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]" references: [] +2025-07-11T08:52:51.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7]" references: [] +2025-07-11T08:52:51.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]" references: [] +2025-07-11T08:52:51.808+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .clock_skew: planned value cty.StringVal("0s") for a non-computed attribute + - .version: planned value cty.StringVal("OIDC_VERSION_1_0") for a non-computed attribute +2025-07-11T08:52:51.808+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]: no state, so not refreshing +2025-07-11T08:52:51.809+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:51.809+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=969488 +2025-07-11T08:52:51.809+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:51.809+0200 [DEBUG] Resource instance state not found for node "module.argocd.data.external.processed_values", instance module.argocd.data.external.processed_values +2025-07-11T08:52:51.810+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.external.processed_values" references: [] +2025-07-11T08:52:51.810+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4]: no state, so not refreshing +2025-07-11T08:52:51.810+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]: no state, so not refreshing +2025-07-11T08:52:51.810+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7]: no state, so not refreshing +2025-07-11T08:52:51.810+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2]: no state, so not refreshing +2025-07-11T08:52:51.810+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3]: no state, so not refreshing +2025-07-11T08:52:51.810+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]: no state, so not refreshing +2025-07-11T08:52:51.810+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1]: no state, so not refreshing +2025-07-11T08:52:51.810+0200 [DEBUG] Resource instance state not found for node "module.argocd.helm_release.argocd", instance module.argocd.helm_release.argocd +2025-07-11T08:52:51.810+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd" references: [] +2025-07-11T08:52:51.811+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:51.811+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 id=968932 +2025-07-11T08:52:51.811+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:51.811+0200 [DEBUG] refresh: module.argocd.helm_release.argocd: no state, so not refreshing +2025-07-11T08:52:51.812+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:51.813+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000616380 Settings:0xc000837440 RegistryClient:0xc0004aa500 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_req_id=850f096f-5d64-1131-4170-2ff6c6f905a0 tf_resource_type=helm_release tf_rpc=ValidateResourceConfig timestamp="2025-07-11T08:52:51.813+0200" +2025-07-11T08:52:51.813+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0] +2025-07-11T08:52:51.813+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]" references: [] +2025-07-11T08:52:51.813+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]: no state, so not refreshing +2025-07-11T08:52:51.815+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0] +2025-07-11T08:52:51.815+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000616380 Settings:0xc000837440 RegistryClient:0xc0004aa500 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=662a1bc9-2bb2-8135-e192-306b9578eb9a tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:51.814+0200" +2025-07-11T08:52:51.815+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1] +2025-07-11T08:52:51.815+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0]" references: [] +2025-07-11T08:52:51.815+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]" references: [] +2025-07-11T08:52:51.815+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0]: no state, so not refreshing +2025-07-11T08:52:51.815+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]: no state, so not refreshing +2025-07-11T08:52:51.816+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Marking Computed attributes with null configuration values as unknown (known after apply) in the plan to prevent potential Terraform errors: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:250 tf_req_id=662a1bc9-2bb2-8135-e192-306b9578eb9a timestamp="2025-07-11T08:52:51.816+0200" +2025-07-11T08:52:51.816+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_attribute_path="AttributeName(\"id\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=662a1bc9-2bb2-8135-e192-306b9578eb9a timestamp="2025-07-11T08:52:51.816+0200" +2025-07-11T08:52:51.816+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @module=sdk.framework tf_attribute_path="AttributeName(\"manifest\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=662a1bc9-2bb2-8135-e192-306b9578eb9a tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 timestamp="2025-07-11T08:52:51.816+0200" +2025-07-11T08:52:51.816+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @module=sdk.framework tf_attribute_path="AttributeName(\"status\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=662a1bc9-2bb2-8135-e192-306b9578eb9a tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 timestamp="2025-07-11T08:52:51.816+0200" +2025-07-11T08:52:51.816+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @module=sdk.framework tf_attribute_path="AttributeName(\"metadata\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=662a1bc9-2bb2-8135-e192-306b9578eb9a tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_resource_type=helm_release timestamp="2025-07-11T08:52:51.816+0200" +2025-07-11T08:52:51.816+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default +2025-07-11T08:52:51.816+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [] +2025-07-11T08:52:51.817+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default: no state, so not refreshing +2025-07-11T08:52:51.818+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:52:51.818+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default" references: [] +2025-07-11T08:52:51.818+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default: no state, so not refreshing +2025-07-11T08:52:51.819+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"argo-cd" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID: Keyring: Lint:false Manifest: MaxHistory:0 Metadata: Name:"argocd" Namespace:"argocd" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive:[{"name":"config.secret.argocdServerAdminPassword","type":,"value":"3w=tr!042qbxD7d?22Ayj(WFW6qRi@N)yRUJ8KQ:eEDAStFZ"}] SkipCrds:false Status: Timeout:300 Values:[] Verify:false Version:"7.0.20" Wait:true WaitForJobs:true}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 @module=helm tf_req_id=662a1bc9-2bb2-8135-e192-306b9578eb9a tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:51.819+0200" +2025-07-11T08:52:51.819+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: : tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm tf_req_id=662a1bc9-2bb2-8135-e192-306b9578eb9a timestamp="2025-07-11T08:52:51.819+0200" +2025-07-11T08:52:51.819+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Start: @module=helm tf_req_id=662a1bc9-2bb2-8135-e192-306b9578eb9a @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:51.819+0200" +2025-07-11T08:52:51.819+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm KubernetesData=map[] tf_req_id=662a1bc9-2bb2-8135-e192-306b9578eb9a tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:51.819+0200" +2025-07-11T08:52:51.819+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_req_id=662a1bc9-2bb2-8135-e192-306b9578eb9a @module=helm configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 timestamp="2025-07-11T08:52:51.819+0200" +2025-07-11T08:52:51.819+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_req_id=662a1bc9-2bb2-8135-e192-306b9578eb9a timestamp="2025-07-11T08:52:51.819+0200" +2025-07-11T08:52:51.819+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Initial Values: Name=argocd, Namespace=argocd, Repository=https://charts.bitnami.com/bitnami, Repository_Username=, Repository_Password=, Chart=argo-cd: tf_req_id=662a1bc9-2bb2-8135-e192-306b9578eb9a tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 timestamp="2025-07-11T08:52:51.819+0200" +2025-07-11T08:52:51.819+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Metadata has changes, setting to unknown: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1799 @module=helm tf_req_id=662a1bc9-2bb2-8135-e192-306b9578eb9a tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:51.819+0200" +2025-07-11T08:52:51.819+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc000837560 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=662a1bc9-2bb2-8135-e192-306b9578eb9a tf_resource_type=helm_release @module=helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 timestamp="2025-07-11T08:52:51.819+0200" +2025-07-11T08:52:51.820+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api +2025-07-11T08:52:51.820+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api" references: [] +2025-07-11T08:52:51.820+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:52:51.820+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [] +2025-07-11T08:52:51.820+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api: no state, so not refreshing +2025-07-11T08:52:51.820+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default: no state, so not refreshing +2025-07-11T08:52:51.821+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:52:51.821+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default" references: [] +2025-07-11T08:52:51.821+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default: no state, so not refreshing +2025-07-11T08:52:51.822+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .clock_skew: planned value cty.StringVal("0s") for a non-computed attribute + - .version: planned value cty.StringVal("OIDC_VERSION_1_0") for a non-computed attribute +2025-07-11T08:52:51.822+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .data: sensitive planned value does not match config value + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:52:51.822+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent +2025-07-11T08:52:51.822+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent" references: [] +2025-07-11T08:52:51.823+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent: no state, so not refreshing +2025-07-11T08:52:51.823+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api +2025-07-11T08:52:51.823+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api" references: [] +2025-07-11T08:52:51.823+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:52:51.823+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default" references: [] +2025-07-11T08:52:51.823+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:52:51.823+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [] +2025-07-11T08:52:51.823+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api: no state, so not refreshing +2025-07-11T08:52:51.823+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default: no state, so not refreshing +2025-07-11T08:52:51.823+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default: no state, so not refreshing +2025-07-11T08:52:51.824+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .data: sensitive planned value does not match config value +2025-07-11T08:52:51.825+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .data: sensitive planned value does not match config value + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:52:51.825+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .clock_skew: planned value cty.StringVal("0s") for a non-computed attribute + - .version: planned value cty.StringVal("OIDC_VERSION_1_0") for a non-computed attribute +2025-07-11T08:52:51.825+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0] +2025-07-11T08:52:51.826+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]" references: [] +2025-07-11T08:52:51.826+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:52:51.826+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [] +2025-07-11T08:52:51.826+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent +2025-07-11T08:52:51.826+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent" references: [] +2025-07-11T08:52:51.826+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]: no state, so not refreshing +2025-07-11T08:52:51.826+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent: no state, so not refreshing +2025-07-11T08:52:51.826+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default: no state, so not refreshing +2025-07-11T08:52:51.828+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .data: sensitive planned value does not match config value +2025-07-11T08:52:51.828+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .data: sensitive planned value does not match config value + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:52:51.828+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:52:51.828+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default" references: [] +2025-07-11T08:52:51.829+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default: no state, so not refreshing +2025-07-11T08:52:51.830+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api +2025-07-11T08:52:51.830+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api" references: [] +2025-07-11T08:52:51.830+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:52:51.830+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default" references: [] +2025-07-11T08:52:51.830+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:52:51.830+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [] +2025-07-11T08:52:51.830+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api: no state, so not refreshing +2025-07-11T08:52:51.830+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default: no state, so not refreshing +2025-07-11T08:52:51.830+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default: no state, so not refreshing +2025-07-11T08:52:51.832+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .clock_skew: planned value cty.StringVal("0s") for a non-computed attribute + - .version: planned value cty.StringVal("OIDC_VERSION_1_0") for a non-computed attribute +2025-07-11T08:52:51.832+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .data: sensitive planned value does not match config value +2025-07-11T08:52:51.832+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:52:51.832+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [] +2025-07-11T08:52:51.832+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default: no state, so not refreshing +2025-07-11T08:52:51.832+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0] +2025-07-11T08:52:51.832+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]" references: [] +2025-07-11T08:52:51.832+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]: no state, so not refreshing +2025-07-11T08:52:51.833+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent +2025-07-11T08:52:51.833+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent" references: [] +2025-07-11T08:52:51.833+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent: no state, so not refreshing +2025-07-11T08:52:51.834+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .data: sensitive planned value does not match config value + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:52:51.834+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .data: sensitive planned value does not match config value +2025-07-11T08:52:51.834+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:52:51.834+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default" references: [] +2025-07-11T08:52:51.835+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default: no state, so not refreshing +2025-07-11T08:52:51.836+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api +2025-07-11T08:52:51.836+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api" references: [] +2025-07-11T08:52:51.836+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:52:51.836+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [] +2025-07-11T08:52:51.836+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api: no state, so not refreshing +2025-07-11T08:52:51.836+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default: no state, so not refreshing +2025-07-11T08:52:51.836+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:52:51.836+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default" references: [] +2025-07-11T08:52:51.836+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default: no state, so not refreshing +2025-07-11T08:52:51.837+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .clock_skew: planned value cty.StringVal("0s") for a non-computed attribute + - .version: planned value cty.StringVal("OIDC_VERSION_1_0") for a non-computed attribute +2025-07-11T08:52:51.838+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .data: sensitive planned value does not match config value + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:52:51.839+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent +2025-07-11T08:52:51.839+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent" references: [] +2025-07-11T08:52:51.839+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent: no state, so not refreshing +2025-07-11T08:52:51.839+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0] +2025-07-11T08:52:51.839+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]" references: [] +2025-07-11T08:52:51.840+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:52:51.840+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [] +2025-07-11T08:52:51.840+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]: no state, so not refreshing +2025-07-11T08:52:51.840+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default: no state, so not refreshing +2025-07-11T08:52:51.841+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .data: sensitive planned value does not match config value + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:52:51.842+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .data: sensitive planned value does not match config value +2025-07-11T08:52:51.842+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:51.843+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=969500 +2025-07-11T08:52:51.843+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:51.844+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:51.846+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=969108 +2025-07-11T08:52:51.846+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:56.803+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Got chart: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 @module=helm tf_req_id=662a1bc9-2bb2-8135-e192-306b9578eb9a tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:56.803+0200" +2025-07-11T08:52:56.803+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=662a1bc9-2bb2-8135-e192-306b9578eb9a tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 timestamp="2025-07-11T08:52:56.803+0200" +2025-07-11T08:52:56.803+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Release validated: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=helm tf_req_id=662a1bc9-2bb2-8135-e192-306b9578eb9a tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 timestamp="2025-07-11T08:52:56.803+0200" +2025-07-11T08:52:56.803+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Done: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=662a1bc9-2bb2-8135-e192-306b9578eb9a @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:56.803+0200" +2025-07-11T08:52:56.804+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:52:56.805+0200 [DEBUG] Resource instance state not found for node "module.monitoring.helm_release.kube_prometheus_stack", instance module.monitoring.helm_release.kube_prometheus_stack +2025-07-11T08:52:56.805+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack" references: [] +2025-07-11T08:52:56.812+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=969061 +2025-07-11T08:52:56.812+0200 [DEBUG] provider: plugin exited +2025-07-11T08:52:56.812+0200 [DEBUG] refresh: module.monitoring.helm_release.kube_prometheus_stack: no state, so not refreshing +2025-07-11T08:52:56.812+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:52:56.814+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0006d62a0 Settings:0xc0006dd440 RegistryClient:0xc0003ca380 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6e6ede93-ed47-2b00-4d73-a32d834a0a41 tf_rpc=ValidateResourceConfig @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:56.814+0200" +2025-07-11T08:52:56.816+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0006d62a0 Settings:0xc0006dd440 RegistryClient:0xc0003ca380 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=helm tf_req_id=de0b627e-6984-f6a1-44ff-f15155cdf553 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:56.816+0200" +2025-07-11T08:52:56.818+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Marking Computed attributes with null configuration values as unknown (known after apply) in the plan to prevent potential Terraform errors: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:250 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=de0b627e-6984-f6a1-44ff-f15155cdf553 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:56.818+0200" +2025-07-11T08:52:56.818+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_attribute_path="AttributeName(\"metadata\")" tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=de0b627e-6984-f6a1-44ff-f15155cdf553 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 timestamp="2025-07-11T08:52:56.818+0200" +2025-07-11T08:52:56.818+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_attribute_path="AttributeName(\"manifest\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=de0b627e-6984-f6a1-44ff-f15155cdf553 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework timestamp="2025-07-11T08:52:56.818+0200" +2025-07-11T08:52:56.818+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=de0b627e-6984-f6a1-44ff-f15155cdf553 tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_attribute_path="AttributeName(\"id\")" timestamp="2025-07-11T08:52:56.818+0200" +2025-07-11T08:52:56.818+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_attribute_path="AttributeName(\"status\")" tf_req_id=de0b627e-6984-f6a1-44ff-f15155cdf553 tf_resource_type=helm_release timestamp="2025-07-11T08:52:56.818+0200" +2025-07-11T08:52:56.820+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"kube-prometheus-stack" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID: Keyring: Lint:false Manifest: MaxHistory:0 Metadata: Name:"monitoring" Namespace:"monitoring" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://prometheus-community.github.io/helm-charts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status: Timeout:300 Values:["additionalPrometheusRulesMap:\n custom-app-rules:\n groups:\n - name: aspnetcore\n interval: 30s\n rules:\n - alert: HighRequestLatency\n expr: histogram_quantile(0.95, http_request_duration_seconds_bucket) > 0.5\n for: 5m\n labels:\n severity: warning\n annotations:\n summary: \"High request latency on {{ $labels.instance }}\"\n description: \"95th percentile latency is above 500ms (current value: {{ $value }}s)\"\n - alert: HighErrorRate\n expr: 'rate(http_requests_total{status=~\"5..\"}[5m]) > 0.05'\n for: 5m\n labels:\n severity: critical\n annotations:\n summary: \"High error rate on {{ $labels.instance }}\"\n description: \"Error rate is above 5% (current value: {{ $value }})\"\n \nprometheus:\n prometheusSpec:\n retention: 24h\n retentionSize: 10GB\n\n resources:\n requests:\n memory: 200Mi\n cpu: 100m\n limits:\n memory: 500Mi\n cpu: 500m\n\n # Remote write to VictoriaMetrics\n remoteWrite:\n - url: https://metrics.binarysunset.dev/api/v1/write\n basicAuth:\n username:\n name: prometheus-remote-write-auth\n key: username\n password:\n name: prometheus-remote-write-auth\n key: password\n writeRelabelConfigs:\n - sourceLabels: [\"__name__\"]\n regex: \"(up|kube_.*|container_.*|node_.*|http_.*|process_.*)\"\n action: keep\n\n # Remote read from VictoriaMetrics for old data\n remoteRead:\n - url: https://metrics.binarysunset.dev/api/v1/read\n basicAuth:\n username:\n name: prometheus-remote-write-auth\n key: username\n password:\n name: prometheus-remote-write-auth\n key: password\n readRecent: false # Only read data older than local retention\n\nalertmanager:\n enabled: true\n alertmanagerSpec:\n replicas: 1\n resources:\n requests:\n memory: 50Mi\n cpu: 10m\n limits:\n memory: 150Mi\n cpu: 100m\n retention: 24h\n\ngrafana:\n resources:\n requests:\n memory: 100Mi\n cpu: 50m\n limits:\n memory: 300Mi\n cpu: 200m\n persistence:\n enabled: true\n size: 1Gi\n adminUser: admin\n adminPassword: acf0vJ0XUVECnChUTU1u6WCBUeXXJVKB2qwpsWQH\n\nkubeStateMetrics:\n resources:\n requests:\n memory: 50Mi\n cpu: 10m\n limits:\n memory: 150Mi\n cpu: 100m\n\nnodeExporter:\n resources:\n requests:\n memory: 30Mi\n cpu: 10m\n limits:\n memory: 100Mi\n cpu: 100m\n\nprometheusOperator:\n resources:\n requests:\n memory: 100Mi\n cpu: 50m\n limits:\n memory: 300Mi\n cpu: 200m\n\ndefaultRules:\n create: true\n rules:\n alertmanager: true\n etcd: false\n general: true\n k8s: true\n kubernetesApps: true\n kubernetesResources: true\n kubernetesStorage: true\n kubernetesSystem: true\n node: true\n prometheus: true"] Verify:false Version:"75.9.0" Wait:true WaitForJobs:false}: tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=de0b627e-6984-f6a1-44ff-f15155cdf553 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 @module=helm tf_resource_type=helm_release timestamp="2025-07-11T08:52:56.820+0200" +2025-07-11T08:52:56.820+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: : tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=de0b627e-6984-f6a1-44ff-f15155cdf553 tf_resource_type=helm_release @module=helm timestamp="2025-07-11T08:52:56.820+0200" +2025-07-11T08:52:56.820+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Start: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=de0b627e-6984-f6a1-44ff-f15155cdf553 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:56.820+0200" +2025-07-11T08:52:56.820+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_resource_type=helm_release tf_rpc=PlanResourceChange KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm tf_req_id=de0b627e-6984-f6a1-44ff-f15155cdf553 timestamp="2025-07-11T08:52:56.820+0200" +2025-07-11T08:52:56.821+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_req_id=de0b627e-6984-f6a1-44ff-f15155cdf553 tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=helm configPaths=[] timestamp="2025-07-11T08:52:56.821+0200" +2025-07-11T08:52:56.821+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=de0b627e-6984-f6a1-44ff-f15155cdf553 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm timestamp="2025-07-11T08:52:56.821+0200" +2025-07-11T08:52:56.821+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Initial Values: Name=monitoring, Namespace=monitoring, Repository=https://prometheus-community.github.io/helm-charts, Repository_Username=, Repository_Password=, Chart=kube-prometheus-stack: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=de0b627e-6984-f6a1-44ff-f15155cdf553 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:52:56.821+0200" +2025-07-11T08:52:56.821+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Metadata has changes, setting to unknown: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1799 tf_req_id=de0b627e-6984-f6a1-44ff-f15155cdf553 tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:52:56.821+0200" +2025-07-11T08:52:56.821+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc0006dd560 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: tf_req_id=de0b627e-6984-f6a1-44ff-f15155cdf553 tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 timestamp="2025-07-11T08:52:56.821+0200" +2025-07-11T08:53:00.505+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Got chart: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 tf_req_id=de0b627e-6984-f6a1-44ff-f15155cdf553 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:53:00.505+0200" +2025-07-11T08:53:00.505+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=de0b627e-6984-f6a1-44ff-f15155cdf553 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:53:00.505+0200" +2025-07-11T08:53:00.505+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Release validated: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm tf_req_id=de0b627e-6984-f6a1-44ff-f15155cdf553 timestamp="2025-07-11T08:53:00.505+0200" +2025-07-11T08:53:00.505+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Done: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=de0b627e-6984-f6a1-44ff-f15155cdf553 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:53:00.505+0200" +2025-07-11T08:53:00.506+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:00.512+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=969018 +2025-07-11T08:53:00.512+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:00.512+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:00.513+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 id=969048 +2025-07-11T08:53:00.513+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:00.523+0200 [DEBUG] building apply graph to check for errors +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0] +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project.zitadel_project.default", instance module.zitadel-argocd.module.zitadel_project.zitadel_project.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.argocd.helm_release.argocd", instance module.argocd.helm_release.argocd +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1] +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default", instance module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0] +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default", instance module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default", instance module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0] +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default", instance module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default", instance module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]", instance module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0] +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4] +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0] +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3] +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0] +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token", instance module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7] +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.monitoring.helm_release.kube_prometheus_stack", instance module.monitoring.helm_release.kube_prometheus_stack +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2] +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1] +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0] +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5] +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6] +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default", instance module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]", instance module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0] +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default", instance module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.zitadel_action.groups-claim", instance module.zitadel-argocd.zitadel_action.groups-claim +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0] +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info", instance module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.argocd.data.external.processed_values", instance module.argocd.data.external.processed_values +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0]", instance module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0] +2025-07-11T08:53:00.529+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api +2025-07-11T08:53:00.536+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/zitadel/zitadel"], implied first by module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default +2025-07-11T08:53:00.536+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/null"], implied first by module.tenant-365zon.module.minio.null_resource.health_check (expand) +2025-07-11T08:53:00.536+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/random"], implied first by module.minio.random_password.minio_secret_key (expand) +2025-07-11T08:53:00.536+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/external"], implied first by module.argocd.data.external.processed_values (expand) +2025-07-11T08:53:00.536+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/local"], implied first by module.zitadel.local_file.zitadel_jwt_profile_file (expand) +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_namespace.postgresql (expand)" (*terraform.nodeExpandApplyableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_root_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_action.groups-claim" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_user_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "data.minio_s3_object.k8s_yaml (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_secret.argocd-tls (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_namespace.argocd (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.monitoring.helm_release.kube_prometheus_stack (expand)" (*terraform.nodeExpandApplyableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_namespace.monitoring (expand)" (*terraform.nodeExpandApplyableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.538+0200 [DEBUG] ProviderTransformer: "module.minio.helm_release.minio (expand)" (*terraform.nodeExpandApplyableResource) needs module.minio.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_secret.mongodb_auth (expand)" (*terraform.nodeExpandApplyableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/local"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.monitoring.random_password.grafana_admin_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand)" (*terraform.nodeExpandApplyableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.argocd.helm_release.argocd" (*terraform.NodeApplyableResourceInstance) needs module.argocd.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_namespace.redis (expand)" (*terraform.nodeExpandApplyableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.random_password.password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.zitadel.random_password.zitadel_masterkey (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_namespace.mongodb (expand)" (*terraform.nodeExpandApplyableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.zitadel.helm_release.zitadel (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.redis.random_password.redis (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.argocd.data.external.processed_values" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/hashicorp/external"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.argocd.helm_release.argocd (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.monitoring.helm_release.kube_prometheus_stack" (*terraform.NodeApplyableResourceInstance) needs module.monitoring.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.redis.helm_release.redis (expand)" (*terraform.nodeExpandApplyableResource) needs module.redis.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn (expand)" (*terraform.nodeExpandApplyableResource) needs module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_namespace.monitoring" (*terraform.NodeApplyableResourceInstance) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_namespace.zitadel (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_secret.zitadel (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_root_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_replica_set_key (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.kubernetes_job.create-tenant (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-db.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_action.groups-claim (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.helm_release.rabbitmq (expand)" (*terraform.nodeExpandApplyableResource) needs module.rabbitmq.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.argocd.data.kubernetes_secret.bridge-tls (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_access_key (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.539+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.argocd.data.external.processed_values (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/external"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.mongodb.helm_release.mongodb (expand)" (*terraform.nodeExpandApplyableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.argocd.random_password.admin_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.random_password.tenant (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_secret.redis (expand)" (*terraform.nodeExpandApplyableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_secret_key (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_secret.postgresql_auth (expand)" (*terraform.nodeExpandApplyableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_namespace.tenant (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.null_resource.health_check (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/null"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.postgresql.helm_release.postgresql (expand)" (*terraform.nodeExpandApplyableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.storage (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)" (*terraform.nodeExpandApplyableResource) needs module.cluster-init.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.540+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.541+0200 [DEBUG] pruning unused module.argocd.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:53:00.541+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.541+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:00.541+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/vault"] +2025-07-11T08:53:00.541+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.541+0200 [DEBUG] pruning unused module.minio.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.541+0200 [DEBUG] pruning unused module.tenant-365zon.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:00.541+0200 [DEBUG] pruning unused module.postgresql.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:53:00.541+0200 [DEBUG] pruning unused module.mongodb.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:53:00.541+0200 [DEBUG] pruning unused module.zitadel-db.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:00.541+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:00.541+0200 [DEBUG] pruning unused provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:00.541+0200 [DEBUG] pruning unused module.cluster-init.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:00.541+0200 [DEBUG] pruning unused module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.541+0200 [DEBUG] pruning unused module.rabbitmq.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.wait_on (expand)" references: [module.zitadel-db.output.installed (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.mongodb (expand)" references: [] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.namespace (expand)" references: [] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)" references: [] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_host (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.minio.var.displayOnHomepage (expand)" references: [] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.region (expand)" references: [] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_database (expand)" references: [] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.access_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_secret (expand)" references: [module.zitadel-argocd.output.client_secret (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand) module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.kubernetes_job.create-tenant (expand)" references: [module.zitadel-db.var.wait_on (expand) module.zitadel-db.var.enabled (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.namespace (expand) module.zitadel-db.var.host (expand) module.zitadel-db.var.root_username (expand) module.zitadel-db.var.root_password (expand) module.zitadel-db.var.root_database (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.name (expand) module.zitadel-db.random_password.tenant (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_server (expand)" references: [module.minio.output.minio_server (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.redis.var.namespace (expand)" references: [] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand)" references: [] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_auth (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.email (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.usernames (expand)" references: [] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)" references: [] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default" references: [module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close)" references: [] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (expand)" references: [] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (expand)" references: [] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.minio.var.mode (expand)" references: [] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.wait_on (expand)" references: [module.argocd.output.installed (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_bucket (expand)" references: [module.tenant-365zon.module.minio.output.bucket (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (close)" references: [] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)" references: [] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_secret_key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_password (expand)" references: [] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.password (expand)" references: [module.postgresql.random_password.postgresql_user_password (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T08:53:00.556+0200 [DEBUG] ReferenceTransformer: "module.minio.helm_release.minio (expand)" references: [module.minio.var.mode (expand) module.minio.var.replicas (expand) module.minio.var.replicas (expand) module.minio.var.storageSize (expand) module.minio.random_password.minio_access_key (expand) module.minio.random_password.minio_secret_key (expand) module.minio.var.namespace (expand) module.minio.local.service_uri (expand) module.minio.local.admin_service_uri (expand) module.minio.var.admin (expand) module.minio.var.mode (expand) module.minio.var.tls (expand) module.minio.var.ingressClass (expand) module.minio.var.displayOnHomepage (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_auth (expand)" references: [module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_config (expand)" references: [module.redis.var.k8s_config_yaml (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (close)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (close)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "local.bridge_dns (expand)" references: [local.tld (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "local.k8s_auth (expand)" references: [local.k8s_config (expand) local.k8s_config (expand) local.k8s_config (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.bucket (expand)" references: [module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand) module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]" references: [module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/local\"]" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (close)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.redis.random_password.redis (expand)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.name (expand)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_config (expand)" references: [module.mongodb.var.k8s_config_yaml (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.tld (expand)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_auth (expand)" references: [module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.service_uri (expand)" references: [module.rabbitmq.var.service_name (expand) module.rabbitmq.var.server_dns (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.redis (expand)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_secret.postgresql_auth (expand)" references: [module.postgresql.var.wait_on (expand) module.postgresql.var.enabled (expand) module.postgresql.random_password.postgresql_user_password (expand) module.postgresql.random_password.postgresql_root_password (expand) module.postgresql.kubernetes_namespace.postgresql (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.ingressClass (expand)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_auth (expand)" references: [module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.installed (expand)" references: [module.argocd.helm_release.argocd (expand) module.argocd.helm_release.argocd module.argocd.helm_release.argocd] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database (expand)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.output.installed (expand)" references: [module.cluster-init.module.longhorn.output.installed (expand) module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (expand)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.namespace (expand)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_host (expand)" references: [module.monitoring.local.k8s_config (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_auth (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.installed (expand)" references: [module.rabbitmq.helm_release.rabbitmq (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.scopes (expand)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "output.monitoring (expand)" references: [module.monitoring.output.access_instructions (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_host (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.kubernetes_secret.bridge-tls (expand)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_namespace.tenant (expand)" references: [module.tenant-365zon.var.wait_on (expand) module.tenant-365zon.local.name (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.enabled (expand)" references: [] +2025-07-11T08:53:00.557+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default" references: [module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.email (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.admin (expand)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.minio.local.service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.redis.output.installed (expand)" references: [module.redis.helm_release.redis (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand) module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_action.groups-claim" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "local.cluster_shortname (expand)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_config (expand)" references: [module.zitadel.var.k8s_config_yaml (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.access_instructions (expand)" references: [module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.random_password.grafana_admin_password (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_secret.zitadel (expand)" references: [module.zitadel.var.enabled (expand) module.zitadel.random_password.zitadel_masterkey (expand) module.zitadel.kubernetes_namespace.zitadel (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.host (expand)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_config (expand)" references: [module.rabbitmq.var.k8s_config_yaml (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand) module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0] module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.null_resource.health_check (expand)" references: [module.tenant-365zon.module.minio.var.wait_on (expand) module.tenant-365zon.module.minio.var.server (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.password (expand)" references: [module.zitadel-db.random_password.tenant (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.uri (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "local.tld (expand)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.local.argocd_uri (expand)" references: [module.zitadel-argocd.var.argocd_service_domain (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info" references: [module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim (expand) module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (expand)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (expand)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (expand)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.wait_on (expand)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.ingressClass (expand)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.argocd_service_domain (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.minio.output.secret_key (expand)" references: [module.minio.random_password.minio_secret_key (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_auth (expand)" references: [module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.mongodb (close)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.redis (close)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (close)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_secret_key (expand)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_root_password (expand)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_api_uri (expand)" references: [module.minio.output.minio_api_uri (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/aminueza/minio\"]" references: [var.minio_server var.region var.access_key var.secret_key] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.monitoring (close)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (close)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.external.processed_values (expand)" references: [module.argocd.local.service_uri (expand) module.argocd.var.server_dns (expand) module.argocd.local.grpc_service_uri (expand) module.argocd.var.redis_db_start_index (expand) module.argocd.var.redis_password (expand) module.argocd.var.oauth_uri (expand) module.argocd.var.oauth_issuer (expand) module.argocd.var.oauth_client_id (expand) module.argocd.var.oauth_client_secret (expand) module.argocd.var.oauth_redirect_uri (expand) module.argocd.var.tls (expand) module.argocd.var.ingressClass (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.server (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (close)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (close)" references: [] +2025-07-11T08:53:00.558+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.namespace (expand)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_auth (expand)" references: [module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.tenant-365zon.var.domain (expand) module.tenant-365zon.var.jwt_profile_file (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.wait_on (expand)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.minio.var.service_name (expand)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.username (expand)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.secret_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.external.processed_values" references: [module.argocd.local.service_uri (expand) module.argocd.var.server_dns (expand) module.argocd.local.grpc_service_uri (expand) module.argocd.var.redis_db_start_index (expand) module.argocd.var.redis_password (expand) module.argocd.var.oauth_uri (expand) module.argocd.var.oauth_issuer (expand) module.argocd.var.oauth_client_id (expand) module.argocd.var.oauth_client_secret (expand) module.argocd.var.oauth_redirect_uri (expand) module.argocd.var.tls (expand) module.argocd.var.ingressClass (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.mongodb.helm_release.mongodb (expand)" references: [module.mongodb.var.wait_on (expand) module.mongodb.kubernetes_secret.mongodb_auth (expand) module.mongodb.kubernetes_namespace.mongodb (expand) module.mongodb.var.usernames (expand) module.mongodb.var.databases (expand) module.mongodb.var.replicas (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "var.bucket" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.tls (expand)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0]" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (close)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.database (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.argocd (expand)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)" references: [module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand) module.zitadel-argocd.module.zitadel_project.var.owners (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.admin_password (expand)" references: [module.argocd.random_password.admin_password (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (close)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.minio.var.namespace (expand)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.databases (expand)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_config (expand)" references: [module.zitadel-db.var.k8s_config_yaml (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default" references: [module.zitadel-argocd.module.zitadel_project.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project.var.name (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.minio.local.admin_service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.admin_server_dns (expand) module.minio.var.admin_server_dns (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd (expand)" references: [module.argocd.var.wait_on (expand) module.argocd.kubernetes_secret.argocd-tls (expand) module.argocd.random_password.admin_password (expand) module.argocd.kubernetes_namespace.argocd (expand) module.argocd.data.external.processed_values (expand) module.argocd.data.external.processed_values module.argocd.data.external.processed_values] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)" references: [module.tenant-365zon.var.org_id (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_username (expand)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd" references: [module.argocd.var.wait_on (expand) module.argocd.kubernetes_secret.argocd-tls (expand) module.argocd.random_password.admin_password (expand) module.argocd.kubernetes_namespace.argocd (expand) module.argocd.data.external.processed_values (expand) module.argocd.data.external.processed_values module.argocd.data.external.processed_values] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "var.access_key" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.minio.var.replicas (expand)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_auth (expand)" references: [module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_host (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.argocd.random_password.admin_password (expand)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "output.minio-root-access-key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.cluster-init.module.longhorn.local.k8s_host (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_namespace.postgresql (expand)" references: [module.postgresql.var.enabled (expand) module.postgresql.var.namespace (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.postgresql (expand)" references: [] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.redis.helm_release.redis (expand)" references: [module.redis.var.wait_on (expand) module.redis.kubernetes_namespace.redis (expand) module.redis.var.architecture (expand) module.redis.var.architecture (validation)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_uri (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:53:00.559+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.service_name (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.owners (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand)" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.service_name (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (close)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (close)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (close)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_issuer (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_redirect_uri (expand)" references: [module.zitadel.output.server (expand) module.zitadel-argocd.output.logoutSuffix (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_host (expand)" references: [module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.monitoring.random_password.grafana_admin_password (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_password (expand)" references: [module.redis.output.password (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.minio.var.tls (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.output.installed (expand)" references: [module.cluster-init.module.longhorn.helm_release.longhorn (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.minio.output.access_key (expand)" references: [module.minio.random_password.minio_access_key (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.wait_on (expand)" references: [module.minio.output.installed (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.namespace (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.alertmanager_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.installed (expand)" references: [module.postgresql.helm_release.postgresql (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.postgresql.helm_release.postgresql (expand)" references: [module.postgresql.var.wait_on (expand) module.postgresql.kubernetes_secret.postgresql_auth (expand) module.postgresql.var.enabled (expand) module.postgresql.kubernetes_namespace.postgresql (expand) module.postgresql.var.username (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.minio.var.storageSize (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.postgresql (close)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "output.minio-root-secret-key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default" references: [module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (close)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_access_key (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "var.secret_key" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_host (expand)" references: [module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_server (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_action.groups-claim (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_config (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.minio.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_username (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.connection_string (expand)" references: [module.mongodb.random_password.mongodb_root_password (expand) module.mongodb.var.replicas (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "output.minio-secret-key (expand)" references: [module.tenant-365zon.output.minio_secret_key (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.helm_release.rabbitmq (expand)" references: [module.rabbitmq.random_password.password (expand) module.rabbitmq.var.wait_on (expand) module.rabbitmq.random_password.password (expand) module.rabbitmq.local.service_uri (expand) module.rabbitmq.var.admin (expand) module.rabbitmq.var.tls (expand) module.rabbitmq.var.ingressClass (expand) module.rabbitmq.var.replicas (expand) module.rabbitmq.var.namespace (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin (expand)" references: [module.zitadel.helm_release.zitadel (expand) module.zitadel.var.namespace (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_username (expand)" references: [] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "output.argocd-root-password (expand)" references: [module.argocd.output.admin_password (expand)] +2025-07-11T08:53:00.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn (expand)" references: [module.cluster-init.module.longhorn.var.wait_on (expand) module.cluster-init.module.longhorn.var.namespace (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.rabbitmq.local.k8s_host (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_replica_set_key (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_user_password (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.application_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand) module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.enabled (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.display_on_homepage (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)" references: [module.tenant-365zon.local.name (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.enabled (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.wait_on (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.random_password.tenant (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin_server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "local.k8s_config (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "local.node_count (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_config (expand)" references: [module.postgresql.var.k8s_config_yaml (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.prometheus_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.jwt_profile_file (expand)" references: [module.zitadel.local_file.zitadel_jwt_profile_file (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand) module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand) module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand)" references: [module.monitoring.var.remote_write_username (expand) module.monitoring.var.remote_write_password (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-bootstrap.var.domain (expand) module.zitadel-bootstrap.var.jwt_profile_file (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.ingressClass (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.redis.output.password (expand)" references: [module.redis.random_password.redis (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.user_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.random_password.password (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_username (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default" references: [module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel (close)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "var.minio_server" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.replicas (expand)" references: [local.node_count (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand)" references: [] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_admin_uri (expand)" references: [module.minio.local.admin_service_uri (expand)] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:53:00.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_host (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.wait_on (expand)" references: [module.cluster-init.var.wait_on (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_password (expand)" references: [module.zitadel-db.output.password (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0] module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.wait_on (expand)" references: [module.zitadel-argocd.output.installed (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_config (expand)" references: [module.zitadel-bootstrap.var.k8s_config_yaml (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.redis_db_next_start_index (expand)" references: [module.argocd.var.redis_db_start_index (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_secret_key (expand)" references: [module.tenant-365zon.module.minio.output.secret_key (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (expand)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "output.rabbitmq-connection-string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/null\"]" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (close)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "var.vault_token" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.minio.var.ingressClass (expand)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_host (expand)" references: [module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "output.mongodb-connection-string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel.random_password.zitadel_masterkey (expand)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.grpc_service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_read_url (expand)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.namespace (expand)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_auth (expand)" references: [module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.minio (close)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-argocd.var.domain (expand) module.zitadel-argocd.var.jwt_profile_file (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (expand)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (close)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)" references: [module.tenant-365zon.var.user_id (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_host (expand)" references: [module.argocd.local.k8s_config (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack (expand)" references: [module.monitoring.var.wait_on (expand) module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.var.remote_write_url (expand) module.monitoring.var.remote_read_url (expand) module.monitoring.random_password.grafana_admin_password (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "var.endpoints" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.namespace (expand)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.service_name (expand)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_config (expand)" references: [module.monitoring.var.k8s_config_yaml (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.installed (expand)" references: [module.zitadel.helm_release.zitadel (expand) module.zitadel.local_file.zitadel_jwt_profile_file (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.logoutSuffix (expand)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.namespace (expand)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand)" references: [] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_api_uri (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default" references: [module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_host (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:53:00.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.idp_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.minio (expand)" references: [] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.rabbitmq_connection_string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)" references: [module.tenant-365zon.module.minio.null_resource.health_check (expand) module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.replicas (expand)" references: [] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand)" references: [] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.org_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel (expand)" references: [] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_host (expand)" references: [module.postgresql.local.k8s_config (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_secret_key (expand)" references: [module.minio.random_password.minio_secret_key (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (close)" references: [] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_namespace.redis (expand)" references: [module.redis.var.namespace (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.minio.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.minio.local.k8s_host (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (expand)" references: [] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.server (expand)" references: [module.tenant-365zon.var.minio_server (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand) module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)" references: [module.tenant-365zon.module.minio.null_resource.health_check (expand) module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.ingressClass (expand)" references: [] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_id (expand)" references: [module.zitadel-argocd.output.client_id (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.minio.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.minio.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.server_dns (expand)" references: [] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_root_password (expand)" references: [] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_secret.redis (expand)" references: [module.redis.random_password.redis (expand) module.redis.kubernetes_namespace.redis (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_access_key (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.username (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0] module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (close)" references: [] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_config (expand)" references: [module.minio.var.k8s_config_yaml (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "var.vault_addr" references: [] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_auth (expand)" references: [module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_access_key (expand)" references: [module.minio.random_password.minio_access_key (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)] +2025-07-11T08:53:00.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_namespace.zitadel (expand)" references: [module.zitadel.var.enabled (expand) module.zitadel.var.namespace (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "var.region" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)" references: [module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_host (expand)" references: [module.mongodb.local.k8s_config (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.service_uri (expand)" references: [module.zitadel.var.service_name (expand) module.zitadel.var.server_dns (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "data.minio_s3_object.k8s_yaml (expand)" references: [var.bucket] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.job_name (expand)" references: [module.zitadel-db.var.enabled (expand) module.zitadel-db.kubernetes_job.create-tenant (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand) module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_host (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.secret_key (expand)" references: [module.tenant-365zon.var.minio_secret_key (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_host (expand)" references: [module.zitadel.local.k8s_config (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.connection_string (expand)" references: [module.rabbitmq.random_password.password (expand) module.rabbitmq.var.namespace (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.admin_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.provider[\"registry.terraform.io/aminueza/minio\"]" references: [module.tenant-365zon.module.minio.var.access_key (expand) module.tenant-365zon.module.minio.var.secret_key (expand) module.tenant-365zon.module.minio.var.server (expand) module.tenant-365zon.module.minio.var.region (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (close)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.service_uri (expand)" references: [module.monitoring.var.service_name (expand) module.monitoring.var.server_dns (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand) module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (close)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.redis.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_host (expand)" references: [module.redis.local.k8s_config (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.grafana_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (close)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.service_name (expand)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_access_key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_url (expand)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.enabled (expand)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/external\"]" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (close)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (expand)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.namespace (expand)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_host (expand)" references: [module.minio.local.k8s_config (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack" references: [module.monitoring.var.wait_on (expand) module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.var.remote_write_url (expand) module.monitoring.var.remote_read_url (expand) module.monitoring.random_password.grafana_admin_password (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (expand)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.name (expand)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.name (expand)" references: [module.zitadel-argocd.var.name (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.argocd (close)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.monitoring (expand)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring (expand)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (close)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (close)" references: [] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:53:00.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (expand)" references: [] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (close)" references: [] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_db_start_index (expand)" references: [] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)" references: [] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "local.cluster_dns (expand)" references: [local.cluster_shortname (expand) local.tld (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)" references: [] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.access_key (expand)" references: [module.tenant-365zon.var.minio_access_key (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_namespace.mongodb (expand)" references: [module.mongodb.var.namespace (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings (expand)" references: [module.tenant-365zon.var.mongodb_connection_string (expand) module.tenant-365zon.var.rabbitmq_connection_string (expand) module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_secret.mongodb_auth (expand)" references: [module.mongodb.var.wait_on (expand) module.mongodb.random_password.mongodb_root_password (expand) module.mongodb.random_password.mongodb_replica_set_key (expand) module.mongodb.kubernetes_namespace.mongodb (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)" references: [module.zitadel-bootstrap.var.domain (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_secret.argocd-tls (expand)" references: [module.argocd.data.kubernetes_secret.bridge-tls (expand) module.argocd.data.kubernetes_secret.bridge-tls (expand) module.argocd.kubernetes_namespace.argocd (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (expand)" references: [] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.wait_on (expand)" references: [module.postgresql.output.installed (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_auth (expand)" references: [module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.redis.var.wait_on (expand)" references: [] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_auth (expand)" references: [module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand)" references: [] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.name (expand)" references: [] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_auth (expand)" references: [module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_config (expand)" references: [module.argocd.var.k8s_config_yaml (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (expand)" references: [] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.mongodb_connection_string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.storage (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand) module.tenant-365zon.module.minio.output.secret_key (expand) module.tenant-365zon.var.minio_api_uri (expand) module.tenant-365zon.module.minio.output.bucket (expand) module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file (expand)" references: [module.zitadel.data.kubernetes_secret.zitadel_admin (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "local.k8s_host (expand)" references: [local.k8s_config (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "local.k8s_config_yaml (expand)" references: [] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_host (expand)" references: [module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.installed (expand)" references: [module.mongodb.helm_release.mongodb (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)" references: [] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.minio.output.installed (expand)" references: [module.minio.helm_release.minio (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.installed (expand)" references: [module.zitadel-db.kubernetes_job.create-tenant (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "output.minio-access-key (expand)" references: [module.tenant-365zon.output.minio_access_key (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin (expand)" references: [] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (validation)" references: [] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_config (expand)" references: [module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (expand)" references: [] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_namespace.argocd (expand)" references: [module.argocd.var.namespace (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel.helm_release.zitadel (expand)" references: [module.zitadel.var.wait_on (expand) module.zitadel.kubernetes_secret.zitadel (expand) module.zitadel.var.enabled (expand) module.zitadel.kubernetes_namespace.zitadel (expand) module.zitadel.local.service_uri (expand) module.zitadel.var.database (expand) module.zitadel.var.database_username (expand) module.zitadel.var.database_password (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.database_root_username (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.display_on_homepage (expand) module.zitadel.var.ingressClass (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:53:00.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand)" references: [] +2025-07-11T08:53:00.566+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand)" references: [] +2025-07-11T08:53:00.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.name (expand)" references: [] +2025-07-11T08:53:00.566+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)" references: [module.zitadel-argocd.module.zitadel_project.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project.var.name (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:53:00.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:53:00.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_config (expand)" references: [module.tenant-365zon.var.k8s_config_yaml (expand)] +2025-07-11T08:53:00.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)] +2025-07-11T08:53:00.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)] +2025-07-11T08:53:00.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:53:00.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:53:00.566+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.root_password (expand)" references: [module.postgresql.random_password.postgresql_root_password (expand)] +2025-07-11T08:53:00.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand)] +2025-07-11T08:53:00.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)" references: [] +2025-07-11T08:53:00.566+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:53:00.566+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)" references: [] +2025-07-11T08:53:00.566+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.email (expand)" references: [] +2025-07-11T08:53:00.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)] +2025-07-11T08:53:00.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand)] +2025-07-11T08:53:00.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:53:00.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:53:00.566+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.tls (expand)" references: [] +2025-07-11T08:53:00.689+0200 [DEBUG] command: asking for input: "\nDo you want to perform these actions?" +2025-07-11T08:53:03.952+0200 [INFO] backend/local: apply calling Apply +2025-07-11T08:53:03.952+0200 [DEBUG] Building and walking apply graph for NormalMode plan +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default", instance module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default", instance module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1] +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default", instance module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0] +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3] +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.zitadel_action.groups-claim", instance module.zitadel-argocd.zitadel_action.groups-claim +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.monitoring.helm_release.kube_prometheus_stack", instance module.monitoring.helm_release.kube_prometheus_stack +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0] +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0] +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.argocd.data.external.processed_values", instance module.argocd.data.external.processed_values +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0] +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5] +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default", instance module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project.zitadel_project.default", instance module.zitadel-argocd.module.zitadel_project.zitadel_project.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2] +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info", instance module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default", instance module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0]", instance module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0] +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0] +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0] +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default", instance module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.argocd.helm_release.argocd", instance module.argocd.helm_release.argocd +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1] +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default", instance module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0] +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6] +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4] +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token", instance module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]", instance module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0] +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7] +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:53:03.959+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]", instance module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0] +2025-07-11T08:53:03.964+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/null"], implied first by module.tenant-365zon.module.minio.null_resource.health_check (expand) +2025-07-11T08:53:03.965+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/zitadel/zitadel"], implied first by module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:53:03.965+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/random"], implied first by module.monitoring.random_password.grafana_admin_password (expand) +2025-07-11T08:53:03.965+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/external"], implied first by module.argocd.data.external.processed_values +2025-07-11T08:53:03.965+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/local"], implied first by module.zitadel.local_file.zitadel_jwt_profile_file (expand) +2025-07-11T08:53:03.966+0200 [DEBUG] ProviderTransformer: "module.postgresql.helm_release.postgresql (expand)" (*terraform.nodeExpandApplyableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:03.966+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.966+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.helm_release.rabbitmq (expand)" (*terraform.nodeExpandApplyableResource) needs module.rabbitmq.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:03.966+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_user_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.argocd.data.external.processed_values (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/external"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_root_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.argocd.helm_release.argocd" (*terraform.NodeApplyableResourceInstance) needs module.argocd.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_root_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_secret.mongodb_auth (expand)" (*terraform.nodeExpandApplyableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_action.groups-claim" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.mongodb.helm_release.mongodb (expand)" (*terraform.nodeExpandApplyableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_secret.zitadel (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_replica_set_key (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.monitoring.helm_release.kube_prometheus_stack (expand)" (*terraform.nodeExpandApplyableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.random_password.tenant (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.monitoring.random_password.grafana_admin_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand)" (*terraform.nodeExpandApplyableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.redis.helm_release.redis (expand)" (*terraform.nodeExpandApplyableResource) needs module.redis.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.monitoring.helm_release.kube_prometheus_stack" (*terraform.NodeApplyableResourceInstance) needs module.monitoring.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.argocd.data.external.processed_values" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/hashicorp/external"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_namespace.mongodb (expand)" (*terraform.nodeExpandApplyableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.minio.helm_release.minio (expand)" (*terraform.nodeExpandApplyableResource) needs module.minio.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_namespace.postgresql (expand)" (*terraform.nodeExpandApplyableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.null_resource.health_check (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/null"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:53:03.967+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.zitadel.helm_release.zitadel (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.zitadel.random_password.zitadel_masterkey (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.argocd.helm_release.argocd (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.storage (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_namespace.argocd (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_action.groups-claim (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "data.minio_s3_object.k8s_yaml (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_secret.redis (expand)" (*terraform.nodeExpandApplyableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.redis.random_password.redis (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.kubernetes_job.create-tenant (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-db.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_secret.postgresql_auth (expand)" (*terraform.nodeExpandApplyableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.random_password.password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)" (*terraform.nodeExpandApplyableResource) needs module.cluster-init.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_namespace.monitoring (expand)" (*terraform.nodeExpandApplyableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.argocd.random_password.admin_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_namespace.zitadel (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_access_key (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.968+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_secret.argocd-tls (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn (expand)" (*terraform.nodeExpandApplyableResource) needs module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/local"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_secret_key (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.argocd.data.kubernetes_secret.bridge-tls (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_namespace.tenant (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_namespace.redis (expand)" (*terraform.nodeExpandApplyableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_namespace.monitoring" (*terraform.NodeApplyableResourceInstance) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.969+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.971+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:03.971+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/vault"] +2025-07-11T08:53:03.971+0200 [DEBUG] pruning unused module.postgresql.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:53:03.971+0200 [DEBUG] pruning unused module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.971+0200 [DEBUG] pruning unused module.zitadel-db.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:03.971+0200 [DEBUG] pruning unused provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:53:03.971+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.971+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.971+0200 [DEBUG] pruning unused module.mongodb.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:53:03.971+0200 [DEBUG] pruning unused module.argocd.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:53:03.972+0200 [DEBUG] pruning unused module.tenant-365zon.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:03.972+0200 [DEBUG] pruning unused module.cluster-init.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:03.972+0200 [DEBUG] pruning unused module.minio.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.972+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:53:03.972+0200 [DEBUG] pruning unused module.rabbitmq.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:53:03.982+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:53:03.982+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:53:03.982+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:53:03.982+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (close)" references: [] +2025-07-11T08:53:03.982+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "local.cluster_dns (expand)" references: [local.cluster_shortname (expand) local.tld (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand) module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_root_password (expand)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.wait_on (expand)" references: [module.postgresql.output.installed (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default" references: [module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default" references: [module.zitadel-argocd.module.zitadel_project.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand) module.zitadel-argocd.module.zitadel_project.var.name (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.minio.var.namespace (expand)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_password (expand)" references: [module.zitadel-db.output.password (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.scopes (expand)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_secret.redis (expand)" references: [module.redis.random_password.redis (expand) module.redis.kubernetes_namespace.redis (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.service_name (expand)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (close)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (expand)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.replicas (expand)" references: [local.node_count (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_host (expand)" references: [module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_host (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (expand)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_redirect_uri (expand)" references: [module.zitadel.output.server (expand) module.zitadel-argocd.output.logoutSuffix (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_config (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_config (expand)" references: [module.postgresql.var.k8s_config_yaml (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/external\"]" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.postgresql (expand)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.mongodb (expand)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel.random_password.zitadel_masterkey (expand)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.redis.var.wait_on (expand)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "local.k8s_host (expand)" references: [local.k8s_config (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.installed (expand)" references: [module.mongodb.helm_release.mongodb (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.minio.local.admin_service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.admin_server_dns (expand) module.minio.var.admin_server_dns (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.enabled (expand)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (close)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.email (expand) module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.wait_on (expand)" references: [module.cluster-init.var.wait_on (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.display_on_homepage (expand)" references: [] +2025-07-11T08:53:03.983+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_username (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.name (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_namespace.redis (expand)" references: [module.redis.var.namespace (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.service_name (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.username (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info" references: [module.zitadel-argocd.zitadel_action.groups-claim (expand) module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.minio.var.replicas (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/null\"]" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.connection_string (expand)" references: [module.rabbitmq.random_password.password (expand) module.rabbitmq.var.namespace (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.minio.var.displayOnHomepage (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.mongodb_connection_string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_config (expand)" references: [module.monitoring.var.k8s_config_yaml (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.root_password (expand)" references: [module.postgresql.random_password.postgresql_root_password (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.ingressClass (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand) module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-argocd.var.jwt_profile_file (expand) module.zitadel-argocd.var.domain (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.name (expand)" references: [module.zitadel-argocd.var.name (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.namespace (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin (expand)" references: [module.zitadel.helm_release.zitadel (expand) module.zitadel.var.namespace (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.wait_on (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_config (expand)" references: [module.redis.var.k8s_config_yaml (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.username (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_config (expand)" references: [module.minio.var.k8s_config_yaml (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_auth (expand)" references: [module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.access_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.replicas (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "output.minio-access-key (expand)" references: [module.tenant-365zon.output.minio_access_key (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file (expand)" references: [module.zitadel.data.kubernetes_secret.zitadel_admin (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_id (expand)" references: [module.zitadel-argocd.output.client_id (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring" references: [] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_namespace.mongodb (expand)" references: [module.mongodb.var.namespace (expand)] +2025-07-11T08:53:03.984+0200 [DEBUG] ReferenceTransformer: "module.postgresql.helm_release.postgresql (expand)" references: [module.postgresql.var.wait_on (expand) module.postgresql.kubernetes_secret.postgresql_auth (expand) module.postgresql.var.enabled (expand) module.postgresql.kubernetes_namespace.postgresql (expand) module.postgresql.var.username (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand)" references: [] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)" references: [module.zitadel-bootstrap.var.domain (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0]" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_secret (expand)" references: [module.zitadel-argocd.output.client_secret (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_host (expand)" references: [module.postgresql.local.k8s_config (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.minio.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.minio.local.k8s_host (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.namespace (expand)" references: [] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.server_dns (expand)" references: [] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel-db.local.k8s_host (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.monitoring (expand)" references: [] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.postgresql (close)" references: [] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (close)" references: [] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_access_key (expand)" references: [] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_config (expand)" references: [module.tenant-365zon.var.k8s_config_yaml (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand)" references: [] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand)" references: [module.monitoring.var.remote_write_username (expand) module.monitoring.var.remote_write_password (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_auth (expand)" references: [module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0] module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "local.cluster_shortname (expand)" references: [] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "local.k8s_auth (expand)" references: [local.k8s_config (expand) local.k8s_config (expand) local.k8s_config (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_namespace.tenant (expand)" references: [module.tenant-365zon.var.wait_on (expand) module.tenant-365zon.local.name (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_secret.postgresql_auth (expand)" references: [module.postgresql.var.wait_on (expand) module.postgresql.var.enabled (expand) module.postgresql.random_password.postgresql_user_password (expand) module.postgresql.random_password.postgresql_root_password (expand) module.postgresql.kubernetes_namespace.postgresql (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.namespace (expand)" references: [] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.service_uri (expand)" references: [module.zitadel.var.service_name (expand) module.zitadel.var.server_dns (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_host (expand)" references: [module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.minio.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)" references: [] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.service_uri (expand)" references: [module.monitoring.var.service_name (expand) module.monitoring.var.server_dns (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "var.access_key" references: [] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_db_start_index (expand)" references: [] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.namespace (expand)" references: [] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.job_name (expand)" references: [module.zitadel-db.var.enabled (expand) module.zitadel-db.kubernetes_job.create-tenant (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_auth (expand)" references: [module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.idp_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.redis_db_next_start_index (expand)" references: [module.argocd.var.redis_db_start_index (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:53:03.985+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.redis.helm_release.redis (expand)" references: [module.redis.var.wait_on (expand) module.redis.kubernetes_namespace.redis (expand) module.redis.var.architecture (expand) module.redis.var.architecture (validation)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.minio.helm_release.minio (expand)" references: [module.minio.var.mode (expand) module.minio.var.replicas (expand) module.minio.var.replicas (expand) module.minio.var.storageSize (expand) module.minio.random_password.minio_access_key (expand) module.minio.random_password.minio_secret_key (expand) module.minio.var.namespace (expand) module.minio.local.service_uri (expand) module.minio.local.admin_service_uri (expand) module.minio.var.admin (expand) module.minio.var.mode (expand) module.minio.var.tls (expand) module.minio.var.ingressClass (expand) module.minio.var.displayOnHomepage (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.argocd_service_domain (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)" references: [] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)" references: [] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)" references: [module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand) module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_bucket (expand)" references: [module.tenant-365zon.module.minio.output.bucket (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.access_instructions (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.random_password.grafana_admin_password (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_host (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_secret.argocd-tls (expand)" references: [module.argocd.data.kubernetes_secret.bridge-tls (expand) module.argocd.data.kubernetes_secret.bridge-tls (expand) module.argocd.kubernetes_namespace.argocd (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.minio.output.secret_key (expand)" references: [module.minio.random_password.minio_secret_key (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default" references: [module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (expand)" references: [] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings (expand)" references: [module.tenant-365zon.var.mongodb_connection_string (expand) module.tenant-365zon.var.rabbitmq_connection_string (expand) module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand)" references: [] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd" references: [module.argocd.var.wait_on (expand) module.argocd.kubernetes_secret.argocd-tls (expand) module.argocd.random_password.admin_password (expand) module.argocd.kubernetes_namespace.argocd (expand) module.argocd.data.external.processed_values (expand) module.argocd.data.external.processed_values module.argocd.data.external.processed_values] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (close)" references: [] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.grpc_service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close)" references: [] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_secret_key (expand)" references: [] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (expand)" references: [] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand) module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.installed (expand)" references: [module.argocd.helm_release.argocd module.argocd.helm_release.argocd module.argocd.helm_release.argocd (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.prometheus_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.minio (close)" references: [] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_username (expand)" references: [] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_auth (expand)" references: [module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.application_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand) module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel (expand)" references: [] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.wait_on (expand)" references: [] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (expand)" references: [] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_auth (expand)" references: [module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default" references: [module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.email (expand) module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (close)" references: [] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_namespace.argocd (expand)" references: [module.argocd.var.namespace (expand)] +2025-07-11T08:53:03.986+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_user_password (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin_server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.minio.var.tls (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_access_key (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.password (expand)" references: [module.zitadel-db.random_password.tenant (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand)" references: [module.zitadel-argocd.zitadel_action.groups-claim (expand) module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "var.vault_addr" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.namespace (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (validation)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "var.secret_key" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_host (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.output.installed (expand)" references: [module.cluster-init.module.longhorn.output.installed (expand) module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.name (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.uri (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.region (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.wait_on (expand)" references: [module.argocd.output.installed (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.user_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.tls (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.jwt_profile_file (expand)" references: [module.zitadel.local_file.zitadel_jwt_profile_file (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "output.monitoring (expand)" references: [module.monitoring.output.access_instructions (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (close)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.local.argocd_uri (expand)" references: [module.zitadel-argocd.var.argocd_service_domain (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_host (expand)" references: [module.argocd.local.k8s_config (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_auth (expand)" references: [module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_host (expand)" references: [module.monitoring.local.k8s_config (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_auth (expand)" references: [module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.argocd (close)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.external.processed_values (expand)" references: [module.argocd.local.service_uri (expand) module.argocd.var.server_dns (expand) module.argocd.local.grpc_service_uri (expand) module.argocd.var.redis_db_start_index (expand) module.argocd.var.redis_password (expand) module.argocd.var.oauth_uri (expand) module.argocd.var.oauth_issuer (expand) module.argocd.var.oauth_client_id (expand) module.argocd.var.oauth_client_secret (expand) module.argocd.var.oauth_redirect_uri (expand) module.argocd.var.tls (expand) module.argocd.var.ingressClass (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.enabled (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd (expand)" references: [module.argocd.var.wait_on (expand) module.argocd.kubernetes_secret.argocd-tls (expand) module.argocd.random_password.admin_password (expand) module.argocd.data.external.processed_values (expand) module.argocd.data.external.processed_values module.argocd.data.external.processed_values module.argocd.kubernetes_namespace.argocd (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "local.k8s_config (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.minio.var.mode (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_secret_key (expand)" references: [module.minio.random_password.minio_secret_key (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.argocd (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.minio.local.service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (close)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (close)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:53:03.987+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_host (expand)" references: [module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token" references: [module.zitadel-argocd.zitadel_action.groups-claim (expand) module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_password (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.org_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.database (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.password (expand)" references: [module.postgresql.random_password.postgresql_user_password (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "output.minio-root-access-key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.usernames (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.wait_on (expand)" references: [module.zitadel-db.output.installed (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "local.bridge_dns (expand)" references: [local.tld (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_admin_uri (expand)" references: [module.minio.local.admin_service_uri (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (close)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.random_password.tenant (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_root_password (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.namespace (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (close)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn (expand)" references: [module.cluster-init.module.longhorn.var.wait_on (expand) module.cluster-init.module.longhorn.var.namespace (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.name (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.minio.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_username (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (close)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.random_password.password (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_host (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_config (expand)" references: [module.argocd.var.k8s_config_yaml (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_config (expand)" references: [module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.alertmanager_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "data.minio_s3_object.k8s_yaml (expand)" references: [var.bucket] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand) module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.server (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_api_uri (expand)" references: [module.minio.output.minio_api_uri (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.admin_password (expand)" references: [module.argocd.random_password.admin_password (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (close)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "var.bucket" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_host (expand)" references: [module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.null_resource.health_check (expand)" references: [module.tenant-365zon.module.minio.var.wait_on (expand) module.tenant-365zon.module.minio.var.server (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_issuer (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_access_key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.ingressClass (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.access_key (expand)" references: [module.tenant-365zon.var.minio_access_key (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.enabled (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_config (expand)" references: [module.mongodb.var.k8s_config_yaml (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.wait_on (expand)" references: [module.zitadel-argocd.output.installed (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_database (expand)" references: [] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0] module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T08:53:03.988+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.secret_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "output.argocd-root-password (expand)" references: [module.argocd.output.admin_password (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]" references: [module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand) module.zitadel-argocd.module.zitadel_project.var.owners (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/aminueza/minio\"]" references: [var.region var.access_key var.secret_key var.minio_server] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (close)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (close)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.server (expand)" references: [module.tenant-365zon.var.minio_server (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.provider[\"registry.terraform.io/aminueza/minio\"]" references: [module.tenant-365zon.module.minio.var.region (expand) module.tenant-365zon.module.minio.var.access_key (expand) module.tenant-365zon.module.minio.var.secret_key (expand) module.tenant-365zon.module.minio.var.server (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (close)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.kubernetes_job.create-tenant (expand)" references: [module.zitadel-db.var.wait_on (expand) module.zitadel-db.var.enabled (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.namespace (expand) module.zitadel-db.var.host (expand) module.zitadel-db.var.root_username (expand) module.zitadel-db.var.root_password (expand) module.zitadel-db.var.root_database (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.name (expand) module.zitadel-db.random_password.tenant (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "var.minio_server" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_host (expand)" references: [module.zitadel.local.k8s_config (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.minio.output.access_key (expand)" references: [module.minio.random_password.minio_access_key (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_secret_key (expand)" references: [module.tenant-365zon.module.minio.output.secret_key (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.mongodb.helm_release.mongodb (expand)" references: [module.mongodb.var.wait_on (expand) module.mongodb.kubernetes_secret.mongodb_auth (expand) module.mongodb.kubernetes_namespace.mongodb (expand) module.mongodb.var.usernames (expand) module.mongodb.var.databases (expand) module.mongodb.var.replicas (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.monitoring.random_password.grafana_admin_password (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_action.groups-claim (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_auth (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand) module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_api_uri (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_server (expand)" references: [module.minio.output.minio_server (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.ingressClass (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.installed (expand)" references: [module.rabbitmq.helm_release.rabbitmq (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default" references: [module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.redis (close)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.minio.var.storageSize (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.monitoring (close)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.helm_release.rabbitmq (expand)" references: [module.rabbitmq.random_password.password (expand) module.rabbitmq.var.wait_on (expand) module.rabbitmq.var.replicas (expand) module.rabbitmq.random_password.password (expand) module.rabbitmq.var.namespace (expand) module.rabbitmq.local.service_uri (expand) module.rabbitmq.var.admin (expand) module.rabbitmq.var.tls (expand) module.rabbitmq.var.ingressClass (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_uri (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)" references: [module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.service_name (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_url (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.service_name (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_access_key (expand)" references: [module.minio.random_password.minio_access_key (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand)" references: [] +2025-07-11T08:53:03.989+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "local.node_count (expand)" references: [] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_host (expand)" references: [module.minio.local.k8s_config (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.minio.output.installed (expand)" references: [module.minio.helm_release.minio (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)" references: [module.tenant-365zon.var.org_id (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_auth (expand)" references: [module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_auth (expand)" references: [module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.connection_string (expand)" references: [module.mongodb.random_password.mongodb_root_password (expand) module.mongodb.var.replicas (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)" references: [] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_config (expand)" references: [module.zitadel-bootstrap.var.k8s_config_yaml (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.bucket (expand)" references: [module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand) module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default" references: [module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.tls (expand)" references: [] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.zitadel (close)" references: [] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (close)" references: [] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_secret.mongodb_auth (expand)" references: [module.mongodb.var.wait_on (expand) module.mongodb.random_password.mongodb_root_password (expand) module.mongodb.random_password.mongodb_replica_set_key (expand) module.mongodb.kubernetes_namespace.mongodb (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.minio.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_secret_key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.redis.output.password (expand)" references: [module.redis.random_password.redis (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "output.rabbitmq-connection-string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (close)" references: [] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.email (expand)" references: [] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.host (expand)" references: [] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.admin (expand)" references: [] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.namespace (expand)" references: [] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.grafana_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (close)" references: [] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand)" references: [] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)" references: [] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_server (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_action.groups-claim" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack" references: [module.monitoring.var.wait_on (expand) module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.var.remote_write_url (expand) module.monitoring.var.remote_read_url (expand) module.monitoring.random_password.grafana_admin_password (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.tenant-365zon.var.domain (expand) module.tenant-365zon.var.jwt_profile_file (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (expand)" references: [] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "local.tld (expand)" references: [] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand) module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.logoutSuffix (expand)" references: [] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: [] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "var.vault_token" references: [] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand) module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand) module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "output.mongodb-connection-string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)] +2025-07-11T08:53:03.990+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_namespace.postgresql (expand)" references: [module.postgresql.var.enabled (expand) module.postgresql.var.namespace (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.output.installed (expand)" references: [module.cluster-init.module.longhorn.helm_release.longhorn (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)" references: [module.zitadel-argocd.zitadel_action.groups-claim (expand) module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.admin_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_host (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-bootstrap.var.domain (expand) module.zitadel-bootstrap.var.jwt_profile_file (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_replica_set_key (expand)" references: [] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)" references: [] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.installed (expand)" references: [module.postgresql.helm_release.postgresql (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.redis.output.installed (expand)" references: [module.redis.helm_release.redis (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_password (expand)" references: [module.redis.output.password (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "output.minio-root-secret-key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack (expand)" references: [module.monitoring.var.wait_on (expand) module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.var.remote_write_url (expand) module.monitoring.var.remote_read_url (expand) module.monitoring.random_password.grafana_admin_password (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.mongodb (close)" references: [] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_namespace.zitadel (expand)" references: [module.zitadel.var.enabled (expand) module.zitadel.var.namespace (expand)] +2025-07-11T08:53:03.991+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close)" references: [] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)" references: [module.tenant-365zon.local.name (expand)] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.name (expand)" references: [] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "local.k8s_config_yaml (expand)" references: [] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.installed (expand)" references: [module.zitadel-db.kubernetes_job.create-tenant (expand)] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.cluster-init.module.longhorn.local.k8s_host (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand)] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.kubernetes_secret.bridge-tls (expand)" references: [] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_auth (expand)" references: [module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.minio (expand)" references: [] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (expand)" references: [] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand)" references: [] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.enabled (expand)" references: [] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "output.minio-secret-key (expand)" references: [module.tenant-365zon.output.minio_secret_key (expand)] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (close)" references: [] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/local\"]" references: [] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (close)" references: [] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)" references: [module.tenant-365zon.module.minio.null_resource.health_check (expand) module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:53:03.992+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.external.processed_values" references: [module.argocd.local.service_uri (expand) module.argocd.var.server_dns (expand) module.argocd.local.grpc_service_uri (expand) module.argocd.var.redis_db_start_index (expand) module.argocd.var.redis_password (expand) module.argocd.var.oauth_uri (expand) module.argocd.var.oauth_issuer (expand) module.argocd.var.oauth_client_id (expand) module.argocd.var.oauth_client_secret (expand) module.argocd.var.oauth_redirect_uri (expand) module.argocd.var.tls (expand) module.argocd.var.ingressClass (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin (expand)" references: [] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "var.region" references: [] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.rabbitmq_connection_string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_config (expand)" references: [module.zitadel.var.k8s_config_yaml (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_auth (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.redis.random_password.redis (expand)" references: [] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.storage (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand) module.tenant-365zon.module.minio.output.secret_key (expand) module.tenant-365zon.var.minio_api_uri (expand) module.tenant-365zon.module.minio.output.bucket (expand) module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)" references: [module.tenant-365zon.module.minio.null_resource.health_check (expand) module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.secret_key (expand)" references: [module.tenant-365zon.var.minio_secret_key (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.argocd.random_password.admin_password (expand)" references: [] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.ingressClass (expand)" references: [] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_auth (expand)" references: [module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.service_uri (expand)" references: [module.rabbitmq.var.service_name (expand) module.rabbitmq.var.server_dns (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)" references: [module.tenant-365zon.var.user_id (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.wait_on (expand)" references: [module.minio.output.installed (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_host (expand)" references: [module.redis.local.k8s_config (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "var.endpoints" references: [] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.tld (expand)" references: [] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (close)" references: [] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (expand)" references: [] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_config (expand)" references: [module.zitadel-db.var.k8s_config_yaml (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (close)" references: [] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.redis.var.namespace (expand)" references: [] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand)" references: [] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.minio.var.ingressClass (expand)" references: [] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.databases (expand)" references: [] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:53:03.993+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.installed (expand)" references: [module.zitadel.helm_release.zitadel (expand) module.zitadel.local_file.zitadel_jwt_profile_file (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.owners (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.wait_on (expand)" references: [] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_read_url (expand)" references: [] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_host (expand)" references: [module.mongodb.local.k8s_config (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_config (expand)" references: [module.rabbitmq.var.k8s_config_yaml (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (expand)" references: [] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.minio.var.service_name (expand)" references: [] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.rabbitmq.local.k8s_host (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (expand)" references: [] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (close)" references: [] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_secret.zitadel (expand)" references: [module.zitadel.var.enabled (expand) module.zitadel.random_password.zitadel_masterkey (expand) module.zitadel.kubernetes_namespace.zitadel (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.zitadel.helm_release.zitadel (expand)" references: [module.zitadel.var.wait_on (expand) module.zitadel.kubernetes_secret.zitadel (expand) module.zitadel.var.enabled (expand) module.zitadel.kubernetes_namespace.zitadel (expand) module.zitadel.local.service_uri (expand) module.zitadel.var.database (expand) module.zitadel.var.database_username (expand) module.zitadel.var.database_password (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.database_root_username (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.display_on_homepage (expand) module.zitadel.var.ingressClass (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)" references: [] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_username (expand)" references: [] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)" references: [] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.namespace (expand)" references: [] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)" references: [module.zitadel-argocd.module.zitadel_project.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project.var.name (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.redis.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.redis (expand)" references: [] +2025-07-11T08:53:03.994+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (close)" references: [] +2025-07-11T08:53:04.092+0200 [DEBUG] Starting graph walk: walkApply +2025-07-11T08:53:04.093+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.093+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.099+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5"] +2025-07-11T08:53:04.100+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 pid=969631 +2025-07-11T08:53:04.100+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 +2025-07-11T08:53:04.102+0200 [INFO] provider.terraform-provider-random_v3.7.2_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.102+0200" +2025-07-11T08:53:04.114+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:53:04.114+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: plugin address: address=/tmp/plugin3949318758 network=unix timestamp="2025-07-11T08:53:04.114+0200" +2025-07-11T08:53:04.122+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.122+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.126+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5"] +2025-07-11T08:53:04.126+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 pid=969639 +2025-07-11T08:53:04.126+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 +2025-07-11T08:53:04.129+0200 [INFO] provider.terraform-provider-external_v2.3.5_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.129+0200" +2025-07-11T08:53:04.140+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:53:04.140+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: plugin address: address=/tmp/plugin1549367443 network=unix timestamp="2025-07-11T08:53:04.140+0200" +2025-07-11T08:53:04.148+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.148+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.152+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 args=[".terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1"] +2025-07-11T08:53:04.153+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 pid=969648 +2025-07-11T08:53:04.153+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 +2025-07-11T08:53:04.155+0200 [INFO] provider.terraform-provider-slugify_v0.1.1: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.155+0200" +2025-07-11T08:53:04.166+0200 [DEBUG] provider.terraform-provider-slugify_v0.1.1: plugin address: address=/tmp/plugin230500963 network=unix timestamp="2025-07-11T08:53:04.166+0200" +2025-07-11T08:53:04.166+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:53:04.174+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.174+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.179+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5"] +2025-07-11T08:53:04.179+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 pid=969661 +2025-07-11T08:53:04.179+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 +2025-07-11T08:53:04.181+0200 [INFO] provider.terraform-provider-null_v3.2.4_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.181+0200" +2025-07-11T08:53:04.193+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:53:04.194+0200 [DEBUG] provider.terraform-provider-null_v3.2.4_x5: plugin address: address=/tmp/plugin4023935289 network=unix timestamp="2025-07-11T08:53:04.193+0200" +2025-07-11T08:53:04.202+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.202+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.206+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5"] +2025-07-11T08:53:04.206+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 pid=969670 +2025-07-11T08:53:04.206+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 +2025-07-11T08:53:04.209+0200 [INFO] provider.terraform-provider-local_v2.5.3_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.209+0200" +2025-07-11T08:53:04.220+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:53:04.220+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: plugin address: address=/tmp/plugin3781813597 network=unix timestamp="2025-07-11T08:53:04.220+0200" +2025-07-11T08:53:04.227+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.227+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.232+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:53:04.232+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=969680 +2025-07-11T08:53:04.232+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:53:04.239+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.239+0200" +2025-07-11T08:53:04.265+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:53:04.265+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin2374371313 network=unix timestamp="2025-07-11T08:53:04.265+0200" +2025-07-11T08:53:04.277+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.277+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.282+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:53:04.282+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=969694 +2025-07-11T08:53:04.282+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:53:04.302+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.302+0200" +2025-07-11T08:53:04.310+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:53:04.310+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2902439461 network=unix timestamp="2025-07-11T08:53:04.310+0200" +2025-07-11T08:53:04.317+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.317+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.321+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:53:04.321+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=969712 +2025-07-11T08:53:04.321+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:53:04.338+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.338+0200" +2025-07-11T08:53:04.347+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:53:04.347+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: network=unix address=/tmp/plugin2718871033 timestamp="2025-07-11T08:53:04.347+0200" +2025-07-11T08:53:04.353+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.353+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.358+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:53:04.358+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=969730 +2025-07-11T08:53:04.358+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:53:04.374+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.374+0200" +2025-07-11T08:53:04.384+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:53:04.384+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin530475962 network=unix timestamp="2025-07-11T08:53:04.384+0200" +2025-07-11T08:53:04.391+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.391+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.395+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:53:04.395+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=969749 +2025-07-11T08:53:04.395+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:53:04.409+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.409+0200" +2025-07-11T08:53:04.421+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:53:04.421+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin2512024030 network=unix timestamp="2025-07-11T08:53:04.421+0200" +2025-07-11T08:53:04.429+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:53:04.429+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.429+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.433+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:53:04.433+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=969765 +2025-07-11T08:53:04.433+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:53:04.445+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.445+0200" +2025-07-11T08:53:04.457+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:53:04.457+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin3908018583 network=unix timestamp="2025-07-11T08:53:04.457+0200" +2025-07-11T08:53:04.464+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:53:04.465+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.465+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.467+0200 [WARN] ValidateProviderConfig from "provider[\"registry.terraform.io/aminueza/minio\"]" changed the config value, but that value is unused +2025-07-11T08:53:04.469+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:53:04.470+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=969780 +2025-07-11T08:53:04.470+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:53:04.483+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.483+0200" +2025-07-11T08:53:04.494+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:53:04.494+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin1538999777 network=unix timestamp="2025-07-11T08:53:04.494+0200" +2025-07-11T08:53:04.502+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:53:04.503+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:53:04 [DEBUG] MinIO SSL client transport configured successfully: timestamp="2025-07-11T08:53:04.503+0200" +2025-07-11T08:53:04.503+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 tf_rpc=ConfigureProvider @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e7e3cd97-4a0e-a2f7-2458-df47602ae412 timestamp="2025-07-11T08:53:04.503+0200" +2025-07-11T08:53:04.503+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_req_id=e7e3cd97-4a0e-a2f7-2458-df47602ae412 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 timestamp="2025-07-11T08:53:04.503+0200" +2025-07-11T08:53:04.503+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.503+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.503+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:53:04 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:53:04.503+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_rpc=ConfigureProvider @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=290ffc18-204c-6865-bacf-f1c4780f43f1 timestamp="2025-07-11T08:53:04.503+0200" +2025-07-11T08:53:04.503+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm tf_req_id=290ffc18-204c-6865-bacf-f1c4780f43f1 tf_rpc=ConfigureProvider timestamp="2025-07-11T08:53:04.503+0200" +2025-07-11T08:53:04.503+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=290ffc18-204c-6865-bacf-f1c4780f43f1 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm timestamp="2025-07-11T08:53:04.503+0200" +2025-07-11T08:53:04.503+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:53:04 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:53:04.504+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e7e3cd97-4a0e-a2f7-2458-df47602ae412 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm timestamp="2025-07-11T08:53:04.503+0200" +2025-07-11T08:53:04.503+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:53:04 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:53:04.509+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:53:04.509+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=969797 +2025-07-11T08:53:04.509+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:53:04.527+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.527+0200" +2025-07-11T08:53:04.535+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:53:04.535+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin948687086 network=unix timestamp="2025-07-11T08:53:04.535+0200" +2025-07-11T08:53:04.542+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.542+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.547+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:53:04.547+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=969815 +2025-07-11T08:53:04.547+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:53:04.564+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.564+0200" +2025-07-11T08:53:04.573+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:53:04.573+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2162176211 network=unix timestamp="2025-07-11T08:53:04.573+0200" +2025-07-11T08:53:04.580+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.580+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.580+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:53:04 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:53:04.581+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: tf_provider_addr=registry.terraform.io/hashicorp/helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_req_id=64db99d4-37bc-76f8-2562-8d8696f98f66 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm timestamp="2025-07-11T08:53:04.581+0200" +2025-07-11T08:53:04.581+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm tf_req_id=64db99d4-37bc-76f8-2562-8d8696f98f66 tf_rpc=ConfigureProvider timestamp="2025-07-11T08:53:04.581+0200" +2025-07-11T08:53:04.581+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=64db99d4-37bc-76f8-2562-8d8696f98f66 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 timestamp="2025-07-11T08:53:04.581+0200" +2025-07-11T08:53:04.584+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:53:04.584+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=969833 +2025-07-11T08:53:04.584+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:53:04.602+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.602+0200" +2025-07-11T08:53:04.610+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:53:04.610+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin3192441286 network=unix timestamp="2025-07-11T08:53:04.610+0200" +2025-07-11T08:53:04.616+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.616+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.621+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:53:04.621+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=969851 +2025-07-11T08:53:04.621+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:53:04.634+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.634+0200" +2025-07-11T08:53:04.645+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:53:04.645+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin45971483 network=unix timestamp="2025-07-11T08:53:04.645+0200" +2025-07-11T08:53:04.653+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:53:04.653+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.653+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.657+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:53:04.658+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=969864 +2025-07-11T08:53:04.658+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:53:04.669+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.669+0200" +2025-07-11T08:53:04.681+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin3551270457 network=unix timestamp="2025-07-11T08:53:04.681+0200" +2025-07-11T08:53:04.681+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:53:04.688+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.688+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.688+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:53:04.693+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:53:04.693+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=969878 +2025-07-11T08:53:04.693+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:53:04.705+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.705+0200" +2025-07-11T08:53:04.716+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:53:04.716+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: network=unix address=/tmp/plugin4095762408 timestamp="2025-07-11T08:53:04.716+0200" +2025-07-11T08:53:04.724+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.724+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.728+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:53:04.729+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=969892 +2025-07-11T08:53:04.729+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:53:04.740+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.740+0200" +2025-07-11T08:53:04.751+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:53:04.751+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin3878234776 network=unix timestamp="2025-07-11T08:53:04.751+0200" +2025-07-11T08:53:04.758+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.758+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.759+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:53:04.763+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:53:04.763+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=969907 +2025-07-11T08:53:04.763+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:53:04.775+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.774+0200" +2025-07-11T08:53:04.786+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:53:04.786+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin939574993 network=unix timestamp="2025-07-11T08:53:04.786+0200" +2025-07-11T08:53:04.794+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.794+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.794+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ff21e53a-3fae-6c19-489c-0afab427d451 tf_rpc=ConfigureProvider @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" timestamp="2025-07-11T08:53:04.794+0200" +2025-07-11T08:53:04.794+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_req_id=ff21e53a-3fae-6c19-489c-0afab427d451 tf_rpc=ConfigureProvider @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:53:04.794+0200" +2025-07-11T08:53:04.794+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:53:04 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:53:04.794+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:53:04 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:53:04.794+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_req_id=2987ecac-01b0-7acb-8455-ad29d0403e88 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 timestamp="2025-07-11T08:53:04.794+0200" +2025-07-11T08:53:04.795+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 tf_req_id=2987ecac-01b0-7acb-8455-ad29d0403e88 timestamp="2025-07-11T08:53:04.794+0200" +2025-07-11T08:53:04.795+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2987ecac-01b0-7acb-8455-ad29d0403e88 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm timestamp="2025-07-11T08:53:04.795+0200" +2025-07-11T08:53:04.795+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ff21e53a-3fae-6c19-489c-0afab427d451 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 timestamp="2025-07-11T08:53:04.794+0200" +2025-07-11T08:53:04.798+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:53:04.799+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=969922 +2025-07-11T08:53:04.799+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:53:04.817+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.817+0200" +2025-07-11T08:53:04.825+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:53:04.825+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1316405789 network=unix timestamp="2025-07-11T08:53:04.825+0200" +2025-07-11T08:53:04.832+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.832+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.832+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=370004a6-8670-ac93-506c-be0ac05c9e35 tf_rpc=ConfigureProvider timestamp="2025-07-11T08:53:04.832+0200" +2025-07-11T08:53:04.832+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_req_id=370004a6-8670-ac93-506c-be0ac05c9e35 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 timestamp="2025-07-11T08:53:04.832+0200" +2025-07-11T08:53:04.833+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=370004a6-8670-ac93-506c-be0ac05c9e35 tf_rpc=ConfigureProvider timestamp="2025-07-11T08:53:04.833+0200" +2025-07-11T08:53:04.836+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:53:04.837+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=969940 +2025-07-11T08:53:04.837+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:53:04.854+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.854+0200" +2025-07-11T08:53:04.862+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2981370499 network=unix timestamp="2025-07-11T08:53:04.862+0200" +2025-07-11T08:53:04.862+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:53:04.869+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:53:04.869+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:04.870+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 id=969631 +2025-07-11T08:53:04.870+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:04.870+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:04.871+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=969680 +2025-07-11T08:53:04.871+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:04.872+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:04.873+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=969712 +2025-07-11T08:53:04.873+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:04.873+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.873+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.878+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:53:04.878+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=969958 +2025-07-11T08:53:04.878+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:53:04.895+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.895+0200" +2025-07-11T08:53:04.903+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:53:04.903+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin3740781442 network=unix timestamp="2025-07-11T08:53:04.903+0200" +2025-07-11T08:53:04.910+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:53:04.910+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:04.911+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=969730 +2025-07-11T08:53:04.911+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:04.911+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.911+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.915+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:53:04.915+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=969976 +2025-07-11T08:53:04.915+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:53:04.929+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.928+0200" +2025-07-11T08:53:04.940+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:53:04.940+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin742025413 network=unix timestamp="2025-07-11T08:53:04.940+0200" +2025-07-11T08:53:04.948+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:04.950+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=969765 +2025-07-11T08:53:04.950+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:04.950+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:04.951+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_req_id=1bdd8798-8596-9401-9fa4-403da4dedb28 timestamp="2025-07-11T08:53:04.951+0200" +2025-07-11T08:53:04.951+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1bdd8798-8596-9401-9fa4-403da4dedb28 tf_rpc=ConfigureProvider @module=helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 timestamp="2025-07-11T08:53:04.951+0200" +2025-07-11T08:53:04.951+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1bdd8798-8596-9401-9fa4-403da4dedb28 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 timestamp="2025-07-11T08:53:04.951+0200" +2025-07-11T08:53:04.951+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=969780 +2025-07-11T08:53:04.951+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:04.952+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:04.953+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=969815 +2025-07-11T08:53:04.953+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:04.953+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:04.954+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=7ac73944-dd57-6469-5056-0646faf74b47 tf_rpc=ConfigureProvider config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" timestamp="2025-07-11T08:53:04.954+0200" +2025-07-11T08:53:04.954+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=7ac73944-dd57-6469-5056-0646faf74b47 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" @module=helm timestamp="2025-07-11T08:53:04.954+0200" +2025-07-11T08:53:04.954+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_req_id=7ac73944-dd57-6469-5056-0646faf74b47 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:53:04.954+0200" +2025-07-11T08:53:04.955+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=969864 +2025-07-11T08:53:04.955+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:04.955+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:04.956+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=969694 +2025-07-11T08:53:04.956+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:04.956+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:04.957+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 id=969661 +2025-07-11T08:53:04.957+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:04.958+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:04.959+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=969851 +2025-07-11T08:53:04.959+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:04.959+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:04.960+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=969833 +2025-07-11T08:53:04.960+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:04.961+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:04.961+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 id=969670 +2025-07-11T08:53:04.961+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:04.961+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:04.962+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:04.962+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:53:04.966+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:53:04.966+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=969993 +2025-07-11T08:53:04.966+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:53:04.973+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:53:04.973+0200" +2025-07-11T08:53:05.000+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:53:05.000+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin586433428 network=unix timestamp="2025-07-11T08:53:05.000+0200" +2025-07-11T08:53:05.012+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:05.012+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:05.012+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:53:05 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:53:05.012+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:53:05 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:53:05.012+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:53:05 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:53:05.013+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_req_id=a68f7a77-f695-7cbe-bcf3-5ea4d462f390 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider timestamp="2025-07-11T08:53:05.012+0200" +2025-07-11T08:53:05.013+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_req_id=a68f7a77-f695-7cbe-bcf3-5ea4d462f390 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 timestamp="2025-07-11T08:53:05.013+0200" +2025-07-11T08:53:05.013+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a68f7a77-f695-7cbe-bcf3-5ea4d462f390 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm timestamp="2025-07-11T08:53:05.013+0200" +2025-07-11T08:53:05.016+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:53:05.017+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=970022 +2025-07-11T08:53:05.017+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:53:05.024+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:53:05.024+0200" +2025-07-11T08:53:05.036+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:53:05.036+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin3135211390 network=unix timestamp="2025-07-11T08:53:05.036+0200" +2025-07-11T08:53:05.043+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:05.043+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:05.049+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:53:05.049+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=970035 +2025-07-11T08:53:05.049+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:53:05.050+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_req_id=7330c286-ca17-9520-e3ce-3b237b6be16f timestamp="2025-07-11T08:53:05.050+0200" +2025-07-11T08:53:05.050+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=domain tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=7330c286-ca17-9520-e3ce-3b237b6be16f timestamp="2025-07-11T08:53:05.050+0200" +2025-07-11T08:53:05.050+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=7330c286-ca17-9520-e3ce-3b237b6be16f tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:53:05.050+0200" +2025-07-11T08:53:05.050+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=7330c286-ca17-9520-e3ce-3b237b6be16f tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=insecure timestamp="2025-07-11T08:53:05.050+0200" +2025-07-11T08:53:05.050+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=7330c286-ca17-9520-e3ce-3b237b6be16f tf_rpc=ValidateProviderConfig tf_attribute_path=token tf_mux_provider="*proto6server.Server" @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework timestamp="2025-07-11T08:53:05.050+0200" +2025-07-11T08:53:05.050+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=7330c286-ca17-9520-e3ce-3b237b6be16f tf_rpc=ValidateProviderConfig tf_attribute_path=token timestamp="2025-07-11T08:53:05.050+0200" +2025-07-11T08:53:05.050+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_req_id=7330c286-ca17-9520-e3ce-3b237b6be16f timestamp="2025-07-11T08:53:05.050+0200" +2025-07-11T08:53:05.050+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_req_id=7330c286-ca17-9520-e3ce-3b237b6be16f @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:53:05.050+0200" +2025-07-11T08:53:05.050+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=jwt_profile_json tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_req_id=7330c286-ca17-9520-e3ce-3b237b6be16f tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:53:05.050+0200" +2025-07-11T08:53:05.050+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=jwt_profile_json tf_mux_provider="*proto6server.Server" tf_req_id=7330c286-ca17-9520-e3ce-3b237b6be16f tf_rpc=ValidateProviderConfig @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:53:05.050+0200" +2025-07-11T08:53:05.050+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=7330c286-ca17-9520-e3ce-3b237b6be16f tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=port timestamp="2025-07-11T08:53:05.050+0200" +2025-07-11T08:53:05.050+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=port tf_req_id=7330c286-ca17-9520-e3ce-3b237b6be16f tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:53:05.050+0200" +2025-07-11T08:53:05.056+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:53:05.056+0200" +2025-07-11T08:53:05.068+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:53:05.068+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin1015310953 network=unix timestamp="2025-07-11T08:53:05.068+0200" +2025-07-11T08:53:05.076+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:53:05.076+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:53:05.080+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=insecure tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=3e44eca0-a552-8920-4692-85db7b6beca4 tf_rpc=ValidateProviderConfig @module=sdk.framework tf_mux_provider="*proto6server.Server" @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T08:53:05.080+0200" +2025-07-11T08:53:05.080+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=insecure tf_req_id=3e44eca0-a552-8920-4692-85db7b6beca4 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 timestamp="2025-07-11T08:53:05.080+0200" +2025-07-11T08:53:05.080+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_req_id=3e44eca0-a552-8920-4692-85db7b6beca4 @module=sdk.framework tf_attribute_path=token tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:53:05.080+0200" +2025-07-11T08:53:05.080+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_req_id=3e44eca0-a552-8920-4692-85db7b6beca4 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:53:05.080+0200" +2025-07-11T08:53:05.080+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:53:05.080+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=jwt_profile_file tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=3e44eca0-a552-8920-4692-85db7b6beca4 tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:53:05.080+0200" +2025-07-11T08:53:05.080+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_req_id=3e44eca0-a552-8920-4692-85db7b6beca4 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:53:05.080+0200" +2025-07-11T08:53:05.080+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=jwt_profile_json tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=3e44eca0-a552-8920-4692-85db7b6beca4 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:53:05.080+0200" +2025-07-11T08:53:05.080+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=3e44eca0-a552-8920-4692-85db7b6beca4 tf_attribute_path=jwt_profile_json tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:53:05.080+0200" +2025-07-11T08:53:05.080+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=970049 +2025-07-11T08:53:05.080+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:53:05.080+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_req_id=3e44eca0-a552-8920-4692-85db7b6beca4 @module=sdk.framework timestamp="2025-07-11T08:53:05.080+0200" +2025-07-11T08:53:05.080+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_rpc=ValidateProviderConfig @module=sdk.framework tf_mux_provider="*proto6server.Server" @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=port tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=3e44eca0-a552-8920-4692-85db7b6beca4 timestamp="2025-07-11T08:53:05.080+0200" +2025-07-11T08:53:05.080+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_req_id=3e44eca0-a552-8920-4692-85db7b6beca4 @module=sdk.framework tf_attribute_path=domain tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:53:05.080+0200" +2025-07-11T08:53:05.080+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=3e44eca0-a552-8920-4692-85db7b6beca4 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework timestamp="2025-07-11T08:53:05.080+0200" +2025-07-11T08:53:05.087+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:53:05.087+0200" +2025-07-11T08:53:05.099+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:53:05.099+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: network=unix address=/tmp/plugin2168286862 timestamp="2025-07-11T08:53:05.099+0200" +2025-07-11T08:53:05.107+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:05.109+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=969976 +2025-07-11T08:53:05.109+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:05.110+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:05.111+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=969958 +2025-07-11T08:53:05.111+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:05.111+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:05.111+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=jwt_profile_json tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=21b161e0-52dc-1cf0-5309-5f12a5cb5b47 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:53:05.111+0200" +2025-07-11T08:53:05.111+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_rpc=ValidateProviderConfig @module=sdk.framework tf_req_id=21b161e0-52dc-1cf0-5309-5f12a5cb5b47 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=jwt_profile_json tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:53:05.111+0200" +2025-07-11T08:53:05.111+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_rpc=ValidateProviderConfig tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=21b161e0-52dc-1cf0-5309-5f12a5cb5b47 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework timestamp="2025-07-11T08:53:05.111+0200" +2025-07-11T08:53:05.111+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=sdk.framework tf_attribute_path=port tf_req_id=21b161e0-52dc-1cf0-5309-5f12a5cb5b47 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:53:05.111+0200" +2025-07-11T08:53:05.111+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=domain tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=21b161e0-52dc-1cf0-5309-5f12a5cb5b47 timestamp="2025-07-11T08:53:05.111+0200" +2025-07-11T08:53:05.111+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=21b161e0-52dc-1cf0-5309-5f12a5cb5b47 tf_attribute_path=domain timestamp="2025-07-11T08:53:05.111+0200" +2025-07-11T08:53:05.112+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=insecure tf_req_id=21b161e0-52dc-1cf0-5309-5f12a5cb5b47 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:53:05.111+0200" +2025-07-11T08:53:05.112+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=21b161e0-52dc-1cf0-5309-5f12a5cb5b47 tf_rpc=ValidateProviderConfig @module=sdk.framework timestamp="2025-07-11T08:53:05.111+0200" +2025-07-11T08:53:05.112+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=21b161e0-52dc-1cf0-5309-5f12a5cb5b47 @module=sdk.framework timestamp="2025-07-11T08:53:05.111+0200" +2025-07-11T08:53:05.112+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=21b161e0-52dc-1cf0-5309-5f12a5cb5b47 timestamp="2025-07-11T08:53:05.111+0200" +2025-07-11T08:53:05.112+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=21b161e0-52dc-1cf0-5309-5f12a5cb5b47 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:53:05.111+0200" +2025-07-11T08:53:05.112+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=sdk.framework tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_req_id=21b161e0-52dc-1cf0-5309-5f12a5cb5b47 timestamp="2025-07-11T08:53:05.112+0200" +2025-07-11T08:53:05.113+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=969749 +2025-07-11T08:53:05.113+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:05.113+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:05.114+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=969922 +2025-07-11T08:53:05.114+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:05.114+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:05.115+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=969878 +2025-07-11T08:53:05.115+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:05.116+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Provider Configure: @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=cdc5f7b2-aad6-ff60-3546-07cadb09d3d6 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:12 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ConfigureProvider timestamp="2025-07-11T08:53:05.116+0200" +2025-07-11T08:53:05.116+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Provider Configure: @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=69e66a3d-cae2-a2c5-cf11-ea6a16da3277 tf_rpc=ConfigureProvider @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:12 timestamp="2025-07-11T08:53:05.116+0200" +2025-07-11T08:53:05.116+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Provider Configure: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:20 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ConfigureProvider @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=cdc5f7b2-aad6-ff60-3546-07cadb09d3d6 timestamp="2025-07-11T08:53:05.116+0200" +2025-07-11T08:53:05.116+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Provider Configure: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=69e66a3d-cae2-a2c5-cf11-ea6a16da3277 tf_rpc=ConfigureProvider @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:20 @module=sdk.framework timestamp="2025-07-11T08:53:05.116+0200" +2025-07-11T08:53:05.116+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Provider Configure: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ConfigureProvider @module=sdk.framework tf_req_id=a8f1418d-e5f9-043e-5667-9a0fb10447e9 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:12 timestamp="2025-07-11T08:53:05.116+0200" +2025-07-11T08:53:05.116+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Provider Configure: tf_rpc=ConfigureProvider tf_mux_provider="*proto6server.Server" @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:20 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=a8f1418d-e5f9-043e-5667-9a0fb10447e9 timestamp="2025-07-11T08:53:05.116+0200" +2025-07-11T08:53:05.116+0200 [WARN] ValidateProviderConfig from "module.tenant-365zon.module.minio.provider[\"registry.terraform.io/aminueza/minio\"]" changed the config value, but that value is unused +2025-07-11T08:53:05.117+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.monitoring.kubernetes_namespace.monitoring, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:53:05.117+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:53:05 [DEBUG] MinIO SSL client transport configured successfully: timestamp="2025-07-11T08:53:05.117+0200" +2025-07-11T08:53:05.117+0200 [INFO] Starting apply for module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default +2025-07-11T08:53:05.117+0200 [INFO] Starting apply for module.monitoring.kubernetes_namespace.monitoring +2025-07-11T08:53:05.117+0200 [DEBUG] module.monitoring.kubernetes_namespace.monitoring: applying the planned Update change +2025-07-11T08:53:05.118+0200 [DEBUG] module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default: applying the planned Create change +2025-07-11T08:53:05.118+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:05.118+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_resource_type=zitadel_org tf_rpc=ApplyResourceChange tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/org/funcs.go:38 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_req_id=cc69d512-90d1-65a5-db04-f59845839b1f timestamp="2025-07-11T08:53:05.118+0200" +2025-07-11T08:53:05.118+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:53:05 [INFO] Updating namespace: [{"path":"/metadata/annotations/cattle.io~1status","op":"remove"} {"path":"/metadata/annotations/lifecycle.cattle.io~1create.namespace-auth","op":"remove"}] +2025-07-11T08:53:05.119+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=fffc7e07-9c7b-6dad-fc2c-da46cddc811d @module=kubernetes.Kubernetes Accept-Encoding=gzip Content-Type="application/json-patch+json" Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_body="[{\"path\":\"/metadata/annotations/cattle.io~1status\",\"op\":\"remove\"},{\"path\":\"/metadata/annotations/lifecycle.cattle.io~1create.namespace-auth\",\"op\":\"remove\"}]" tf_http_req_method=PATCH Content-Length=156 tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" timestamp="2025-07-11T08:53:05.119+0200" +2025-07-11T08:53:05.119+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=969993 +2025-07-11T08:53:05.119+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:05.554+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_res_status_code=200 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Length=794 Date="Fri, 11 Jul 2025 06:53:05 GMT" X-Content-Type-Options=nosniff tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes X-Api-Cattle-Auth=true new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"monitoring","uid":"4e752f54-5f50-4c50-9f26-9b0bc0d1b794","resourceVersion":"109679527","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"monitoring"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:47:48Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_trans_id=fffc7e07-9c7b-6dad-fc2c-da46cddc811d Audit-Id=a1e07b52-3ea3-490a-b732-4c7f67431011 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 timestamp="2025-07-11T08:53:05.554+0200" +2025-07-11T08:53:05.555+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:53:05 [INFO] Submitted updated namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"monitoring", GenerateName:"", Namespace:"", SelfLink:"", UID:"4e752f54-5f50-4c50-9f26-9b0bc0d1b794", ResourceVersion:"109679527", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"monitoring"}, Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000d85f08), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 47, 48, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000d85f38), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:53:05.555+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:53:05 [INFO] Checking namespace monitoring +2025-07-11T08:53:05.555+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring @module=kubernetes.Kubernetes Accept="application/json, */*" Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev tf_http_req_method=GET @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_version=HTTP/1.1 User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" tf_http_trans_id=72e88dd9-ee08-27a8-557d-e24a393cb220 timestamp="2025-07-11T08:53:05.555+0200" +2025-07-11T08:53:05.699+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"monitoring","uid":"4e752f54-5f50-4c50-9f26-9b0bc0d1b794","resourceVersion":"109679530","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"monitoring"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:53:06Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:53:06Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:53:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + Audit-Id=9ddef1e2-e5ff-4dc9-b693-48d8dab2efaa Content-Type=application/json tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 @module=kubernetes.Kubernetes Content-Length=1231 tf_http_res_status_code=200 Date="Fri, 11 Jul 2025 06:53:05 GMT" tf_http_op_type=response tf_http_trans_id=72e88dd9-ee08-27a8-557d-e24a393cb220 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 timestamp="2025-07-11T08:53:05.699+0200" +2025-07-11T08:53:05.699+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:53:05 [INFO] Namespace monitoring exists +2025-07-11T08:53:05.699+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:53:05 [INFO] Reading namespace monitoring +2025-07-11T08:53:05.699+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_body="" tf_http_trans_id=445cb68f-885b-fac3-66cc-f2476a427e2d @module=kubernetes.Kubernetes tf_http_req_method=GET Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring timestamp="2025-07-11T08:53:05.699+0200" +2025-07-11T08:53:05.745+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Content-Length=1231 Content-Type=application/json + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"monitoring","uid":"4e752f54-5f50-4c50-9f26-9b0bc0d1b794","resourceVersion":"109679530","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"monitoring"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:53:06Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:53:06Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:53:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_code=200 Date="Fri, 11 Jul 2025 06:53:05 GMT" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_trans_id=445cb68f-885b-fac3-66cc-f2476a427e2d Audit-Id=968d5fb6-363e-4b4f-902c-6a0c338f5910 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] timestamp="2025-07-11T08:53:05.745+0200" +2025-07-11T08:53:05.745+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:53:05 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"monitoring", GenerateName:"", Namespace:"", SelfLink:"", UID:"4e752f54-5f50-4c50-9f26-9b0bc0d1b794", ResourceVersion:"109679530", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"monitoring"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:53:06Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:53:06Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000fc0360), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 53, 5, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000fc0390), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:53:05.745+0200 [WARN] Provider "module.monitoring.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" produced an unexpected new value for module.monitoring.kubernetes_namespace.monitoring, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .metadata[0].annotations: new element "cattle.io/status" has appeared + - .metadata[0].annotations: new element "lifecycle.cattle.io/create.namespace-auth" has appeared + - .metadata[0].resource_version: was cty.StringVal("109677753"), but now cty.StringVal("109679530") +2025-07-11T08:53:05.746+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:53:05.746+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:05.748+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=969940 +2025-07-11T08:53:05.748+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:07.947+0200 [ERROR] provider.terraform-provider-zitadel_v2.0.2: Response contains error diagnostic: @caller=github.com/hashicorp/terraform-plugin-go@v0.14.3/tfprotov6/internal/diag/diagnostics.go:55 @module=sdk.proto diagnostic_detail="" diagnostic_summary="rpc error: code = Unimplemented desc = unexpected HTTP status code received from server: 404 (Not Found); transport: received unexpected content-type \"application/json\"" tf_req_id=cc69d512-90d1-65a5-db04-f59845839b1f tf_resource_type=zitadel_org tf_rpc=ApplyResourceChange diagnostic_severity=ERROR tf_proto_version=6.3 tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:53:07.947+0200" +2025-07-11T08:53:07.948+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:53:07.948+0200 [ERROR] vertex "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default" error: rpc error: code = Unimplemented desc = unexpected HTTP status code received from server: 404 (Not Found); transport: received unexpected content-type "application/json" +2025-07-11T08:53:07.949+0200 [DEBUG] states/remote: state read serial is: 42; serial is: 42 +2025-07-11T08:53:07.949+0200 [DEBUG] states/remote: state read lineage is: 8bb1bb78-c340-a09d-d7d3-bfdfbe0a740e; lineage is: 8bb1bb78-c340-a09d-d7d3-bfdfbe0a740e +2025-07-11T08:53:07.953+0200 [INFO] backend-s3: Uploading remote state: tf_backend.operation=Put tf_backend.req_id=ae726ec1-3b51-1547-38ab-880ae6cdaf24 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T08:53:07.953+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=PutObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Put tf_backend.req_id=ae726ec1-3b51-1547-38ab-880ae6cdaf24 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 ft/s3-transfer m/G,Z" http.request.header.x_amz_decoded_content_length=123360 http.request.header.amz_sdk_invocation_id=d1e3b434-bcf9-4f2e-b8d7-15dd59c08964 http.request.header.content_encoding=aws-chunked http.request.header.content_type=application/json http.request_content_length=123442 http.request.header.amz_sdk_request="attempt=1; max=5" http.request.header.x_amz_trailer=x-amz-checksum-sha256 http.request.header.x_amz_date=20250711T065307Z http.request.body="[Redacted: 120.5 KB (123,442 bytes), Type: application/json]" http.method=PUT net.peer.name=storage.bridge.fourlights.dev http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;content-encoding;content-length;content-type;host;x-amz-content-sha256;x-amz-date;x-amz-decoded-content-length;x-amz-sdk-checksum-algorithm;x-amz-trailer, Signature=*****" http.request.header.x_amz_content_sha256=STREAMING-UNSIGNED-PAYLOAD-TRAILER http.request.header.accept_encoding=identity http.request.header.x_amz_sdk_checksum_algorithm=SHA256 http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate?x-id=PutObject +2025-07-11T08:53:08.304+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=PutObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Put tf_backend.req_id=ae726ec1-3b51-1547-38ab-880ae6cdaf24 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.response.header.etag="\"848b9c152688f27c5f9f8f7a0977bb47\"" http.duration=351 http.status_code=200 http.response.header.server=MinIO http.response.header.x_ratelimit_limit=57 http.response.header.x_amz_request_id=18511FE28FEB4F78 http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.accept_ranges=bytes http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.x_ratelimit_remaining=57 http.response.header.x_xss_protection="1; mode=block" http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.x_amz_checksum_sha256="au5MuB+UWGxmAceQuVB8vEMdrlb2gbjkPcfigjABhF0=" http.response.header.x_content_type_options=nosniff http.response.header.date="Fri, 11 Jul 2025 06:53:08 GMT" http.response.body="" +2025-07-11T08:53:08.305+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:08.305+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:08.306+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:08.306+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:08.306+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:08.306+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:08.306+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:08.306+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:53:08.306+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 id=969648 +2025-07-11T08:53:08.306+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:08.306+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 id=969639 +2025-07-11T08:53:08.306+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:08.307+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=970022 +2025-07-11T08:53:08.307+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:08.307+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=970049 +2025-07-11T08:53:08.307+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=970035 +2025-07-11T08:53:08.307+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:08.307+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:08.307+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=969892 +2025-07-11T08:53:08.307+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=969907 +2025-07-11T08:53:08.307+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:08.307+0200 [DEBUG] provider: plugin exited +2025-07-11T08:53:08.308+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=969797 +2025-07-11T08:53:08.308+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:31.798+0200 [INFO] Terraform version: 1.12.1 +2025-07-11T08:55:31.798+0200 [DEBUG] using github.com/hashicorp/go-tfe v1.74.1 +2025-07-11T08:55:31.798+0200 [DEBUG] using github.com/hashicorp/hcl/v2 v2.23.1-0.20250203194505-ba0759438da2 +2025-07-11T08:55:31.798+0200 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1 +2025-07-11T08:55:31.798+0200 [DEBUG] using github.com/zclconf/go-cty v1.16.2 +2025-07-11T08:55:31.798+0200 [INFO] Go runtime version: go1.24.3 +2025-07-11T08:55:31.798+0200 [INFO] CLI args: []string{"terraform", "console"} +2025-07-11T08:55:31.798+0200 [DEBUG] Attempting to open CLI config file: /home/lamelos/.terraformrc +2025-07-11T08:55:31.798+0200 [INFO] Loading CLI configuration from /home/lamelos/.terraformrc +2025-07-11T08:55:31.798+0200 [DEBUG] checking for credentials in "/home/lamelos/.terraform.d/plugins" +2025-07-11T08:55:31.798+0200 [DEBUG] Explicit provider installation configuration is set +2025-07-11T08:55:31.798+0200 [INFO] CLI command args: []string{"console"} +2025-07-11T08:55:31.800+0200 [DEBUG] backend-s3.aws-base: Resolving credentials provider: tf_backend.operation=Configure tf_backend.req_id=aeeab455-32bd-0e2f-6a33-502eb5d5fd82 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T08:55:31.800+0200 [DEBUG] backend-s3.aws-base: Using authentication parameters: tf_backend.operation=Configure tf_backend.req_id=aeeab455-32bd-0e2f-6a33-502eb5d5fd82 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate tf_aws.auth_fields.source=provider tf_aws.auth_fields=["access key", "secret key"] +2025-07-11T08:55:31.800+0200 [INFO] backend-s3.aws-base: Retrieved credentials: tf_backend.operation=Configure tf_backend.req_id=aeeab455-32bd-0e2f-6a33-502eb5d5fd82 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate tf_aws.credentials_source=StaticCredentials +2025-07-11T08:55:31.800+0200 [DEBUG] backend-s3.aws-base: Loading configuration: tf_backend.operation=Configure tf_backend.req_id=aeeab455-32bd-0e2f-6a33-502eb5d5fd82 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T08:55:31.801+0200 [DEBUG] Provider registry.terraform.io/hashicorp/helm is overridden by dev_overrides +2025-07-11T08:55:31.994+0200 [DEBUG] Provider registry.terraform.io/hashicorp/helm is overridden to load from /home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64 +2025-07-11T08:55:31.994+0200 [DEBUG] checking for provisioner in "." +2025-07-11T08:55:32.002+0200 [DEBUG] checking for provisioner in "/usr/bin" +2025-07-11T08:55:32.003+0200 [DEBUG] checking for provisioner in "/home/lamelos/.terraform.d/plugins" +2025-07-11T08:55:32.004+0200 [DEBUG] Provider registry.terraform.io/hashicorp/helm is overridden by dev_overrides +2025-07-11T08:55:32.005+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon rpc.method=ListObjectsV2 rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Workspaces tf_backend.req_id=2a561b9f-f01a-fda0-bdea-1c4559bccba0 tf_backend.s3.bucket=app-365zon tf_backend.workspace-prefix=env:/ http.request.header.amz_sdk_request="attempt=1; max=5" http.request.body="" http.method=GET http.url="https://storage.bridge.fourlights.dev/app-365zon?list-type=2&max-keys=1000&prefix=env%3A%2F" http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 m/C" http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.request.header.x_amz_date=20250711T065532Z http.request.header.amz_sdk_invocation_id=392fd7cf-3c4a-4fc5-889c-a9256e649313 http.request.header.accept_encoding=identity net.peer.name=storage.bridge.fourlights.dev +2025-07-11T08:55:32.428+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon rpc.method=ListObjectsV2 rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Workspaces tf_backend.req_id=2a561b9f-f01a-fda0-bdea-1c4559bccba0 tf_backend.s3.bucket=app-365zon tf_backend.workspace-prefix=env:/ http.status_code=200 http.response.header.x_amz_request_id=185120042183BF3B http.response.header.x_ratelimit_remaining=57 http.duration=422 http.response_content_length=246 http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.server=MinIO http.response.header.x_xss_protection="1; mode=block" http.response.header.accept_ranges=bytes http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.x_ratelimit_limit=57 http.response.header.date="Fri, 11 Jul 2025 06:55:32 GMT" http.response.header.x_content_type_options=nosniff + http.response.body= + | + | app-365zonenv:/01000false + http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.content_type=application/xml +2025-07-11T08:55:32.429+0200 [INFO] backend-s3: Downloading remote state: tf_backend.operation=Get tf_backend.req_id=68efed4c-8b6e-3f17-ad39-1475b47c11a7 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T08:55:32.429+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=HeadObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=68efed4c-8b6e-3f17-ad39-1475b47c11a7 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.method=HEAD http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2" http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.x_amz_date=20250711T065532Z http.request.header.amz_sdk_invocation_id=155f01a4-56bf-4854-9f74-79781a25d538 http.request.header.accept_encoding=identity http.request.body="" http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate net.peer.name=storage.bridge.fourlights.dev http.request.header.amz_sdk_request="attempt=1; max=5" http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 +2025-07-11T08:55:33.012+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=HeadObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=68efed4c-8b6e-3f17-ad39-1475b47c11a7 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.response.header.etag="\"848b9c152688f27c5f9f8f7a0977bb47\"" http.response.header.last_modified="Fri, 11 Jul 2025 06:53:08 GMT" http.response.body="" http.duration=582 http.response_content_length=123360 http.response.header.x_ratelimit_remaining=57 http.response.header.x_amz_request_id=1851200437933124 http.response.header.x_content_type_options=nosniff http.response.header.accept_ranges=bytes http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.x_ratelimit_limit=57 http.status_code=200 http.response.header.x_xss_protection="1; mode=block" http.response.header.content_type=application/json http.response.header.server=MinIO http.response.header.date="Fri, 11 Jul 2025 06:55:32 GMT" http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 +2025-07-11T08:55:33.012+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=68efed4c-8b6e-3f17-ad39-1475b47c11a7 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.request.body="" http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate?x-id=GetObject http.request.header.amz_sdk_invocation_id=f650d511-a836-436f-9f4f-ff5253d028e8 http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.request.header.range=bytes=0-5242879 http.request.header.amz_sdk_request="attempt=1; max=5" http.request.header.accept_encoding=identity http.request.header.x_amz_date=20250711T065533Z http.method=GET net.peer.name=storage.bridge.fourlights.dev http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 ft/s3-transfer m/G,b" http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;range;x-amz-checksum-mode;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.x_amz_checksum_mode=ENABLED +2025-07-11T08:55:33.324+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=68efed4c-8b6e-3f17-ad39-1475b47c11a7 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.status_code=206 http.response.header.x_xss_protection="1; mode=block" http.duration=312 http.response.header.last_modified="Fri, 11 Jul 2025 06:53:08 GMT" http.response.header.x_ratelimit_remaining=57 http.response.header.server=MinIO http.response.header.content_type=application/json http.response.header.accept_ranges=bytes http.response.body="[Redacted: 120.5 KB (123,360 bytes), Type: application/json]" http.response.header.x_amz_request_id=185120046145D7A0 http.response.header.date="Fri, 11 Jul 2025 06:55:33 GMT" http.response.header.x_ratelimit_limit=57 http.response.header.etag="\"848b9c152688f27c5f9f8f7a0977bb47\"" http.response_content_length=123360 http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.content_range="bytes 0-123359/123360" http.response.header.x_content_type_options=nosniff http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 +2025-07-11T08:55:33.324+0200 [WARN] backend-s3: Response has no supported checksum. Not validating response payload.: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=68efed4c-8b6e-3f17-ad39-1475b47c11a7 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T08:55:33.975+0200 [DEBUG] Config.VerifyDependencySelections: skipping registry.terraform.io/hashicorp/helm because it's overridden by a special configuration setting +2025-07-11T08:55:33.975+0200 [DEBUG] Building and walking 'eval' graph +2025-07-11T08:55:33.981+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/random"], implied first by module.mongodb.random_password.mongodb_root_password +2025-07-11T08:55:33.982+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/local"], implied first by module.zitadel.local_file.zitadel_jwt_profile_file +2025-07-11T08:55:33.982+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/zitadel/zitadel"], implied first by module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default +2025-07-11T08:55:33.982+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/null"], implied first by module.tenant-365zon.module.minio.null_resource.health_check +2025-07-11T08:55:33.982+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/external"], implied first by module.argocd.data.external.processed_values +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.zitadel.helm_release.zitadel" (*terraform.NodeAbstractResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.redis.helm_release.redis" (*terraform.NodeAbstractResource) needs module.redis.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_secret.zitadel" (*terraform.NodeAbstractResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default" (*terraform.NodeAbstractResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.argocd.data.external.processed_values" (*terraform.NodeAbstractResource) needs provider["registry.terraform.io/hashicorp/external"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay" (*terraform.NodeAbstractResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_namespace.mongodb" (*terraform.NodeAbstractResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.argocd.helm_release.argocd" (*terraform.NodeAbstractResource) needs module.argocd.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.monitoring.random_password.grafana_admin_password" (*terraform.NodeAbstractResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_root_password" (*terraform.NodeAbstractResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "data.minio_s3_object.k8s_yaml" (*terraform.NodeAbstractResource) needs provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default" (*terraform.NodeAbstractResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.random_password.tenant" (*terraform.NodeAbstractResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info" (*terraform.NodeAbstractResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay" (*terraform.NodeAbstractResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.argocd.random_password.admin_password" (*terraform.NodeAbstractResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.minio.helm_release.minio" (*terraform.NodeAbstractResource) needs module.minio.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_namespace.zitadel" (*terraform.NodeAbstractResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn" (*terraform.NodeAbstractResource) needs module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_action.groups-claim" (*terraform.NodeAbstractResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default" (*terraform.NodeAbstractResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default" (*terraform.NodeAbstractResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default" (*terraform.NodeAbstractResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file" (*terraform.NodeAbstractResource) needs provider["registry.terraform.io/hashicorp/local"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay" (*terraform.NodeAbstractResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_replica_set_key" (*terraform.NodeAbstractResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.monitoring.helm_release.kube_prometheus_stack" (*terraform.NodeAbstractResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth" (*terraform.NodeAbstractResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_secret.argocd-tls" (*terraform.NodeAbstractResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay" (*terraform.NodeAbstractResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_namespace.monitoring" (*terraform.NodeAbstractResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token" (*terraform.NodeAbstractResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.random_password.password" (*terraform.NodeAbstractResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_secret.mongodb_auth" (*terraform.NodeAbstractResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default" (*terraform.NodeAbstractResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_access_key" (*terraform.NodeAbstractResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.zitadel.random_password.zitadel_masterkey" (*terraform.NodeAbstractResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config" (*terraform.NodeAbstractResource) needs module.cluster-init.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_namespace.postgresql" (*terraform.NodeAbstractResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default" (*terraform.NodeAbstractResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_namespace.redis" (*terraform.NodeAbstractResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.argocd.data.kubernetes_secret.bridge-tls" (*terraform.NodeAbstractResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_user_password" (*terraform.NodeAbstractResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.mongodb.helm_release.mongodb" (*terraform.NodeAbstractResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay" (*terraform.NodeAbstractResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_namespace.argocd" (*terraform.NodeAbstractResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin" (*terraform.NodeAbstractResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default" (*terraform.NodeAbstractResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay" (*terraform.NodeAbstractResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.postgresql.helm_release.postgresql" (*terraform.NodeAbstractResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_secret.postgresql_auth" (*terraform.NodeAbstractResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_secret_key" (*terraform.NodeAbstractResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.storage" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.983+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default" (*terraform.NodeAbstractResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.984+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeAbstractResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.984+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.kubernetes_job.create-tenant" (*terraform.NodeAbstractResource) needs module.zitadel-db.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.984+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_secret.redis" (*terraform.NodeAbstractResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.984+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.helm_release.rabbitmq" (*terraform.NodeAbstractResource) needs module.rabbitmq.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:55:33.984+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_namespace.tenant" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.984+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.984+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default" (*terraform.NodeAbstractResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.984+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.984+0200 [DEBUG] ProviderTransformer: "module.redis.random_password.redis" (*terraform.NodeAbstractResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:55:33.984+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.984+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.null_resource.health_check" (*terraform.NodeAbstractResource) needs provider["registry.terraform.io/hashicorp/null"] +2025-07-11T08:55:33.984+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.984+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_root_password" (*terraform.NodeAbstractResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:55:33.984+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.984+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent" (*terraform.NodeAbstractResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.984+0200 [DEBUG] pruning unused module.zitadel-db.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:55:33.984+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/vault"] +2025-07-11T08:55:33.984+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.984+0200 [DEBUG] pruning unused module.mongodb.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:55:33.984+0200 [DEBUG] pruning unused module.tenant-365zon.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:55:33.985+0200 [DEBUG] pruning unused module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.985+0200 [DEBUG] pruning unused module.minio.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.985+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:55:33.985+0200 [DEBUG] pruning unused module.postgresql.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:55:33.985+0200 [DEBUG] pruning unused module.argocd.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:55:33.985+0200 [DEBUG] pruning unused provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:55:33.985+0200 [DEBUG] pruning unused module.cluster-init.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:55:33.985+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.985+0200 [DEBUG] pruning unused module.rabbitmq.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:55:33.985+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:55:33.986+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:33.986+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:33.998+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:55:33.999+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=971063 +2025-07-11T08:55:33.999+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:55:34.007+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.007+0200" +2025-07-11T08:55:34.019+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:34.019+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin3839337625 network=unix timestamp="2025-07-11T08:55:34.018+0200" +2025-07-11T08:55:34.031+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:34.032+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=971063 +2025-07-11T08:55:34.032+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:34.032+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.032+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.037+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:55:34.037+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=971080 +2025-07-11T08:55:34.037+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:55:34.056+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.056+0200" +2025-07-11T08:55:34.065+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin910897995 network=unix timestamp="2025-07-11T08:55:34.065+0200" +2025-07-11T08:55:34.065+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:34.127+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:34.129+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=971080 +2025-07-11T08:55:34.129+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:34.129+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.129+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.134+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5"] +2025-07-11T08:55:34.135+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 pid=971096 +2025-07-11T08:55:34.135+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 +2025-07-11T08:55:34.137+0200 [INFO] provider.terraform-provider-random_v3.7.2_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.137+0200" +2025-07-11T08:55:34.149+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:34.149+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: plugin address: network=unix address=/tmp/plugin2807124346 timestamp="2025-07-11T08:55:34.149+0200" +2025-07-11T08:55:34.158+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:55:34.158+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:34.159+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 id=971096 +2025-07-11T08:55:34.159+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:34.159+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.159+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.164+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:55:34.164+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=971105 +2025-07-11T08:55:34.164+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:55:34.170+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.170+0200" +2025-07-11T08:55:34.197+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:34.197+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin833139240 network=unix timestamp="2025-07-11T08:55:34.197+0200" +2025-07-11T08:55:34.212+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:34.213+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=971105 +2025-07-11T08:55:34.213+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:34.213+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.213+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.218+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5"] +2025-07-11T08:55:34.218+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 pid=971121 +2025-07-11T08:55:34.218+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 +2025-07-11T08:55:34.220+0200 [INFO] provider.terraform-provider-local_v2.5.3_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.220+0200" +2025-07-11T08:55:34.232+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:34.232+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: plugin address: network=unix address=/tmp/plugin1099366251 timestamp="2025-07-11T08:55:34.232+0200" +2025-07-11T08:55:34.241+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:55:34.242+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:34.243+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 id=971121 +2025-07-11T08:55:34.243+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:34.243+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.243+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.248+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:55:34.248+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=971133 +2025-07-11T08:55:34.248+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:55:34.262+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.262+0200" +2025-07-11T08:55:34.273+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:34.273+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin539406639 network=unix timestamp="2025-07-11T08:55:34.273+0200" +2025-07-11T08:55:34.283+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:55:34.283+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:34.285+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=971133 +2025-07-11T08:55:34.285+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:34.285+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.285+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.290+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5"] +2025-07-11T08:55:34.290+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 pid=971147 +2025-07-11T08:55:34.290+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 +2025-07-11T08:55:34.293+0200 [INFO] provider.terraform-provider-external_v2.3.5_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.293+0200" +2025-07-11T08:55:34.305+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:34.305+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: plugin address: address=/tmp/plugin917089974 network=unix timestamp="2025-07-11T08:55:34.305+0200" +2025-07-11T08:55:34.313+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:55:34.313+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:34.314+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 id=971147 +2025-07-11T08:55:34.314+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:34.314+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.314+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.318+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5"] +2025-07-11T08:55:34.318+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 pid=971157 +2025-07-11T08:55:34.318+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 +2025-07-11T08:55:34.321+0200 [INFO] provider.terraform-provider-null_v3.2.4_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.321+0200" +2025-07-11T08:55:34.334+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:34.334+0200 [DEBUG] provider.terraform-provider-null_v3.2.4_x5: plugin address: address=/tmp/plugin32233838 network=unix timestamp="2025-07-11T08:55:34.334+0200" +2025-07-11T08:55:34.343+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:55:34.343+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:34.344+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 id=971157 +2025-07-11T08:55:34.344+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:34.351+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.logoutSuffix (expand)" references: [] +2025-07-11T08:55:34.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand)] +2025-07-11T08:55:34.351+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.admin (expand)" references: [] +2025-07-11T08:55:34.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:55:34.351+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:55:34.351+0200 [DEBUG] ReferenceTransformer: "output.minio-root-secret-key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:55:34.351+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_namespace.zitadel" references: [module.zitadel.var.enabled (expand) module.zitadel.var.namespace (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_url (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_auth (expand)" references: [module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_username (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.minio.output.secret_key (expand)" references: [module.minio.random_password.minio_secret_key] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn" references: [module.cluster-init.module.longhorn.var.wait_on (expand) module.cluster-init.module.longhorn.var.namespace (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.usernames (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_access_key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.username (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.wait_on (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_admin_uri (expand)" references: [module.minio.local.admin_service_uri (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.uri (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_uri (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.tls (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_config (expand)" references: [module.zitadel-db.var.k8s_config_yaml (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.minio.var.replicas (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (close)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.wait_on (expand)" references: [module.zitadel-db.output.installed (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_config (expand)" references: [module.redis.var.k8s_config_yaml (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.bucket (expand)" references: [module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.server (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (close)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.minio.helm_release.minio" references: [module.minio.random_password.minio_access_key module.minio.random_password.minio_secret_key module.minio.var.mode (expand) module.minio.var.replicas (expand) module.minio.var.replicas (expand) module.minio.var.storageSize (expand) module.minio.var.namespace (expand) module.minio.local.service_uri (expand) module.minio.local.admin_service_uri (expand) module.minio.var.admin (expand) module.minio.var.mode (expand) module.minio.var.tls (expand) module.minio.var.ingressClass (expand) module.minio.var.displayOnHomepage (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.namespace (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)" references: [module.tenant-365zon.local.name (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_auth (expand)" references: [module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.connection_string (expand)" references: [module.mongodb.random_password.mongodb_root_password module.mongodb.var.replicas (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.redis.random_password.redis" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)" references: [module.tenant-365zon.var.org_id (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin_server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_replica_set_key" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_action.groups-claim" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_read_url (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.tls (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.redis.var.wait_on (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.secret_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.ingressClass (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (expand)" references: [] +2025-07-11T08:55:34.352+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default" references: [module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.namespace (expand)" references: [] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.minio.output.access_key (expand)" references: [module.minio.random_password.minio_access_key] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/aminueza/minio\"]" references: [var.secret_key var.region var.minio_server var.access_key] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (expand)" references: [] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.redis.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (expand)" references: [] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)" references: [] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)" references: [module.tenant-365zon.var.user_id (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.connection_string (expand)" references: [module.rabbitmq.random_password.password module.rabbitmq.var.namespace (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default" references: [module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.email (expand) module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.redis.var.namespace (expand)" references: [] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)" references: [module.tenant-365zon.kubernetes_namespace.tenant] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "local.k8s_config (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "output.monitoring (expand)" references: [module.monitoring.output.access_instructions (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (expand)" references: [] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close)" references: [] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_namespace.mongodb" references: [module.mongodb.var.namespace (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_database (expand)" references: [] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.namespace (expand)" references: [] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "local.tld (expand)" references: [] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "local.k8s_auth (expand)" references: [local.k8s_config (expand) local.k8s_config (expand) local.k8s_config (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.database (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_bucket (expand)" references: [module.tenant-365zon.module.minio.output.bucket (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings" references: [module.tenant-365zon.var.mongodb_connection_string (expand) module.tenant-365zon.var.rabbitmq_connection_string (expand) module.tenant-365zon.kubernetes_namespace.tenant] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:55:34.353+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.kubernetes_job.create-tenant" references: [module.zitadel-db.var.wait_on (expand) module.zitadel-db.var.enabled (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.namespace (expand) module.zitadel-db.var.host (expand) module.zitadel-db.var.root_username (expand) module.zitadel-db.var.root_password (expand) module.zitadel-db.var.root_database (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.name (expand) module.zitadel-db.random_password.tenant] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "var.access_key" references: [] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_db_start_index (expand)" references: [] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.service_uri (expand)" references: [module.rabbitmq.var.service_name (expand) module.rabbitmq.var.server_dns (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.service_name (expand)" references: [] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.minio.var.tls (expand)" references: [] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (expand)" references: [] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (close)" references: [] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.job_name (expand)" references: [module.zitadel-db.var.enabled (expand) module.zitadel-db.kubernetes_job.create-tenant] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_namespace.argocd" references: [module.argocd.var.namespace (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)" references: [] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "local.node_count (expand)" references: [] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_host (expand)" references: [module.postgresql.local.k8s_config (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.namespace (expand)" references: [] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)" references: [] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/local\"]" references: [] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (close)" references: [] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_secret.redis" references: [module.redis.random_password.redis module.redis.kubernetes_namespace.redis] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd" references: [module.argocd.var.wait_on (expand) module.argocd.kubernetes_secret.argocd-tls module.argocd.kubernetes_namespace.argocd module.argocd.random_password.admin_password module.argocd.data.external.processed_values] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.replicas (expand)" references: [] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "local.cluster_shortname (expand)" references: [] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_config (expand)" references: [module.postgresql.var.k8s_config_yaml (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.null_resource.health_check" references: [module.tenant-365zon.module.minio.var.wait_on (expand) module.tenant-365zon.module.minio.var.server (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:55:34.354+0200 [DEBUG] ReferenceTransformer: "var.vault_token" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.enabled (expand)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.wait_on (expand)" references: [module.zitadel-argocd.output.installed (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_config (expand)" references: [module.monitoring.var.k8s_config_yaml (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.grpc_service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.scopes (expand)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.display_on_homepage (expand)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_secret_key (expand)" references: [module.tenant-365zon.module.minio.output.secret_key (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay module.tenant-365zon.module.minio.minio_iam_policy.overlay module.tenant-365zon.module.minio.minio_iam_policy.overlay module.tenant-365zon.module.minio.minio_iam_user.overlay] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (expand)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)" references: [module.zitadel-bootstrap.var.domain (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "local.bridge_dns (expand)" references: [local.tld (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_password (expand)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_access_key (expand)" references: [module.minio.random_password.minio_access_key] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (close)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.server (expand)" references: [module.tenant-365zon.var.minio_server (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_host (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_host (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "local.k8s_host (expand)" references: [local.k8s_config (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.cluster-init.local.k8s_host (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.namespace (expand)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_secret (expand)" references: [module.zitadel-argocd.output.client_secret (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.idp_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.tenant-365zon.local.k8s_host (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default" references: [module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_config (expand)" references: [module.argocd.var.k8s_config_yaml (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.output.installed (expand)" references: [module.cluster-init.module.longhorn.output.installed (expand) module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.monitoring.random_password.grafana_admin_password" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.provider[\"registry.terraform.io/aminueza/minio\"]" references: [module.tenant-365zon.module.minio.var.region (expand) module.tenant-365zon.module.minio.var.server (expand) module.tenant-365zon.module.minio.var.access_key (expand) module.tenant-365zon.module.minio.var.secret_key (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.monitoring (close)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (close)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack" references: [module.monitoring.var.wait_on (expand) module.monitoring.kubernetes_secret.prometheus_remote_write_auth module.monitoring.kubernetes_namespace.monitoring module.monitoring.var.remote_write_url (expand) module.monitoring.var.remote_read_url (expand) module.monitoring.random_password.grafana_admin_password] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.helm_release.rabbitmq" references: [module.rabbitmq.random_password.password module.rabbitmq.var.wait_on (expand) module.rabbitmq.var.namespace (expand) module.rabbitmq.random_password.password module.rabbitmq.local.service_uri (expand) module.rabbitmq.var.admin (expand) module.rabbitmq.var.tls (expand) module.rabbitmq.var.ingressClass (expand) module.rabbitmq.var.replicas (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (validation)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.root_password (expand)" references: [module.postgresql.random_password.postgresql_root_password] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.server_dns (expand)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.minio.var.displayOnHomepage (expand)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.redis_db_next_start_index (expand)" references: [module.argocd.var.redis_db_start_index (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.redis (expand)" references: [] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:55:34.355+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin" references: [module.zitadel.helm_release.zitadel module.zitadel.var.namespace (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database (expand)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "output.minio-root-access-key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (expand)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.rabbitmq.local.k8s_host (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (expand)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.access_key (expand)" references: [module.tenant-365zon.var.minio_access_key (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_auth (expand)" references: [module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.service_uri (expand)" references: [module.monitoring.var.service_name (expand) module.monitoring.var.server_dns (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.minio.output.installed (expand)" references: [module.minio.helm_release.minio] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel (expand)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.storage" references: [module.tenant-365zon.module.minio.output.access_key (expand) module.tenant-365zon.module.minio.output.secret_key (expand) module.tenant-365zon.var.minio_api_uri (expand) module.tenant-365zon.module.minio.output.bucket (expand) module.tenant-365zon.kubernetes_namespace.tenant] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.wait_on (expand)" references: [module.cluster-init.var.wait_on (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.tenant-365zon.var.jwt_profile_file (expand) module.tenant-365zon.var.domain (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.enabled (expand)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.minio.var.namespace (expand)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.redis.output.installed (expand)" references: [module.redis.helm_release.redis] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.postgresql (close)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.kubernetes_secret.bridge-tls" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.region (expand)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_auth (expand)" references: [module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.service_uri (expand)" references: [module.zitadel.var.service_name (expand) module.zitadel.var.server_dns (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.admin_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.prometheus_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_secret.mongodb_auth" references: [module.mongodb.var.wait_on (expand) module.mongodb.random_password.mongodb_root_password module.mongodb.random_password.mongodb_replica_set_key module.mongodb.kubernetes_namespace.mongodb] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_auth (expand)" references: [module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_auth (expand)" references: [module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.jwt_profile_file (expand)" references: [module.zitadel.local_file.zitadel_jwt_profile_file] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (close)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel (close)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_config (expand)" references: [module.rabbitmq.var.k8s_config_yaml (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.grafana_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_access_key (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.minio.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.service_name (expand)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_username (expand)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.user_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_namespace.tenant" references: [module.tenant-365zon.var.wait_on (expand) module.tenant-365zon.local.name (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_username (expand)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-bootstrap.var.jwt_profile_file (expand) module.zitadel-bootstrap.var.domain (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.redis (close)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token" references: [module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.random_password.tenant" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "var.endpoints" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.name (expand)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.minio.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.minio.var.ingressClass (expand)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.minio.local.admin_service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.admin_server_dns (expand) module.minio.var.admin_server_dns (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_config (expand)" references: [module.zitadel-bootstrap.var.k8s_config_yaml (expand)] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.installed (expand)" references: [module.mongodb.helm_release.mongodb] +2025-07-11T08:55:34.356+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.namespace (expand)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_host (expand)" references: [module.monitoring.local.k8s_config (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_config (expand)" references: [module.minio.var.k8s_config_yaml (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay" references: [module.tenant-365zon.module.minio.null_resource.health_check module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.wait_on (expand)" references: [module.postgresql.output.installed (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.cluster-init.module.longhorn.local.k8s_host (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/null\"]" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (expand)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (expand)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel.helm_release.zitadel" references: [module.zitadel.var.wait_on (expand) module.zitadel.kubernetes_secret.zitadel module.zitadel.var.enabled (expand) module.zitadel.kubernetes_namespace.zitadel module.zitadel.local.service_uri (expand) module.zitadel.var.database (expand) module.zitadel.var.database_username (expand) module.zitadel.var.database_password (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.database_root_username (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.display_on_homepage (expand) module.zitadel.var.ingressClass (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default" references: [module.zitadel-argocd.module.zitadel_project.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project.var.name (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default" references: [module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-argocd.var.jwt_profile_file (expand) module.zitadel-argocd.var.domain (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.minio.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.minio.local.k8s_host (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.mongodb (close)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (close)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_host (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (close)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (close)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (close)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.external.processed_values" references: [module.argocd.local.service_uri (expand) module.argocd.var.server_dns (expand) module.argocd.local.grpc_service_uri (expand) module.argocd.var.redis_db_start_index (expand) module.argocd.var.redis_password (expand) module.argocd.var.oauth_uri (expand) module.argocd.var.oauth_issuer (expand) module.argocd.var.oauth_client_id (expand) module.argocd.var.oauth_client_secret (expand) module.argocd.var.oauth_redirect_uri (expand) module.argocd.var.tls (expand) module.argocd.var.ingressClass (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.ingressClass (expand)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (expand)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.enabled (expand)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.wait_on (expand)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_auth (expand)" references: [module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_user_password" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_api_uri (expand)" references: [module.minio.output.minio_api_uri (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.installed (expand)" references: [module.postgresql.helm_release.postgresql] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.owners (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.rabbitmq_connection_string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_root_password" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_iam_user.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_redirect_uri (expand)" references: [module.zitadel.output.server (expand) module.zitadel-argocd.output.logoutSuffix (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_username (expand)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.wait_on (expand)" references: [module.argocd.output.installed (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_config (expand)" references: [module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.minio.var.service_name (expand)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.org_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_access_key" references: [] +2025-07-11T08:55:34.357+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.installed (expand)" references: [module.rabbitmq.helm_release.rabbitmq] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_api_uri (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.ingressClass (expand)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "local.k8s_config_yaml (expand)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (close)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file" references: [module.zitadel.data.kubernetes_secret.zitadel_admin] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_auth (expand)" references: [module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_host (expand)" references: [module.minio.local.k8s_config (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_host (expand)" references: [module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (close)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.databases (expand)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.namespace (expand)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_auth (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_host (expand)" references: [module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.password (expand)" references: [module.zitadel-db.random_password.tenant] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.installed (expand)" references: [module.argocd.helm_release.argocd] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.random_password.password" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel.random_password.zitadel_masterkey" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.ingressClass (expand)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.secret_key (expand)" references: [module.tenant-365zon.var.minio_secret_key (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (close)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "local.cluster_dns (expand)" references: [local.cluster_shortname (expand) local.tld (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (expand)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (close)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.mongodb_connection_string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_host (expand)" references: [module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (close)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.host (expand)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_secret_key (expand)" references: [module.minio.random_password.minio_secret_key] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.monitoring (expand)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay" references: [module.tenant-365zon.module.minio.null_resource.health_check module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "var.secret_key" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_password (expand)" references: [module.redis.output.password (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (expand)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_config (expand)" references: [module.tenant-365zon.var.k8s_config_yaml (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.redis.helm_release.redis" references: [module.redis.var.wait_on (expand) module.redis.kubernetes_namespace.redis module.redis.var.architecture (validation) module.redis.var.architecture (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (close)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "output.minio-access-key (expand)" references: [module.tenant-365zon.output.minio_access_key (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.postgresql (expand)" references: [] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.minio.local.service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_auth (expand)" references: [module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T08:55:34.358+0200 [DEBUG] ReferenceTransformer: "module.argocd (expand)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_secret_key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.postgresql.helm_release.postgresql" references: [module.postgresql.var.wait_on (expand) module.postgresql.kubernetes_secret.postgresql_auth module.postgresql.var.enabled (expand) module.postgresql.var.username (expand) module.postgresql.kubernetes_namespace.postgresql] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "var.bucket" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (expand)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth" references: [module.monitoring.var.remote_write_username (expand) module.monitoring.var.remote_write_password (expand) module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "var.region" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (expand)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_host (expand)" references: [module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.tld (expand)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_auth (expand)" references: [module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.output.installed (expand)" references: [module.cluster-init.module.longhorn.helm_release.longhorn] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.redis.output.password (expand)" references: [module.redis.random_password.redis] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_server (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (expand)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (close)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.mongodb.helm_release.mongodb" references: [module.mongodb.var.wait_on (expand) module.mongodb.kubernetes_secret.mongodb_auth module.mongodb.kubernetes_namespace.mongodb module.mongodb.var.usernames (expand) module.mongodb.var.databases (expand) module.mongodb.var.replicas (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.name (expand)" references: [module.zitadel-argocd.var.name (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_host (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/external\"]" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (close)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (close)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_secret.argocd-tls" references: [module.argocd.data.kubernetes_secret.bridge-tls module.argocd.data.kubernetes_secret.bridge-tls module.argocd.kubernetes_namespace.argocd] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.argocd_service_domain (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_id (expand)" references: [module.zitadel-argocd.output.client_id (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.installed (expand)" references: [module.zitadel.helm_release.zitadel module.zitadel.local_file.zitadel_jwt_profile_file] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (expand)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (expand)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default" references: [module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_auth (expand)" references: [module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.minio (expand)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_password (expand)" references: [module.zitadel-db.output.password (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.access_instructions (expand)" references: [module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.random_password.grafana_admin_password] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_host (expand)" references: [module.mongodb.local.k8s_config (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.minio.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_auth (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (close)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_host (expand)" references: [module.argocd.local.k8s_config (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.argocd.random_password.admin_password" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.name (expand)" references: [] +2025-07-11T08:55:34.359+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_issuer (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.access_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (expand)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "data.minio_s3_object.k8s_yaml" references: [var.bucket] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_namespace.redis" references: [module.redis.var.namespace (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.name (expand)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.enabled (expand)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "output.argocd-root-password (expand)" references: [module.argocd.output.admin_password (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.password (expand)" references: [module.postgresql.random_password.postgresql_user_password] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (close)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (expand)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (expand)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (expand)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.minio (close)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "var.vault_addr" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_config (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.admin_password (expand)" references: [module.argocd.random_password.admin_password] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default" references: [module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.service_name (expand)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_config (expand)" references: [module.zitadel.var.k8s_config_yaml (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.argocd (close)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_secret.postgresql_auth" references: [module.postgresql.var.wait_on (expand) module.postgresql.var.enabled (expand) module.postgresql.random_password.postgresql_user_password module.postgresql.random_password.postgresql_root_password module.postgresql.kubernetes_namespace.postgresql] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_config (expand)" references: [module.mongodb.var.k8s_config_yaml (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "var.minio_server" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.minio.var.mode (expand)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_host (expand)" references: [module.redis.local.k8s_config (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_host (expand)" references: [module.zitadel.local.k8s_config (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.email (expand)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.application_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "output.minio-secret-key (expand)" references: [module.tenant-365zon.output.minio_secret_key (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.replicas (expand)" references: [local.node_count (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.username (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "output.rabbitmq-connection-string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.mongodb (expand)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "output.mongodb-connection-string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.namespace (expand)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.service_name (expand)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)" references: [] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:55:34.360+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.alertmanager_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (close)" references: [] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_namespace.postgresql" references: [module.postgresql.var.enabled (expand) module.postgresql.var.namespace (expand)] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.wait_on (expand)" references: [module.minio.output.installed (expand)] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.local.argocd_uri (expand)" references: [module.zitadel-argocd.var.argocd_service_domain (expand)] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (close)" references: [] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand)" references: [] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)" references: [] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.wait_on (expand)" references: [] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.installed (expand)" references: [module.zitadel-db.kubernetes_job.create-tenant] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_root_password" references: [] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.name (expand)" references: [] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_secret_key" references: [] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_secret.zitadel" references: [module.zitadel.var.enabled (expand) module.zitadel.random_password.zitadel_masterkey module.zitadel.kubernetes_namespace.zitadel] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)" references: [] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_server (expand)" references: [module.minio.output.minio_server (expand)] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.minio.var.storageSize (expand)" references: [] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (close)" references: [] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (expand)" references: [] +2025-07-11T08:55:34.361+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:55:34.395+0200 [DEBUG] Starting graph walk: walkEval +2025-07-11T08:55:34.397+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.397+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.400+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.401+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.401+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.401+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.401+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.401+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.401+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.401+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.401+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.401+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.403+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5"] +2025-07-11T08:55:34.403+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 pid=971166 +2025-07-11T08:55:34.403+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 +2025-07-11T08:55:34.405+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 args=[".terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1"] +2025-07-11T08:55:34.405+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 args=[".terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1"] +2025-07-11T08:55:34.405+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 args=[".terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1"] +2025-07-11T08:55:34.405+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 pid=971171 +2025-07-11T08:55:34.405+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 +2025-07-11T08:55:34.405+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 pid=971173 +2025-07-11T08:55:34.405+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 +2025-07-11T08:55:34.406+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 pid=971172 +2025-07-11T08:55:34.406+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 +2025-07-11T08:55:34.406+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 args=[".terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1"] +2025-07-11T08:55:34.406+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 args=[".terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1"] +2025-07-11T08:55:34.406+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 pid=971174 +2025-07-11T08:55:34.406+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 +2025-07-11T08:55:34.406+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 pid=971175 +2025-07-11T08:55:34.406+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 +2025-07-11T08:55:34.407+0200 [INFO] provider.terraform-provider-null_v3.2.4_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.406+0200" +2025-07-11T08:55:34.408+0200 [INFO] provider.terraform-provider-slugify_v0.1.1: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.408+0200" +2025-07-11T08:55:34.409+0200 [INFO] provider.terraform-provider-slugify_v0.1.1: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.408+0200" +2025-07-11T08:55:34.409+0200 [INFO] provider.terraform-provider-slugify_v0.1.1: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.408+0200" +2025-07-11T08:55:34.409+0200 [INFO] provider.terraform-provider-slugify_v0.1.1: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.408+0200" +2025-07-11T08:55:34.409+0200 [INFO] provider.terraform-provider-slugify_v0.1.1: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.408+0200" +2025-07-11T08:55:34.419+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:34.419+0200 [DEBUG] provider.terraform-provider-null_v3.2.4_x5: plugin address: network=unix address=/tmp/plugin1690416579 timestamp="2025-07-11T08:55:34.419+0200" +2025-07-11T08:55:34.420+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:34.420+0200 [DEBUG] provider.terraform-provider-slugify_v0.1.1: plugin address: address=/tmp/plugin2452319616 network=unix timestamp="2025-07-11T08:55:34.420+0200" +2025-07-11T08:55:34.420+0200 [DEBUG] provider.terraform-provider-slugify_v0.1.1: plugin address: network=unix address=/tmp/plugin3612860164 timestamp="2025-07-11T08:55:34.420+0200" +2025-07-11T08:55:34.420+0200 [DEBUG] provider.terraform-provider-slugify_v0.1.1: plugin address: address=/tmp/plugin2415579859 network=unix timestamp="2025-07-11T08:55:34.420+0200" +2025-07-11T08:55:34.420+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:34.420+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:34.420+0200 [DEBUG] provider.terraform-provider-slugify_v0.1.1: plugin address: address=/tmp/plugin1397288233 network=unix timestamp="2025-07-11T08:55:34.420+0200" +2025-07-11T08:55:34.420+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:34.420+0200 [DEBUG] provider.terraform-provider-slugify_v0.1.1: plugin address: network=unix address=/tmp/plugin584437119 timestamp="2025-07-11T08:55:34.420+0200" +2025-07-11T08:55:34.420+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:34.427+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.428+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.428+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.428+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.432+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:55:34.432+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:55:34.432+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:55:34.433+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 args=[".terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1"] +2025-07-11T08:55:34.433+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:34.433+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:34.433+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:34.433+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 pid=971219 +2025-07-11T08:55:34.433+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 +2025-07-11T08:55:34.433+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 id=971171 +2025-07-11T08:55:34.433+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 id=971173 +2025-07-11T08:55:34.433+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:34.433+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 id=971174 +2025-07-11T08:55:34.433+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:34.433+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:34.433+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5"] +2025-07-11T08:55:34.433+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:34.433+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 pid=971220 +2025-07-11T08:55:34.434+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 +2025-07-11T08:55:34.434+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:34.434+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 id=971175 +2025-07-11T08:55:34.434+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:34.434+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 id=971172 +2025-07-11T08:55:34.434+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:34.435+0200 [INFO] provider.terraform-provider-slugify_v0.1.1: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.435+0200" +2025-07-11T08:55:34.435+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.435+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.436+0200 [INFO] provider.terraform-provider-external_v2.3.5_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.436+0200" +2025-07-11T08:55:34.440+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 args=[".terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2"] +2025-07-11T08:55:34.440+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 pid=971229 +2025-07-11T08:55:34.440+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 +2025-07-11T08:55:34.447+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:34.447+0200 [DEBUG] provider.terraform-provider-slugify_v0.1.1: plugin address: address=/tmp/plugin66182235 network=unix timestamp="2025-07-11T08:55:34.447+0200" +2025-07-11T08:55:34.448+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:34.448+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: plugin address: address=/tmp/plugin3652073372 network=unix timestamp="2025-07-11T08:55:34.448+0200" +2025-07-11T08:55:34.455+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:34.455+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 id=971219 +2025-07-11T08:55:34.455+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:34.456+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.456+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.456+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.456+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.457+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.457+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.460+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 args=[".terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1"] +2025-07-11T08:55:34.460+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 pid=971254 +2025-07-11T08:55:34.460+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 +2025-07-11T08:55:34.461+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 args=[".terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2"] +2025-07-11T08:55:34.461+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 pid=971255 +2025-07-11T08:55:34.461+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 +2025-07-11T08:55:34.461+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 args=[".terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2"] +2025-07-11T08:55:34.462+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 pid=971260 +2025-07-11T08:55:34.462+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 +2025-07-11T08:55:34.463+0200 [INFO] provider.terraform-provider-slugify_v0.1.1: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.463+0200" +2025-07-11T08:55:34.464+0200 [INFO] provider.terraform-provider-argocd_v7.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.464+0200" +2025-07-11T08:55:34.474+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:34.474+0200 [DEBUG] provider.terraform-provider-slugify_v0.1.1: plugin address: address=/tmp/plugin1457620860 network=unix timestamp="2025-07-11T08:55:34.474+0200" +2025-07-11T08:55:34.480+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:34.480+0200 [DEBUG] provider.terraform-provider-argocd_v7.0.2: plugin address: address=/tmp/plugin1903205783 network=unix timestamp="2025-07-11T08:55:34.476+0200" +2025-07-11T08:55:34.486+0200 [INFO] provider.terraform-provider-argocd_v7.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.485+0200" +2025-07-11T08:55:34.486+0200 [INFO] provider.terraform-provider-argocd_v7.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.484+0200" +2025-07-11T08:55:34.486+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.486+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.491+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5"] +2025-07-11T08:55:34.492+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 pid=971297 +2025-07-11T08:55:34.492+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 +2025-07-11T08:55:34.494+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.494+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.495+0200 [INFO] provider.terraform-provider-local_v2.5.3_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.495+0200" +2025-07-11T08:55:34.496+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.496+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.496+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.496+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.497+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:34.497+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:34.497+0200 [DEBUG] provider.terraform-provider-argocd_v7.0.2: plugin address: address=/tmp/plugin4196627757 network=unix timestamp="2025-07-11T08:55:34.497+0200" +2025-07-11T08:55:34.497+0200 [DEBUG] provider.terraform-provider-argocd_v7.0.2: plugin address: network=unix address=/tmp/plugin2432794949 timestamp="2025-07-11T08:55:34.497+0200" +2025-07-11T08:55:34.500+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 args=[".terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2"] +2025-07-11T08:55:34.500+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 pid=971304 +2025-07-11T08:55:34.500+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 +2025-07-11T08:55:34.501+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 args=[".terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2"] +2025-07-11T08:55:34.501+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 pid=971305 +2025-07-11T08:55:34.501+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 +2025-07-11T08:55:34.501+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 args=[".terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2"] +2025-07-11T08:55:34.501+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 pid=971306 +2025-07-11T08:55:34.501+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 +2025-07-11T08:55:34.509+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:34.509+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: plugin address: address=/tmp/plugin858923941 network=unix timestamp="2025-07-11T08:55:34.509+0200" +2025-07-11T08:55:34.518+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:34.520+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.520+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.522+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 id=971229 +2025-07-11T08:55:34.522+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:34.528+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5"] +2025-07-11T08:55:34.529+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 pid=971347 +2025-07-11T08:55:34.529+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 +2025-07-11T08:55:34.531+0200 [INFO] provider.terraform-provider-argocd_v7.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.531+0200" +2025-07-11T08:55:34.532+0200 [INFO] provider.terraform-provider-argocd_v7.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.532+0200" +2025-07-11T08:55:34.532+0200 [INFO] provider.terraform-provider-argocd_v7.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.532+0200" +2025-07-11T08:55:34.533+0200 [INFO] provider.terraform-provider-random_v3.7.2_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.533+0200" +2025-07-11T08:55:34.534+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:34.536+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 id=971260 +2025-07-11T08:55:34.536+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:34.537+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:34.538+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 id=971255 +2025-07-11T08:55:34.539+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:34.542+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:34.542+0200 [DEBUG] provider.terraform-provider-argocd_v7.0.2: plugin address: address=/tmp/plugin3454172918 network=unix timestamp="2025-07-11T08:55:34.542+0200" +2025-07-11T08:55:34.547+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:34.547+0200 [DEBUG] provider.terraform-provider-argocd_v7.0.2: plugin address: address=/tmp/plugin1055119852 network=unix timestamp="2025-07-11T08:55:34.544+0200" +2025-07-11T08:55:34.547+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:34.547+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:34.547+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: plugin address: address=/tmp/plugin2828209974 network=unix timestamp="2025-07-11T08:55:34.544+0200" +2025-07-11T08:55:34.547+0200 [DEBUG] provider.terraform-provider-argocd_v7.0.2: plugin address: address=/tmp/plugin1642706564 network=unix timestamp="2025-07-11T08:55:34.544+0200" +2025-07-11T08:55:34.553+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:34.555+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 id=971306 +2025-07-11T08:55:34.555+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:34.556+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:34.557+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 id=971305 +2025-07-11T08:55:34.557+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:34.559+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.559+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.560+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:34.561+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 id=971304 +2025-07-11T08:55:34.561+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:34.563+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:55:34.563+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=971360 +2025-07-11T08:55:34.563+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:55:34.570+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.570+0200" +2025-07-11T08:55:34.597+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:34.597+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin1874675737 network=unix timestamp="2025-07-11T08:55:34.597+0200" +2025-07-11T08:55:34.609+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.609+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.614+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:55:34.614+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=971372 +2025-07-11T08:55:34.614+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:55:34.633+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.633+0200" +2025-07-11T08:55:34.641+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:34.642+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin4069780300 network=unix timestamp="2025-07-11T08:55:34.641+0200" +2025-07-11T08:55:34.648+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.648+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.653+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:55:34.653+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=971388 +2025-07-11T08:55:34.653+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:55:34.671+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.671+0200" +2025-07-11T08:55:34.679+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:34.679+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin3482040006 network=unix timestamp="2025-07-11T08:55:34.679+0200" +2025-07-11T08:55:34.687+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.687+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.692+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:55:34.692+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=971406 +2025-07-11T08:55:34.692+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:55:34.706+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.706+0200" +2025-07-11T08:55:34.718+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin1833400214 network=unix timestamp="2025-07-11T08:55:34.718+0200" +2025-07-11T08:55:34.718+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:34.726+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.726+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.732+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:55:34.732+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=971420 +2025-07-11T08:55:34.732+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:55:34.753+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.753+0200" +2025-07-11T08:55:34.763+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2049273502 network=unix timestamp="2025-07-11T08:55:34.763+0200" +2025-07-11T08:55:34.763+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:34.772+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.773+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.778+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:55:34.778+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=971438 +2025-07-11T08:55:34.778+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:55:34.798+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.798+0200" +2025-07-11T08:55:34.807+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:34.807+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin3109096268 network=unix timestamp="2025-07-11T08:55:34.807+0200" +2025-07-11T08:55:34.814+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.814+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.819+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:55:34.819+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=971454 +2025-07-11T08:55:34.819+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:55:34.834+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.834+0200" +2025-07-11T08:55:34.846+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:34.846+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin2926493350 network=unix timestamp="2025-07-11T08:55:34.846+0200" +2025-07-11T08:55:34.853+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.853+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.858+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:55:34.858+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=971468 +2025-07-11T08:55:34.858+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:55:34.877+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.877+0200" +2025-07-11T08:55:34.886+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:34.886+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin996972847 network=unix timestamp="2025-07-11T08:55:34.886+0200" +2025-07-11T08:55:34.893+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.893+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.897+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:55:34.898+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=971486 +2025-07-11T08:55:34.898+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:55:34.911+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.911+0200" +2025-07-11T08:55:34.924+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin651080053 network=unix timestamp="2025-07-11T08:55:34.924+0200" +2025-07-11T08:55:34.924+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:34.932+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.932+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.937+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:55:34.937+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=971501 +2025-07-11T08:55:34.937+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:55:34.950+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.950+0200" +2025-07-11T08:55:34.962+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: network=unix address=/tmp/plugin1338039169 timestamp="2025-07-11T08:55:34.962+0200" +2025-07-11T08:55:34.962+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:34.969+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:34.969+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:34.974+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:55:34.974+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=971515 +2025-07-11T08:55:34.974+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:55:34.987+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:55:34.987+0200" +2025-07-11T08:55:34.999+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin2865845862 network=unix timestamp="2025-07-11T08:55:34.999+0200" +2025-07-11T08:55:34.999+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:35.007+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:35.007+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:35.011+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:55:35.011+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=971529 +2025-07-11T08:55:35.011+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:55:35.030+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:55:35.030+0200" +2025-07-11T08:55:35.038+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:35.038+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2371739129 network=unix timestamp="2025-07-11T08:55:35.038+0200" +2025-07-11T08:55:35.045+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:35.045+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:35.049+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:55:35.050+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=971547 +2025-07-11T08:55:35.050+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:55:35.068+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:55:35.068+0200" +2025-07-11T08:55:35.076+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:35.076+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1602651321 network=unix timestamp="2025-07-11T08:55:35.076+0200" +2025-07-11T08:55:35.083+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:35.083+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:35.088+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:55:35.088+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=971565 +2025-07-11T08:55:35.088+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:55:35.103+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:55:35.103+0200" +2025-07-11T08:55:35.115+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:35.115+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin901829901 network=unix timestamp="2025-07-11T08:55:35.115+0200" +2025-07-11T08:55:35.124+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:35.124+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:35.128+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:55:35.128+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=971580 +2025-07-11T08:55:35.128+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:55:35.146+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:55:35.146+0200" +2025-07-11T08:55:35.154+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:35.154+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: network=unix address=/tmp/plugin4104329661 timestamp="2025-07-11T08:55:35.154+0200" +2025-07-11T08:55:35.162+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:35.162+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:35.166+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:55:35.166+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=971598 +2025-07-11T08:55:35.166+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:55:35.180+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:55:35.180+0200" +2025-07-11T08:55:35.192+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin1071446718 network=unix timestamp="2025-07-11T08:55:35.192+0200" +2025-07-11T08:55:35.192+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:35.200+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:35.200+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:35.204+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:55:35.204+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=971613 +2025-07-11T08:55:35.204+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:55:35.218+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:55:35.218+0200" +2025-07-11T08:55:35.229+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:35.229+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin3404503942 network=unix timestamp="2025-07-11T08:55:35.229+0200" +2025-07-11T08:55:35.237+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.238+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 id=971347 +2025-07-11T08:55:35.238+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.238+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.240+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=971360 +2025-07-11T08:55:35.240+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.240+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.241+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=971388 +2025-07-11T08:55:35.241+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.242+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.243+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=971420 +2025-07-11T08:55:35.243+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.243+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.244+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=971438 +2025-07-11T08:55:35.244+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.244+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.246+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=971406 +2025-07-11T08:55:35.246+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.247+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.248+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=971515 +2025-07-11T08:55:35.248+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.251+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.254+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 id=971166 +2025-07-11T08:55:35.254+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.256+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.258+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=971529 +2025-07-11T08:55:35.258+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.260+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.264+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=971565 +2025-07-11T08:55:35.264+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.264+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.266+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=971580 +2025-07-11T08:55:35.266+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.267+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.269+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=971598 +2025-07-11T08:55:35.269+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.269+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:35.270+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:35.274+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:55:35.275+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=971631 +2025-07-11T08:55:35.275+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:55:35.294+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:55:35.294+0200" +2025-07-11T08:55:35.303+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:35.303+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1960738479 network=unix timestamp="2025-07-11T08:55:35.303+0200" +2025-07-11T08:55:35.310+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:35.310+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:35.315+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:55:35.315+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=971649 +2025-07-11T08:55:35.315+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:55:35.329+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:55:35.329+0200" +2025-07-11T08:55:35.340+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin983805010 network=unix timestamp="2025-07-11T08:55:35.340+0200" +2025-07-11T08:55:35.340+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:35.348+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.349+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=971547 +2025-07-11T08:55:35.349+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.350+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.351+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=971501 +2025-07-11T08:55:35.351+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.352+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.352+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 id=971297 +2025-07-11T08:55:35.352+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.353+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.354+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=971454 +2025-07-11T08:55:35.354+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.354+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.355+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=971372 +2025-07-11T08:55:35.355+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.355+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:35.355+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:35.359+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:55:35.359+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=971662 +2025-07-11T08:55:35.359+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:55:35.366+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:55:35.366+0200" +2025-07-11T08:55:35.393+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:55:35.393+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin1969516662 network=unix timestamp="2025-07-11T08:55:35.393+0200" +2025-07-11T08:55:35.406+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.407+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=971631 +2025-07-11T08:55:35.407+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.408+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.409+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=971649 +2025-07-11T08:55:35.409+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.409+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:35.409+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:35.414+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:55:35.414+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=971674 +2025-07-11T08:55:35.414+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:55:35.422+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:55:35.422+0200" +2025-07-11T08:55:35.435+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:35.435+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin4081639028 network=unix timestamp="2025-07-11T08:55:35.435+0200" +2025-07-11T08:55:35.443+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:35.443+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:35.447+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:55:35.448+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=971688 +2025-07-11T08:55:35.448+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:55:35.456+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:55:35.456+0200" +2025-07-11T08:55:35.467+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:35.467+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin3194148344 network=unix timestamp="2025-07-11T08:55:35.467+0200" +2025-07-11T08:55:35.475+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:55:35.475+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:55:35.479+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:55:35.479+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=971702 +2025-07-11T08:55:35.479+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:55:35.486+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:55:35.486+0200" +2025-07-11T08:55:35.498+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:55:35.498+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: network=unix address=/tmp/plugin1045972831 timestamp="2025-07-11T08:55:35.498+0200" +2025-07-11T08:55:35.506+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.507+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=971662 +2025-07-11T08:55:35.507+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.508+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.509+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=971702 +2025-07-11T08:55:35.509+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.509+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.510+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=971674 +2025-07-11T08:55:35.510+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.510+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.511+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 id=971220 +2025-07-11T08:55:35.511+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.512+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.514+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=971613 +2025-07-11T08:55:35.514+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.514+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.516+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=971486 +2025-07-11T08:55:35.516+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.516+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.517+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=971688 +2025-07-11T08:55:35.517+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.518+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.519+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=971468 +2025-07-11T08:55:35.519+0200 [DEBUG] provider: plugin exited +2025-07-11T08:55:35.520+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:55:35.521+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 id=971254 +2025-07-11T08:55:35.521+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:19.542+0200 [INFO] Terraform version: 1.12.1 +2025-07-11T08:58:19.542+0200 [DEBUG] using github.com/hashicorp/go-tfe v1.74.1 +2025-07-11T08:58:19.542+0200 [DEBUG] using github.com/hashicorp/hcl/v2 v2.23.1-0.20250203194505-ba0759438da2 +2025-07-11T08:58:19.542+0200 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1 +2025-07-11T08:58:19.542+0200 [DEBUG] using github.com/zclconf/go-cty v1.16.2 +2025-07-11T08:58:19.542+0200 [INFO] Go runtime version: go1.24.3 +2025-07-11T08:58:19.542+0200 [INFO] CLI args: []string{"terraform", "apply"} +2025-07-11T08:58:19.542+0200 [DEBUG] Attempting to open CLI config file: /home/lamelos/.terraformrc +2025-07-11T08:58:19.542+0200 [INFO] Loading CLI configuration from /home/lamelos/.terraformrc +2025-07-11T08:58:19.543+0200 [DEBUG] checking for credentials in "/home/lamelos/.terraform.d/plugins" +2025-07-11T08:58:19.543+0200 [DEBUG] Explicit provider installation configuration is set +2025-07-11T08:58:19.543+0200 [INFO] CLI command args: []string{"apply"} +2025-07-11T08:58:19.544+0200 [DEBUG] backend-s3.aws-base: Resolving credentials provider: tf_backend.operation=Configure tf_backend.req_id=5981a05a-2620-08c6-386b-f3831d66e553 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T08:58:19.544+0200 [DEBUG] backend-s3.aws-base: Using authentication parameters: tf_backend.operation=Configure tf_backend.req_id=5981a05a-2620-08c6-386b-f3831d66e553 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate tf_aws.auth_fields=["access key", "secret key"] tf_aws.auth_fields.source=provider +2025-07-11T08:58:19.544+0200 [INFO] backend-s3.aws-base: Retrieved credentials: tf_backend.operation=Configure tf_backend.req_id=5981a05a-2620-08c6-386b-f3831d66e553 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate tf_aws.credentials_source=StaticCredentials +2025-07-11T08:58:19.545+0200 [DEBUG] backend-s3.aws-base: Loading configuration: tf_backend.operation=Configure tf_backend.req_id=5981a05a-2620-08c6-386b-f3831d66e553 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T08:58:19.546+0200 [DEBUG] Provider registry.terraform.io/hashicorp/helm is overridden by dev_overrides +2025-07-11T08:58:19.738+0200 [DEBUG] Provider registry.terraform.io/hashicorp/helm is overridden to load from /home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64 +2025-07-11T08:58:19.738+0200 [DEBUG] checking for provisioner in "." +2025-07-11T08:58:19.745+0200 [DEBUG] checking for provisioner in "/usr/bin" +2025-07-11T08:58:19.745+0200 [DEBUG] checking for provisioner in "/home/lamelos/.terraform.d/plugins" +2025-07-11T08:58:19.747+0200 [DEBUG] Provider registry.terraform.io/hashicorp/helm is overridden by dev_overrides +2025-07-11T08:58:19.747+0200 [INFO] backend/local: starting Apply operation +2025-07-11T08:58:19.748+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon rpc.method=ListObjectsV2 rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Workspaces tf_backend.req_id=dd35f759-4391-ed99-248c-3d6fd3db3500 tf_backend.s3.bucket=app-365zon tf_backend.workspace-prefix=env:/ http.url="https://storage.bridge.fourlights.dev/app-365zon?list-type=2&max-keys=1000&prefix=env%3A%2F" net.peer.name=storage.bridge.fourlights.dev http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 m/C" http.request.header.accept_encoding=identity http.request.header.x_amz_date=20250711T065819Z http.method=GET http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.amz_sdk_invocation_id=b807cf04-82f4-4e4c-b402-6dffda0a5755 http.request.header.amz_sdk_request="attempt=1; max=5" http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.request.body="" +2025-07-11T08:58:20.539+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon rpc.method=ListObjectsV2 rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Workspaces tf_backend.req_id=dd35f759-4391-ed99-248c-3d6fd3db3500 tf_backend.s3.bucket=app-365zon tf_backend.workspace-prefix=env:/ http.duration=791 http.response.header.x_amz_request_id=1851202B4643EDF3 + http.response.body= + | + | app-365zonenv:/01000false + http.status_code=200 http.response.header.date="Fri, 11 Jul 2025 06:58:20 GMT" http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response_content_length=246 http.response.header.x_ratelimit_limit=57 http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.x_content_type_options=nosniff http.response.header.x_ratelimit_remaining=57 http.response.header.x_xss_protection="1; mode=block" http.response.header.content_type=application/xml http.response.header.server=MinIO http.response.header.accept_ranges=bytes http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" +2025-07-11T08:58:20.540+0200 [INFO] backend-s3: Downloading remote state: tf_backend.operation=Get tf_backend.req_id=205a1b86-a5e5-546c-a522-1526b7308fb5 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T08:58:20.540+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=HeadObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=205a1b86-a5e5-546c-a522-1526b7308fb5 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.method=HEAD http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate http.request.header.accept_encoding=identity http.request.header.amz_sdk_request="attempt=1; max=5" http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.request.header.x_amz_date=20250711T065820Z http.request.header.amz_sdk_invocation_id=b8546109-23b8-4d0e-8b17-686d7e2383dd http.request.body="" net.peer.name=storage.bridge.fourlights.dev http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2" http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;x-amz-content-sha256;x-amz-date, Signature=*****" +2025-07-11T08:58:20.683+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=HeadObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=205a1b86-a5e5-546c-a522-1526b7308fb5 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.etag="\"848b9c152688f27c5f9f8f7a0977bb47\"" http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.date="Fri, 11 Jul 2025 06:58:20 GMT" http.response.header.x_content_type_options=nosniff http.response.header.x_xss_protection="1; mode=block" http.response.header.last_modified="Fri, 11 Jul 2025 06:53:08 GMT" http.response.header.x_ratelimit_limit=57 http.response.header.x_amz_request_id=1851202B57B76480 http.response.header.accept_ranges=bytes http.response.header.content_type=application/json http.response.header.server=MinIO http.response.body="" http.duration=142 http.status_code=200 http.response_content_length=123360 http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.x_ratelimit_remaining=57 +2025-07-11T08:58:20.683+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=205a1b86-a5e5-546c-a522-1526b7308fb5 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.request.body="" http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate?x-id=GetObject net.peer.name=storage.bridge.fourlights.dev http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 ft/s3-transfer m/G,b" http.request.header.x_amz_date=20250711T065820Z http.request.header.amz_sdk_invocation_id=2dbcf133-60a3-45e2-8f4c-a29aa04bb73f http.request.header.amz_sdk_request="attempt=1; max=5" http.request.header.x_amz_checksum_mode=ENABLED http.method=GET http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;range;x-amz-checksum-mode;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.request.header.accept_encoding=identity http.request.header.range=bytes=0-5242879 +2025-07-11T08:58:20.847+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=205a1b86-a5e5-546c-a522-1526b7308fb5 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.status_code=206 http.response_content_length=123360 http.response.header.x_xss_protection="1; mode=block" http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.duration=163 http.response.header.x_content_type_options=nosniff http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.x_amz_request_id=1851202B63A42727 http.response.header.content_range="bytes 0-123359/123360" http.response.body="[Redacted: 120.5 KB (123,360 bytes), Type: application/json]" http.response.header.x_ratelimit_limit=57 http.response.header.date="Fri, 11 Jul 2025 06:58:20 GMT" http.response.header.server=MinIO http.response.header.content_type=application/json http.response.header.etag="\"848b9c152688f27c5f9f8f7a0977bb47\"" http.response.header.x_ratelimit_remaining=57 http.response.header.accept_ranges=bytes http.response.header.last_modified="Fri, 11 Jul 2025 06:53:08 GMT" +2025-07-11T08:58:20.848+0200 [WARN] backend-s3: Response has no supported checksum. Not validating response payload.: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=205a1b86-a5e5-546c-a522-1526b7308fb5 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T08:58:21.033+0200 [DEBUG] Config.VerifyDependencySelections: skipping registry.terraform.io/hashicorp/helm because it's overridden by a special configuration setting +2025-07-11T08:58:21.033+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.033+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.045+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:58:21.045+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=972118 +2025-07-11T08:58:21.045+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:58:21.051+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.051+0200" +2025-07-11T08:58:21.079+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:21.079+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin1550258372 network=unix timestamp="2025-07-11T08:58:21.078+0200" +2025-07-11T08:58:21.093+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:21.094+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=972118 +2025-07-11T08:58:21.094+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:21.094+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.094+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.098+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 args=[".terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2"] +2025-07-11T08:58:21.098+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 pid=972133 +2025-07-11T08:58:21.098+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 +2025-07-11T08:58:21.123+0200 [INFO] provider.terraform-provider-argocd_v7.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.123+0200" +2025-07-11T08:58:21.134+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:21.134+0200 [DEBUG] provider.terraform-provider-argocd_v7.0.2: plugin address: address=/tmp/plugin3818499200 network=unix timestamp="2025-07-11T08:58:21.134+0200" +2025-07-11T08:58:21.161+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:21.164+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 id=972133 +2025-07-11T08:58:21.164+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:21.164+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.164+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.169+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5"] +2025-07-11T08:58:21.169+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 pid=972154 +2025-07-11T08:58:21.169+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 +2025-07-11T08:58:21.171+0200 [INFO] provider.terraform-provider-external_v2.3.5_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.171+0200" +2025-07-11T08:58:21.183+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:21.183+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: plugin address: network=unix address=/tmp/plugin810863427 timestamp="2025-07-11T08:58:21.183+0200" +2025-07-11T08:58:21.192+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:58:21.192+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:21.193+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 id=972154 +2025-07-11T08:58:21.193+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:21.193+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.193+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.197+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:21.197+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=972163 +2025-07-11T08:58:21.197+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:21.211+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.211+0200" +2025-07-11T08:58:21.223+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:21.223+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin1593840759 network=unix timestamp="2025-07-11T08:58:21.223+0200" +2025-07-11T08:58:21.233+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:58:21.233+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:21.235+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=972163 +2025-07-11T08:58:21.235+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:21.235+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.235+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.241+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:21.241+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=972178 +2025-07-11T08:58:21.241+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:21.259+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.259+0200" +2025-07-11T08:58:21.267+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:21.267+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1929749241 network=unix timestamp="2025-07-11T08:58:21.267+0200" +2025-07-11T08:58:21.318+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:21.320+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=972178 +2025-07-11T08:58:21.320+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:21.320+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.320+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.325+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5"] +2025-07-11T08:58:21.325+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 pid=972198 +2025-07-11T08:58:21.325+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 +2025-07-11T08:58:21.328+0200 [INFO] provider.terraform-provider-local_v2.5.3_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.328+0200" +2025-07-11T08:58:21.340+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:21.340+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: plugin address: address=/tmp/plugin314996104 network=unix timestamp="2025-07-11T08:58:21.340+0200" +2025-07-11T08:58:21.349+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:58:21.350+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:21.350+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 id=972198 +2025-07-11T08:58:21.350+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:21.350+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.351+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.355+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5"] +2025-07-11T08:58:21.355+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 pid=972212 +2025-07-11T08:58:21.355+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 +2025-07-11T08:58:21.358+0200 [INFO] provider.terraform-provider-null_v3.2.4_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.357+0200" +2025-07-11T08:58:21.369+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:21.369+0200 [DEBUG] provider.terraform-provider-null_v3.2.4_x5: plugin address: address=/tmp/plugin595201534 network=unix timestamp="2025-07-11T08:58:21.369+0200" +2025-07-11T08:58:21.378+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:58:21.378+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:21.379+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 id=972212 +2025-07-11T08:58:21.379+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:21.379+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.379+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.383+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5"] +2025-07-11T08:58:21.384+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 pid=972221 +2025-07-11T08:58:21.384+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 +2025-07-11T08:58:21.387+0200 [INFO] provider.terraform-provider-random_v3.7.2_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.387+0200" +2025-07-11T08:58:21.399+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:21.399+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: plugin address: address=/tmp/plugin2424482792 network=unix timestamp="2025-07-11T08:58:21.399+0200" +2025-07-11T08:58:21.409+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:58:21.411+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:21.412+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 id=972221 +2025-07-11T08:58:21.412+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:21.412+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.412+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.416+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/vault/5.1.0/linux_amd64/terraform-provider-vault_v5.1.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/vault/5.1.0/linux_amd64/terraform-provider-vault_v5.1.0_x5"] +2025-07-11T08:58:21.416+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/vault/5.1.0/linux_amd64/terraform-provider-vault_v5.1.0_x5 pid=972231 +2025-07-11T08:58:21.416+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/vault/5.1.0/linux_amd64/terraform-provider-vault_v5.1.0_x5 +2025-07-11T08:58:21.425+0200 [INFO] provider.terraform-provider-vault_v5.1.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.425+0200" +2025-07-11T08:58:21.438+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:21.438+0200 [DEBUG] provider.terraform-provider-vault_v5.1.0_x5: plugin address: address=/tmp/plugin2467176724 network=unix timestamp="2025-07-11T08:58:21.438+0200" +2025-07-11T08:58:21.467+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:21.468+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/vault/5.1.0/linux_amd64/terraform-provider-vault_v5.1.0_x5 id=972231 +2025-07-11T08:58:21.468+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:21.468+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.468+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.473+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 args=[".terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1"] +2025-07-11T08:58:21.473+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 pid=972251 +2025-07-11T08:58:21.473+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 +2025-07-11T08:58:21.475+0200 [INFO] provider.terraform-provider-slugify_v0.1.1: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.475+0200" +2025-07-11T08:58:21.487+0200 [DEBUG] provider.terraform-provider-slugify_v0.1.1: plugin address: address=/tmp/plugin4013604171 network=unix timestamp="2025-07-11T08:58:21.486+0200" +2025-07-11T08:58:21.487+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:21.495+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:58:21.496+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:21.496+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 id=972251 +2025-07-11T08:58:21.496+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:21.496+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.496+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.501+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:58:21.501+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=972259 +2025-07-11T08:58:21.501+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:58:21.510+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.509+0200" +2025-07-11T08:58:21.521+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:21.521+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin1362366969 network=unix timestamp="2025-07-11T08:58:21.521+0200" +2025-07-11T08:58:21.534+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:21.535+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=972259 +2025-07-11T08:58:21.535+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:21.536+0200 [DEBUG] Building and walking validate graph +2025-07-11T08:58:21.545+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/zitadel/zitadel"], implied first by module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default +2025-07-11T08:58:21.545+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/random"], implied first by module.postgresql.random_password.postgresql_user_password +2025-07-11T08:58:21.545+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/external"], implied first by module.argocd.data.external.processed_values +2025-07-11T08:58:21.545+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/null"], implied first by module.tenant-365zon.module.minio.null_resource.health_check +2025-07-11T08:58:21.545+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/local"], implied first by module.zitadel.local_file.zitadel_jwt_profile_file +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_secret_key" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.random_password.tenant" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay" (*terraform.NodeValidatableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_namespace.redis" (*terraform.NodeValidatableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.redis.helm_release.redis" (*terraform.NodeValidatableResource) needs module.redis.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn" (*terraform.NodeValidatableResource) needs module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config" (*terraform.NodeValidatableResource) needs module.cluster-init.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay" (*terraform.NodeValidatableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_root_password" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.null_resource.health_check" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/null"] +2025-07-11T08:58:21.546+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.random_password.password" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default" (*terraform.NodeValidatableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.storage" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.zitadel.random_password.zitadel_masterkey" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "data.minio_s3_object.k8s_yaml" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_secret.redis" (*terraform.NodeValidatableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.argocd.random_password.admin_password" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_secret.argocd-tls" (*terraform.NodeValidatableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_secret.mongodb_auth" (*terraform.NodeValidatableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_user_password" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_replica_set_key" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_namespace.argocd" (*terraform.NodeValidatableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay" (*terraform.NodeValidatableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_secret.postgresql_auth" (*terraform.NodeValidatableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_namespace.tenant" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin" (*terraform.NodeValidatableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay" (*terraform.NodeValidatableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.argocd.data.kubernetes_secret.bridge-tls" (*terraform.NodeValidatableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.postgresql.helm_release.postgresql" (*terraform.NodeValidatableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_namespace.postgresql" (*terraform.NodeValidatableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.helm_release.rabbitmq" (*terraform.NodeValidatableResource) needs module.rabbitmq.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.redis.random_password.redis" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.kubernetes_job.create-tenant" (*terraform.NodeValidatableResource) needs module.zitadel-db.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.argocd.data.external.processed_values" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/external"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default" (*terraform.NodeValidatableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.mongodb.helm_release.mongodb" (*terraform.NodeValidatableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_secret.zitadel" (*terraform.NodeValidatableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_namespace.zitadel" (*terraform.NodeValidatableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_root_password" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.zitadel.helm_release.zitadel" (*terraform.NodeValidatableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/local"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth" (*terraform.NodeValidatableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default" (*terraform.NodeValidatableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay" (*terraform.NodeValidatableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_namespace.mongodb" (*terraform.NodeValidatableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_namespace.monitoring" (*terraform.NodeValidatableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default" (*terraform.NodeValidatableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.minio.helm_release.minio" (*terraform.NodeValidatableResource) needs module.minio.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default" (*terraform.NodeValidatableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.argocd.helm_release.argocd" (*terraform.NodeValidatableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.monitoring.random_password.grafana_admin_password" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay" (*terraform.NodeValidatableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.monitoring.helm_release.kube_prometheus_stack" (*terraform.NodeValidatableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_access_key" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_action.groups-claim" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.547+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.548+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.548+0200 [DEBUG] pruning unused module.cluster-init.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:21.548+0200 [DEBUG] pruning unused provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:21.548+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:21.548+0200 [DEBUG] pruning unused module.argocd.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:58:21.548+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.548+0200 [DEBUG] pruning unused module.minio.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.548+0200 [DEBUG] pruning unused module.mongodb.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:58:21.548+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/vault"] +2025-07-11T08:58:21.548+0200 [DEBUG] pruning unused module.postgresql.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:58:21.548+0200 [DEBUG] pruning unused module.zitadel-db.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:21.548+0200 [DEBUG] pruning unused module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.548+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:21.548+0200 [DEBUG] pruning unused module.tenant-365zon.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:21.548+0200 [DEBUG] pruning unused module.rabbitmq.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring" references: [] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_secret.redis" references: [module.redis.random_password.redis module.redis.kubernetes_namespace.redis] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.minio.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.minio.local.k8s_host (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (close)" references: [] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/aminueza/minio\"]" references: [var.region var.secret_key var.access_key var.minio_server] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (close)" references: [] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)" references: [] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)" references: [] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (expand)" references: [] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "output.minio-root-secret-key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (expand)" references: [] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.namespace (expand)" references: [] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.ingressClass (expand)" references: [] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_host (expand)" references: [module.monitoring.local.k8s_config (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_host (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_redirect_uri (expand)" references: [module.zitadel.output.server (expand) module.zitadel-argocd.output.logoutSuffix (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_password (expand)" references: [module.zitadel-db.output.password (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (expand)" references: [] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (close)" references: [] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close)" references: [] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_iam_user.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:21.560+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_host (expand)" references: [module.zitadel.local.k8s_config (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (expand)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.enabled (expand)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (expand)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_id (expand)" references: [module.zitadel-argocd.output.client_id (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.minio.var.ingressClass (expand)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.minio.local.admin_service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.admin_server_dns (expand) module.minio.var.admin_server_dns (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.admin_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.installed (expand)" references: [module.mongodb.helm_release.mongodb] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.replicas (expand)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_api_uri (expand)" references: [module.minio.output.minio_api_uri (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_config (expand)" references: [module.zitadel.var.k8s_config_yaml (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel.helm_release.zitadel" references: [module.zitadel.var.wait_on (expand) module.zitadel.kubernetes_secret.zitadel module.zitadel.var.enabled (expand) module.zitadel.local.service_uri (expand) module.zitadel.var.database (expand) module.zitadel.var.database_username (expand) module.zitadel.var.database_password (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.database_root_username (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.display_on_homepage (expand) module.zitadel.var.ingressClass (expand) module.zitadel.kubernetes_namespace.zitadel] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (expand)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (close)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.rabbitmq_connection_string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_host (expand)" references: [module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default" references: [module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_namespace.tenant" references: [module.tenant-365zon.var.wait_on (expand) module.tenant-365zon.local.name (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default" references: [module.zitadel-argocd.module.zitadel_project.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand) module.zitadel-argocd.module.zitadel_project.var.name (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (close)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.mongodb.helm_release.mongodb" references: [module.mongodb.var.wait_on (expand) module.mongodb.kubernetes_secret.mongodb_auth module.mongodb.kubernetes_namespace.mongodb module.mongodb.var.usernames (expand) module.mongodb.var.databases (expand) module.mongodb.var.replicas (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.argocd.random_password.admin_password" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "output.rabbitmq-connection-string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel (close)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (close)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file" references: [module.zitadel.data.kubernetes_secret.zitadel_admin] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.minio.var.namespace (expand)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.service_uri (expand)" references: [module.zitadel.var.service_name (expand) module.zitadel.var.server_dns (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_host (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.argocd_service_domain (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_config (expand)" references: [module.tenant-365zon.var.k8s_config_yaml (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.local.argocd_uri (expand)" references: [module.zitadel-argocd.var.argocd_service_domain (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.access_instructions (expand)" references: [module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.random_password.grafana_admin_password] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (expand)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (close)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.name (expand)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.minio.var.tls (expand)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (expand)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:58:21.561+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.wait_on (expand)" references: [module.postgresql.output.installed (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_auth (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.database (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.wait_on (expand)" references: [module.minio.output.installed (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_password (expand)" references: [module.redis.output.password (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.service_name (expand)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.scopes (expand)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.installed (expand)" references: [module.argocd.helm_release.argocd] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.connection_string (expand)" references: [module.mongodb.random_password.mongodb_root_password module.mongodb.var.replicas (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (close)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (expand)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.host (expand)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_host (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (close)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (expand)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (expand)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (expand)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_secret_key" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.namespace (expand)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.replicas (expand)" references: [local.node_count (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (close)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.monitoring (close)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay module.tenant-365zon.module.minio.minio_iam_policy.overlay module.tenant-365zon.module.minio.minio_iam_policy.overlay module.tenant-365zon.module.minio.minio_iam_user.overlay] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_secret.argocd-tls" references: [module.argocd.data.kubernetes_secret.bridge-tls module.argocd.data.kubernetes_secret.bridge-tls module.argocd.kubernetes_namespace.argocd] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.output.installed (expand)" references: [module.cluster-init.module.longhorn.output.installed (expand) module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.redis.output.installed (expand)" references: [module.redis.helm_release.redis] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.tenant-365zon.var.domain (expand) module.tenant-365zon.var.jwt_profile_file (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.server_dns (expand)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_host (expand)" references: [module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.name (expand)" references: [module.zitadel-argocd.var.name (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.namespace (expand)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin (expand)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "local.k8s_host (expand)" references: [local.k8s_config (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.minio.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.bucket (expand)" references: [module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_secret.zitadel" references: [module.zitadel.var.enabled (expand) module.zitadel.random_password.zitadel_masterkey module.zitadel.kubernetes_namespace.zitadel] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.wait_on (expand)" references: [module.cluster-init.var.wait_on (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_config (expand)" references: [module.postgresql.var.k8s_config_yaml (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_access_key (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.minio (close)" references: [] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:58:21.562+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)" references: [module.tenant-365zon.kubernetes_namespace.tenant] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (validation)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "local.bridge_dns (expand)" references: [local.tld (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.enabled (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.namespace (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.grafana_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth" references: [module.monitoring.var.remote_write_username (expand) module.monitoring.var.remote_write_password (expand) module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.wait_on (expand)" references: [module.zitadel-argocd.output.installed (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.redis.output.password (expand)" references: [module.redis.random_password.redis] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings" references: [module.tenant-365zon.var.mongodb_connection_string (expand) module.tenant-365zon.var.rabbitmq_connection_string (expand) module.tenant-365zon.kubernetes_namespace.tenant] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.random_password.tenant" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.service_name (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_secret_key (expand)" references: [module.minio.random_password.minio_secret_key] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "local.cluster_shortname (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.helm_release.rabbitmq" references: [module.rabbitmq.random_password.password module.rabbitmq.var.wait_on (expand) module.rabbitmq.random_password.password module.rabbitmq.var.namespace (expand) module.rabbitmq.var.replicas (expand) module.rabbitmq.local.service_uri (expand) module.rabbitmq.var.admin (expand) module.rabbitmq.var.tls (expand) module.rabbitmq.var.ingressClass (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "output.minio-secret-key (expand)" references: [module.tenant-365zon.output.minio_secret_key (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)" references: [module.zitadel-bootstrap.var.domain (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.jwt_profile_file (expand)" references: [module.zitadel.local_file.zitadel_jwt_profile_file] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (close)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_namespace.redis" references: [module.redis.var.namespace (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "var.minio_server" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.region (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "var.endpoints" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.redis.var.wait_on (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)" references: [module.tenant-365zon.var.org_id (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_config (expand)" references: [module.argocd.var.k8s_config_yaml (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_config (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (close)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_auth (expand)" references: [module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_secret.postgresql_auth" references: [module.postgresql.var.wait_on (expand) module.postgresql.var.enabled (expand) module.postgresql.random_password.postgresql_user_password module.postgresql.random_password.postgresql_root_password module.postgresql.kubernetes_namespace.postgresql] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.service_uri (expand)" references: [module.rabbitmq.var.service_name (expand) module.rabbitmq.var.server_dns (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_auth (expand)" references: [module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_config (expand)" references: [module.mongodb.var.k8s_config_yaml (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.minio.output.secret_key (expand)" references: [module.minio.random_password.minio_secret_key] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.redis (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default" references: [module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.tld (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_host (expand)" references: [module.argocd.local.k8s_config (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.connection_string (expand)" references: [module.rabbitmq.random_password.password module.rabbitmq.var.namespace (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_admin_uri (expand)" references: [module.minio.local.admin_service_uri (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (close)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand)" references: [] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.password (expand)" references: [module.zitadel-db.random_password.tenant] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default" references: [module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default] +2025-07-11T08:58:21.563+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.name (expand)" references: [] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.idp_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.storage" references: [module.tenant-365zon.module.minio.output.access_key (expand) module.tenant-365zon.module.minio.output.secret_key (expand) module.tenant-365zon.var.minio_api_uri (expand) module.tenant-365zon.module.minio.output.bucket (expand) module.tenant-365zon.kubernetes_namespace.tenant] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay" references: [module.tenant-365zon.module.minio.null_resource.health_check module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.kubernetes_secret.bridge-tls" references: [] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.enabled (expand)" references: [] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "output.mongodb-connection-string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd" references: [module.argocd.var.wait_on (expand) module.argocd.kubernetes_secret.argocd-tls module.argocd.data.external.processed_values module.argocd.random_password.admin_password module.argocd.kubernetes_namespace.argocd] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "output.argocd-root-password (expand)" references: [module.argocd.output.admin_password (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_host (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand)" references: [] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_database (expand)" references: [] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_auth (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-bootstrap.var.jwt_profile_file (expand) module.zitadel-bootstrap.var.domain (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel.random_password.zitadel_masterkey" references: [] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default" references: [module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand)" references: [] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand)" references: [] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand)" references: [] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_auth (expand)" references: [module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)" references: [] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.access_key (expand)" references: [module.tenant-365zon.var.minio_access_key (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_auth (expand)" references: [module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.postgresql (close)" references: [] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.server (expand)" references: [module.tenant-365zon.var.minio_server (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_access_key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.minio.var.displayOnHomepage (expand)" references: [] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.root_password (expand)" references: [module.postgresql.random_password.postgresql_root_password] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.owners (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (expand)" references: [] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (expand)" references: [] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (close)" references: [] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.minio.output.installed (expand)" references: [module.minio.helm_release.minio] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.wait_on (expand)" references: [] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/null\"]" references: [] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.random_password.password" references: [] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_bucket (expand)" references: [module.tenant-365zon.module.minio.output.bucket (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-argocd.var.jwt_profile_file (expand) module.zitadel-argocd.var.domain (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_host (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.redis.helm_release.redis" references: [module.redis.var.wait_on (expand) module.redis.var.architecture (expand) module.redis.var.architecture (validation) module.redis.kubernetes_namespace.redis] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)] +2025-07-11T08:58:21.564+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)" references: [module.tenant-365zon.var.user_id (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_secret (expand)" references: [module.zitadel-argocd.output.client_secret (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_auth (expand)" references: [module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.installed (expand)" references: [module.postgresql.helm_release.postgresql] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (close)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.namespace (expand)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_config (expand)" references: [module.zitadel-bootstrap.var.k8s_config_yaml (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (close)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.postgresql.helm_release.postgresql" references: [module.postgresql.var.wait_on (expand) module.postgresql.kubernetes_secret.postgresql_auth module.postgresql.var.enabled (expand) module.postgresql.var.username (expand) module.postgresql.kubernetes_namespace.postgresql] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_access_key (expand)" references: [module.minio.random_password.minio_access_key] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (expand)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.redis.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.minio.output.access_key (expand)" references: [module.minio.random_password.minio_access_key] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.provider[\"registry.terraform.io/aminueza/minio\"]" references: [module.tenant-365zon.module.minio.var.secret_key (expand) module.tenant-365zon.module.minio.var.access_key (expand) module.tenant-365zon.module.minio.var.server (expand) module.tenant-365zon.module.minio.var.region (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "data.minio_s3_object.k8s_yaml" references: [var.bucket] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel (expand)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.secret_key (expand)" references: [module.tenant-365zon.var.minio_secret_key (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.minio.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.databases (expand)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_username (expand)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_auth (expand)" references: [module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_auth (expand)" references: [module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.grpc_service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_config (expand)" references: [module.minio.var.k8s_config_yaml (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/external\"]" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (close)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.password (expand)" references: [module.postgresql.random_password.postgresql_user_password] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (close)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_auth (expand)" references: [module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_api_uri (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_namespace.postgresql" references: [module.postgresql.var.enabled (expand) module.postgresql.var.namespace (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.rabbitmq.local.k8s_host (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (expand)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_host (expand)" references: [module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_host (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.redis_db_next_start_index (expand)" references: [module.argocd.var.redis_db_start_index (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.job_name (expand)" references: [module.zitadel-db.var.enabled (expand) module.zitadel-db.kubernetes_job.create-tenant] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_namespace.zitadel" references: [module.zitadel.var.enabled (expand) module.zitadel.var.namespace (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default" references: [module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "var.region" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (expand)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.argocd (expand)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_server (expand)" references: [module.minio.output.minio_server (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_username (expand)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.mongodb (close)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.postgresql (expand)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.minio.var.service_name (expand)" references: [] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:58:21.565+0200 [DEBUG] ReferenceTransformer: "module.redis.random_password.redis" references: [] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.ingressClass (expand)" references: [] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_host (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand)] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (expand)" references: [] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.minio.var.replicas (expand)" references: [] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_host (expand)" references: [module.postgresql.local.k8s_config (expand)] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_config (expand)" references: [module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.minio.var.storageSize (expand)" references: [] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.tls (expand)" references: [] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin_server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:58:21.566+0200 [DEBUG] ReferenceTransformer: "module.monitoring.random_password.grafana_admin_password" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.kubernetes_job.create-tenant" references: [module.zitadel-db.var.wait_on (expand) module.zitadel-db.var.enabled (expand) module.zitadel-db.var.namespace (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.host (expand) module.zitadel-db.var.root_username (expand) module.zitadel-db.var.root_password (expand) module.zitadel-db.var.root_database (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.name (expand) module.zitadel-db.random_password.tenant] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.tls (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_host (expand)" references: [module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.ingressClass (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.minio.var.mode (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.admin_password (expand)" references: [module.argocd.random_password.admin_password] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/local\"]" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.minio (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "output.monitoring (expand)" references: [module.monitoring.output.access_instructions (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.mongodb (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.wait_on (expand)" references: [module.zitadel-db.output.installed (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.cluster-init.module.longhorn.local.k8s_host (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_secret.mongodb_auth" references: [module.mongodb.var.wait_on (expand) module.mongodb.random_password.mongodb_root_password module.mongodb.random_password.mongodb_replica_set_key module.mongodb.kubernetes_namespace.mongodb] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (close)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.argocd (close)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "var.vault_addr" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_config (expand)" references: [module.rabbitmq.var.k8s_config_yaml (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack" references: [module.monitoring.var.wait_on (expand) module.monitoring.kubernetes_secret.prometheus_remote_write_auth module.monitoring.kubernetes_namespace.monitoring module.monitoring.var.remote_write_url (expand) module.monitoring.var.remote_read_url (expand) module.monitoring.random_password.grafana_admin_password] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.minio.helm_release.minio" references: [module.minio.var.namespace (expand) module.minio.var.mode (expand) module.minio.var.replicas (expand) module.minio.var.replicas (expand) module.minio.var.storageSize (expand) module.minio.local.service_uri (expand) module.minio.local.admin_service_uri (expand) module.minio.var.admin (expand) module.minio.var.mode (expand) module.minio.var.tls (expand) module.minio.var.ingressClass (expand) module.minio.var.displayOnHomepage (expand) module.minio.random_password.minio_access_key module.minio.random_password.minio_secret_key] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.wait_on (expand)" references: [module.argocd.output.installed (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_username (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.alertmanager_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.username (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "var.access_key" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_secret_key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.redis.var.namespace (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "output.minio-root-access-key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.enabled (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)" references: [module.tenant-365zon.local.name (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "local.k8s_config_yaml (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_config (expand)" references: [module.monitoring.var.k8s_config_yaml (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_config (expand)" references: [module.redis.var.k8s_config_yaml (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "var.secret_key" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_user_password" references: [] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.external.processed_values" references: [module.argocd.local.service_uri (expand) module.argocd.var.server_dns (expand) module.argocd.local.grpc_service_uri (expand) module.argocd.var.redis_db_start_index (expand) module.argocd.var.redis_password (expand) module.argocd.var.oauth_uri (expand) module.argocd.var.oauth_issuer (expand) module.argocd.var.oauth_client_id (expand) module.argocd.var.oauth_client_secret (expand) module.argocd.var.oauth_redirect_uri (expand) module.argocd.var.tls (expand) module.argocd.var.ingressClass (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:21.567+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.email (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.minio.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "local.k8s_config (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "local.tld (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.display_on_homepage (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.installed (expand)" references: [module.zitadel-db.kubernetes_job.create-tenant] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_replica_set_key" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.service_name (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (close)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "var.vault_token" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.ingressClass (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_access_key" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.namespace (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.monitoring (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_root_password" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_url (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_secret_key (expand)" references: [module.tenant-365zon.module.minio.output.secret_key (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.installed (expand)" references: [module.zitadel.helm_release.zitadel module.zitadel.local_file.zitadel_jwt_profile_file] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.prometheus_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.name (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_uri (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.mongodb_connection_string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (close)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.service_name (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_host (expand)" references: [module.minio.local.k8s_config (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.output.installed (expand)" references: [module.cluster-init.module.longhorn.helm_release.longhorn] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (close)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default" references: [module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.email (expand) module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_namespace.argocd" references: [module.argocd.var.namespace (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_issuer (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.server (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_namespace.mongodb" references: [module.mongodb.var.namespace (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_read_url (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_auth (expand)" references: [module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "var.bucket" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_username (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.wait_on (expand)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_config (expand)" references: [module.zitadel-db.var.k8s_config_yaml (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_root_password" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.secret_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (close)" references: [] +2025-07-11T08:58:21.568+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.wait_on (expand)" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "local.cluster_dns (expand)" references: [local.cluster_shortname (expand) local.tld (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin" references: [module.zitadel.helm_release.zitadel module.zitadel.var.namespace (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.username (expand)" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.uri (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (close)" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (expand)" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.redis (close)" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.namespace (expand)" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.usernames (expand)" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.org_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.service_uri (expand)" references: [module.monitoring.var.service_name (expand) module.monitoring.var.server_dns (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_host (expand)" references: [module.mongodb.local.k8s_config (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.installed (expand)" references: [module.rabbitmq.helm_release.rabbitmq] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "local.node_count (expand)" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.application_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.null_resource.health_check" references: [module.tenant-365zon.module.minio.var.wait_on (expand) module.tenant-365zon.module.minio.var.server (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn" references: [module.cluster-init.module.longhorn.var.wait_on (expand) module.cluster-init.module.longhorn.var.namespace (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.admin (expand)" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (close)" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "local.k8s_auth (expand)" references: [local.k8s_config (expand) local.k8s_config (expand) local.k8s_config (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_server (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.logoutSuffix (expand)" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.user_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.namespace (expand)" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_db_start_index (expand)" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "output.minio-access-key (expand)" references: [module.tenant-365zon.output.minio_access_key (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.name (expand)" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_auth (expand)" references: [module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.access_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay" references: [module.tenant-365zon.module.minio.null_resource.health_check module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_action.groups-claim" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_password (expand)" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (expand)" references: [] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_auth (expand)" references: [module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_host (expand)" references: [module.redis.local.k8s_config (expand)] +2025-07-11T08:58:21.569+0200 [DEBUG] ReferenceTransformer: "module.minio.local.service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:58:21.637+0200 [DEBUG] Starting graph walk: walkValidate +2025-07-11T08:58:21.640+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.640+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.647+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5"] +2025-07-11T08:58:21.647+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 pid=972279 +2025-07-11T08:58:21.647+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 +2025-07-11T08:58:21.650+0200 [INFO] provider.terraform-provider-random_v3.7.2_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.650+0200" +2025-07-11T08:58:21.662+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:21.662+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: plugin address: network=unix address=/tmp/plugin657561498 timestamp="2025-07-11T08:58:21.662+0200" +2025-07-11T08:58:21.670+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.670+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.676+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5"] +2025-07-11T08:58:21.677+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 pid=972288 +2025-07-11T08:58:21.677+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 +2025-07-11T08:58:21.679+0200 [INFO] provider.terraform-provider-local_v2.5.3_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.679+0200" +2025-07-11T08:58:21.691+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: plugin address: address=/tmp/plugin1386197103 network=unix timestamp="2025-07-11T08:58:21.691+0200" +2025-07-11T08:58:21.691+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:21.699+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.699+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.703+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5"] +2025-07-11T08:58:21.703+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 pid=972296 +2025-07-11T08:58:21.703+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 +2025-07-11T08:58:21.706+0200 [INFO] provider.terraform-provider-external_v2.3.5_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.706+0200" +2025-07-11T08:58:21.718+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:21.718+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: plugin address: address=/tmp/plugin2580351413 network=unix timestamp="2025-07-11T08:58:21.718+0200" +2025-07-11T08:58:21.727+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.727+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.731+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:21.731+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=972305 +2025-07-11T08:58:21.731+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:21.745+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.745+0200" +2025-07-11T08:58:21.757+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin1853341221 network=unix timestamp="2025-07-11T08:58:21.757+0200" +2025-07-11T08:58:21.757+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:21.765+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.765+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.770+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:21.770+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=972318 +2025-07-11T08:58:21.770+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:21.782+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.782+0200" +2025-07-11T08:58:21.794+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:21.794+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin3213144369 network=unix timestamp="2025-07-11T08:58:21.794+0200" +2025-07-11T08:58:21.802+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.802+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.807+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5"] +2025-07-11T08:58:21.807+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 pid=972332 +2025-07-11T08:58:21.807+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 +2025-07-11T08:58:21.810+0200 [INFO] provider.terraform-provider-null_v3.2.4_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.810+0200" +2025-07-11T08:58:21.822+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:21.822+0200 [DEBUG] provider.terraform-provider-null_v3.2.4_x5: plugin address: address=/tmp/plugin240359382 network=unix timestamp="2025-07-11T08:58:21.822+0200" +2025-07-11T08:58:21.830+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.830+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.834+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:58:21.835+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=972340 +2025-07-11T08:58:21.835+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:58:21.841+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.841+0200" +2025-07-11T08:58:21.867+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:21.867+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin973168285 network=unix timestamp="2025-07-11T08:58:21.867+0200" +2025-07-11T08:58:21.879+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.879+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.883+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:21.883+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=972351 +2025-07-11T08:58:21.883+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:21.902+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.902+0200" +2025-07-11T08:58:21.910+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:21.910+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2483510580 network=unix timestamp="2025-07-11T08:58:21.910+0200" +2025-07-11T08:58:21.917+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.917+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.921+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:21.922+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=972367 +2025-07-11T08:58:21.922+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:21.942+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.942+0200" +2025-07-11T08:58:21.950+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:21.950+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: network=unix address=/tmp/plugin1059771232 timestamp="2025-07-11T08:58:21.950+0200" +2025-07-11T08:58:21.957+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.957+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.961+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:21.962+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=972385 +2025-07-11T08:58:21.962+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:21.980+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:21.980+0200" +2025-07-11T08:58:21.988+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:21.988+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2599232329 network=unix timestamp="2025-07-11T08:58:21.988+0200" +2025-07-11T08:58:21.994+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:21.994+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:21.999+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:22.000+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=972402 +2025-07-11T08:58:22.000+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:22.019+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.019+0200" +2025-07-11T08:58:22.027+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:22.027+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1728957820 network=unix timestamp="2025-07-11T08:58:22.027+0200" +2025-07-11T08:58:22.034+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.034+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.039+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:22.039+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=972419 +2025-07-11T08:58:22.039+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:22.052+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.052+0200" +2025-07-11T08:58:22.064+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:22.064+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin1093118601 network=unix timestamp="2025-07-11T08:58:22.064+0200" +2025-07-11T08:58:22.073+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:22.073+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.073+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.073+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:22.073+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:22.078+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:22.078+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=972433 +2025-07-11T08:58:22.078+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:22.091+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.091+0200" +2025-07-11T08:58:22.103+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:22.103+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin3693429241 network=unix timestamp="2025-07-11T08:58:22.103+0200" +2025-07-11T08:58:22.112+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:22.112+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.112+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.116+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:22.116+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=972447 +2025-07-11T08:58:22.116+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:22.134+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.134+0200" +2025-07-11T08:58:22.142+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:22.142+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin3235933821 network=unix timestamp="2025-07-11T08:58:22.142+0200" +2025-07-11T08:58:22.149+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.149+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.153+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:22.153+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=972465 +2025-07-11T08:58:22.153+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:22.171+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.171+0200" +2025-07-11T08:58:22.180+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1797319436 network=unix timestamp="2025-07-11T08:58:22.180+0200" +2025-07-11T08:58:22.180+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:22.187+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.187+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.191+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:22.192+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=972480 +2025-07-11T08:58:22.192+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:22.205+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.205+0200" +2025-07-11T08:58:22.217+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:22.217+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin2066384697 network=unix timestamp="2025-07-11T08:58:22.217+0200" +2025-07-11T08:58:22.225+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.225+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.225+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:22.229+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:22.230+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=972496 +2025-07-11T08:58:22.230+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:22.247+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.247+0200" +2025-07-11T08:58:22.255+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:22.255+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2406913945 network=unix timestamp="2025-07-11T08:58:22.255+0200" +2025-07-11T08:58:22.262+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.262+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.266+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:22.267+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=972514 +2025-07-11T08:58:22.267+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:22.279+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.279+0200" +2025-07-11T08:58:22.291+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:22.291+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin3764018326 network=unix timestamp="2025-07-11T08:58:22.291+0200" +2025-07-11T08:58:22.300+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.300+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.300+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:22.304+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:22.305+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=972529 +2025-07-11T08:58:22.305+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:22.323+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.323+0200" +2025-07-11T08:58:22.331+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:22.331+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin3163627476 network=unix timestamp="2025-07-11T08:58:22.331+0200" +2025-07-11T08:58:22.338+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.338+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.343+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:22.343+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=972546 +2025-07-11T08:58:22.343+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:22.361+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.361+0200" +2025-07-11T08:58:22.369+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:22.369+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin24455448 network=unix timestamp="2025-07-11T08:58:22.369+0200" +2025-07-11T08:58:22.376+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.376+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.380+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:22.381+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=972564 +2025-07-11T08:58:22.381+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:22.394+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.393+0200" +2025-07-11T08:58:22.405+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:22.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin2114324729 network=unix timestamp="2025-07-11T08:58:22.405+0200" +2025-07-11T08:58:22.413+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.413+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.413+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:22.418+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:22.418+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=972580 +2025-07-11T08:58:22.418+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:22.431+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.431+0200" +2025-07-11T08:58:22.444+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin273313888 network=unix timestamp="2025-07-11T08:58:22.443+0200" +2025-07-11T08:58:22.444+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:22.451+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.451+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:22.451+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.456+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:22.456+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=972593 +2025-07-11T08:58:22.456+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:22.469+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.469+0200" +2025-07-11T08:58:22.480+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:22.480+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: network=unix address=/tmp/plugin1778225252 timestamp="2025-07-11T08:58:22.480+0200" +2025-07-11T08:58:22.489+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:22.495+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:22.495+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:22.498+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.501+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=972385 +2025-07-11T08:58:22.501+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.501+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:22.501+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.502+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 id=972279 +2025-07-11T08:58:22.502+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.503+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.504+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=972447 +2025-07-11T08:58:22.504+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.504+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:22.504+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.505+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=972340 +2025-07-11T08:58:22.505+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.505+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.506+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 id=972332 +2025-07-11T08:58:22.506+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.507+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.509+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=972480 +2025-07-11T08:58:22.509+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.509+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.510+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=972529 +2025-07-11T08:58:22.510+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.510+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.510+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:22.511+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=972402 +2025-07-11T08:58:22.511+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.512+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.513+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=972514 +2025-07-11T08:58:22.513+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.513+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.514+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=972465 +2025-07-11T08:58:22.514+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.515+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.515+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:22.516+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=972305 +2025-07-11T08:58:22.516+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.516+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.517+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=972433 +2025-07-11T08:58:22.518+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.518+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.518+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.524+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:58:22.525+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=972618 +2025-07-11T08:58:22.525+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:58:22.531+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.531+0200" +2025-07-11T08:58:22.557+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:22.557+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin2320243643 network=unix timestamp="2025-07-11T08:58:22.557+0200" +2025-07-11T08:58:22.570+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.570+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:22.572+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=972546 +2025-07-11T08:58:22.572+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.572+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.574+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=972318 +2025-07-11T08:58:22.574+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.574+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.575+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=972351 +2025-07-11T08:58:22.575+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.575+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.575+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:22.577+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=972564 +2025-07-11T08:58:22.577+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.578+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.579+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=972593 +2025-07-11T08:58:22.579+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.579+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.580+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=972496 +2025-07-11T08:58:22.580+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.582+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.583+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=972618 +2025-07-11T08:58:22.583+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.583+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.584+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 id=972288 +2025-07-11T08:58:22.584+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.584+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.584+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.588+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:58:22.589+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=972632 +2025-07-11T08:58:22.589+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:58:22.597+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.597+0200" +2025-07-11T08:58:22.609+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:22.609+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: network=unix address=/tmp/plugin2285186318 timestamp="2025-07-11T08:58:22.608+0200" +2025-07-11T08:58:22.617+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.617+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.621+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:58:22.621+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=972646 +2025-07-11T08:58:22.621+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:58:22.629+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.629+0200" +2025-07-11T08:58:22.640+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:22.640+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin3686458173 network=unix timestamp="2025-07-11T08:58:22.640+0200" +2025-07-11T08:58:22.648+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.648+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.654+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:58:22.654+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=972664 +2025-07-11T08:58:22.654+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:58:22.655+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_req_id=90b8e741-d479-ba91-d43e-31930ff47f08 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.655+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=port tf_req_id=90b8e741-d479-ba91-d43e-31930ff47f08 tf_rpc=ValidateProviderConfig tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.655+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=90b8e741-d479-ba91-d43e-31930ff47f08 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.655+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_mux_provider="*proto6server.Server" @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=domain tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=90b8e741-d479-ba91-d43e-31930ff47f08 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.655+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_attribute_path=insecure tf_req_id=90b8e741-d479-ba91-d43e-31930ff47f08 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.655+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=insecure tf_req_id=90b8e741-d479-ba91-d43e-31930ff47f08 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.655+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_mux_provider="*proto6server.Server" @module=sdk.framework tf_attribute_path=token tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=90b8e741-d479-ba91-d43e-31930ff47f08 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.655+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=token tf_req_id=90b8e741-d479-ba91-d43e-31930ff47f08 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.655+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=90b8e741-d479-ba91-d43e-31930ff47f08 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.655+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_req_id=90b8e741-d479-ba91-d43e-31930ff47f08 timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.655+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=jwt_profile_json tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_mux_provider="*proto6server.Server" tf_req_id=90b8e741-d479-ba91-d43e-31930ff47f08 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.655+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=jwt_profile_json tf_req_id=90b8e741-d479-ba91-d43e-31930ff47f08 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.655+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=jwt_profile_json tf_rpc=ValidateProviderConfig tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=00106396-babf-85ab-ffba-7b1ce1751c8d timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.655+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_req_id=00106396-babf-85ab-ffba-7b1ce1751c8d @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig tf_attribute_path=jwt_profile_json tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.655+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=port @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=00106396-babf-85ab-ffba-7b1ce1751c8d tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.655+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_req_id=00106396-babf-85ab-ffba-7b1ce1751c8d timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.655+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=sdk.framework tf_req_id=00106396-babf-85ab-ffba-7b1ce1751c8d tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=domain timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.655+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_req_id=00106396-babf-85ab-ffba-7b1ce1751c8d @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.656+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=00106396-babf-85ab-ffba-7b1ce1751c8d tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.656+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=00106396-babf-85ab-ffba-7b1ce1751c8d @module=sdk.framework tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=insecure timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.656+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_rpc=ValidateProviderConfig tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=00106396-babf-85ab-ffba-7b1ce1751c8d timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.656+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_req_id=00106396-babf-85ab-ffba-7b1ce1751c8d timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.656+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_req_id=00106396-babf-85ab-ffba-7b1ce1751c8d tf_rpc=ValidateProviderConfig tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.656+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=00106396-babf-85ab-ffba-7b1ce1751c8d tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=jwt_profile_file timestamp="2025-07-11T08:58:22.655+0200" +2025-07-11T08:58:22.661+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.661+0200" +2025-07-11T08:58:22.673+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:22.673+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: network=unix address=/tmp/plugin3619972233 timestamp="2025-07-11T08:58:22.673+0200" +2025-07-11T08:58:22.684+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.685+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=972646 +2025-07-11T08:58:22.685+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.686+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_req_id=67488c5c-8019-6bdc-81e7-1dc9b6c2eedc timestamp="2025-07-11T08:58:22.686+0200" +2025-07-11T08:58:22.686+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=port tf_req_id=67488c5c-8019-6bdc-81e7-1dc9b6c2eedc tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:58:22.686+0200" +2025-07-11T08:58:22.686+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=67488c5c-8019-6bdc-81e7-1dc9b6c2eedc @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=domain tf_rpc=ValidateProviderConfig @module=sdk.framework timestamp="2025-07-11T08:58:22.686+0200" +2025-07-11T08:58:22.686+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=domain tf_rpc=ValidateProviderConfig tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=67488c5c-8019-6bdc-81e7-1dc9b6c2eedc timestamp="2025-07-11T08:58:22.686+0200" +2025-07-11T08:58:22.686+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=insecure tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=67488c5c-8019-6bdc-81e7-1dc9b6c2eedc @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:22.686+0200" +2025-07-11T08:58:22.686+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=insecure tf_req_id=67488c5c-8019-6bdc-81e7-1dc9b6c2eedc @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:22.686+0200" +2025-07-11T08:58:22.686+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_req_id=67488c5c-8019-6bdc-81e7-1dc9b6c2eedc tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:22.686+0200" +2025-07-11T08:58:22.686+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_req_id=67488c5c-8019-6bdc-81e7-1dc9b6c2eedc timestamp="2025-07-11T08:58:22.686+0200" +2025-07-11T08:58:22.686+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=jwt_profile_file tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=67488c5c-8019-6bdc-81e7-1dc9b6c2eedc tf_rpc=ValidateProviderConfig @module=sdk.framework tf_mux_provider="*proto6server.Server" @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T08:58:22.686+0200" +2025-07-11T08:58:22.686+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_req_id=67488c5c-8019-6bdc-81e7-1dc9b6c2eedc @module=sdk.framework timestamp="2025-07-11T08:58:22.686+0200" +2025-07-11T08:58:22.686+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=jwt_profile_json tf_req_id=67488c5c-8019-6bdc-81e7-1dc9b6c2eedc tf_rpc=ValidateProviderConfig tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:58:22.686+0200" +2025-07-11T08:58:22.686+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=sdk.framework tf_attribute_path=jwt_profile_json tf_mux_provider="*proto6server.Server" tf_req_id=67488c5c-8019-6bdc-81e7-1dc9b6c2eedc tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 timestamp="2025-07-11T08:58:22.686+0200" +2025-07-11T08:58:22.690+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.691+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=972664 +2025-07-11T08:58:22.691+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.692+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.693+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 id=972296 +2025-07-11T08:58:22.693+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.693+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:22.696+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.697+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=972419 +2025-07-11T08:58:22.697+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.698+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:22.701+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.702+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=972580 +2025-07-11T08:58:22.702+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.708+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.709+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=972367 +2025-07-11T08:58:22.709+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.710+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:22.711+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=972632 +2025-07-11T08:58:22.711+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:22.711+0200 [INFO] backend/local: apply calling Plan +2025-07-11T08:58:22.711+0200 [DEBUG] Building and walking plan graph for NormalMode +2025-07-11T08:58:22.721+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/zitadel/zitadel"], implied first by module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) +2025-07-11T08:58:22.721+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/null"], implied first by module.tenant-365zon.module.minio.null_resource.health_check (expand) +2025-07-11T08:58:22.721+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/random"], implied first by module.minio.random_password.minio_access_key (expand) +2025-07-11T08:58:22.721+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/external"], implied first by module.argocd.data.external.processed_values (expand) +2025-07-11T08:58:22.721+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/local"], implied first by module.zitadel.local_file.zitadel_jwt_profile_file (expand) +2025-07-11T08:58:22.722+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.722+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.722+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.mongodb.helm_release.mongodb (expand)" (*terraform.nodeExpandPlannableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_namespace.tenant (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn (expand)" (*terraform.nodeExpandPlannableResource) needs module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.storage (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "data.minio_s3_object.k8s_yaml (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.argocd.helm_release.argocd (expand)" (*terraform.nodeExpandPlannableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_namespace.mongodb (expand)" (*terraform.nodeExpandPlannableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_secret.redis (expand)" (*terraform.nodeExpandPlannableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.zitadel.helm_release.zitadel (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.helm_release.rabbitmq (expand)" (*terraform.nodeExpandPlannableResource) needs module.rabbitmq.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.monitoring.helm_release.kube_prometheus_stack (expand)" (*terraform.nodeExpandPlannableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.random_password.password (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_namespace.argocd (expand)" (*terraform.nodeExpandPlannableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.redis.helm_release.redis (expand)" (*terraform.nodeExpandPlannableResource) needs module.redis.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_namespace.zitadel (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_replica_set_key (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.monitoring.random_password.grafana_admin_password (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_access_key (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.argocd.data.external.processed_values (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/external"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_root_password (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_secret.postgresql_auth (expand)" (*terraform.nodeExpandPlannableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_secret.mongodb_auth (expand)" (*terraform.nodeExpandPlannableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_namespace.redis (expand)" (*terraform.nodeExpandPlannableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.kubernetes_job.create-tenant (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-db.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.723+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_action.groups-claim (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_secret_key (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/local"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand)" (*terraform.nodeExpandPlannableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.argocd.data.kubernetes_secret.bridge-tls (expand)" (*terraform.nodeExpandPlannableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.argocd.random_password.admin_password (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_user_password (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.minio.helm_release.minio (expand)" (*terraform.nodeExpandPlannableResource) needs module.minio.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_root_password (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)" (*terraform.nodeExpandPlannableResource) needs module.cluster-init.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.zitadel.random_password.zitadel_masterkey (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.random_password.tenant (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.redis.random_password.redis (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.postgresql.helm_release.postgresql (expand)" (*terraform.nodeExpandPlannableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_namespace.postgresql (expand)" (*terraform.nodeExpandPlannableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_secret.argocd-tls (expand)" (*terraform.nodeExpandPlannableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_secret.zitadel (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_namespace.monitoring (expand)" (*terraform.nodeExpandPlannableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.null_resource.health_check (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/null"] +2025-07-11T08:58:22.724+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.725+0200 [DEBUG] pruning unused module.rabbitmq.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.725+0200 [DEBUG] pruning unused module.cluster-init.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:22.725+0200 [DEBUG] pruning unused module.postgresql.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:58:22.725+0200 [DEBUG] pruning unused module.minio.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.725+0200 [DEBUG] pruning unused module.argocd.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:58:22.725+0200 [DEBUG] pruning unused module.tenant-365zon.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:22.725+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:22.725+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.725+0200 [DEBUG] pruning unused module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.725+0200 [DEBUG] pruning unused module.mongodb.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:58:22.725+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/vault"] +2025-07-11T08:58:22.725+0200 [DEBUG] pruning unused module.zitadel-db.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:22.725+0200 [DEBUG] pruning unused provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:22.725+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:22.725+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "output.mongodb-connection-string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (expand)" references: [] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.name (expand)" references: [module.zitadel-argocd.var.name (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "output.argocd-root-password (expand)" references: [module.argocd.output.admin_password (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (close)" references: [] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_redirect_uri (expand)" references: [module.zitadel.output.server (expand) module.zitadel-argocd.output.logoutSuffix (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "local.k8s_config (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (expand)" references: [] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.wait_on (expand)" references: [module.zitadel-argocd.output.installed (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.random_password.password (expand)" references: [] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_replica_set_key (expand)" references: [] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.mongodb.helm_release.mongodb (expand)" references: [module.mongodb.var.wait_on (expand) module.mongodb.kubernetes_secret.mongodb_auth (expand) module.mongodb.var.usernames (expand) module.mongodb.var.databases (expand) module.mongodb.var.replicas (expand) module.mongodb.kubernetes_namespace.mongodb (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.argocd.random_password.admin_password (expand)" references: [] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.name (expand)" references: [] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_server (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.uri (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)" references: [] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.wait_on (expand)" references: [module.zitadel-db.output.installed (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_auth (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (close)" references: [] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (expand)" references: [] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.argocd (close)" references: [] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_issuer (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.service_name (expand)" references: [] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand)" references: [] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.username (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "var.minio_server" references: [] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)" references: [] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (close)" references: [] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (close)" references: [] +2025-07-11T08:58:22.737+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_namespace.argocd (expand)" references: [module.argocd.var.namespace (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.minio.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)" references: [module.tenant-365zon.local.name (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_config (expand)" references: [module.mongodb.var.k8s_config_yaml (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_config (expand)" references: [module.rabbitmq.var.k8s_config_yaml (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (expand)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.ingressClass (expand)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.service_name (expand)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (expand)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.monitoring (close)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.redis (expand)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.access_key (expand)" references: [module.tenant-365zon.var.minio_access_key (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "output.minio-secret-key (expand)" references: [module.tenant-365zon.output.minio_secret_key (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (close)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.wait_on (expand)" references: [module.cluster-init.var.wait_on (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.local.argocd_uri (expand)" references: [module.zitadel-argocd.var.argocd_service_domain (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.minio.var.displayOnHomepage (expand)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.access_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel.helm_release.zitadel (expand)" references: [module.zitadel.var.wait_on (expand) module.zitadel.kubernetes_secret.zitadel (expand) module.zitadel.var.enabled (expand) module.zitadel.local.service_uri (expand) module.zitadel.var.database (expand) module.zitadel.var.database_username (expand) module.zitadel.var.database_password (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.database_root_username (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.display_on_homepage (expand) module.zitadel.var.ingressClass (expand) module.zitadel.kubernetes_namespace.zitadel (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_secret_key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.ingressClass (expand)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.minio.output.installed (expand)" references: [module.minio.helm_release.minio (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_user_password (expand)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)" references: [module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.grafana_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (close)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_secret.postgresql_auth (expand)" references: [module.postgresql.var.wait_on (expand) module.postgresql.var.enabled (expand) module.postgresql.random_password.postgresql_user_password (expand) module.postgresql.random_password.postgresql_root_password (expand) module.postgresql.kubernetes_namespace.postgresql (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin (expand)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (validation)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_config (expand)" references: [module.zitadel-db.var.k8s_config_yaml (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.connection_string (expand)" references: [module.mongodb.random_password.mongodb_root_password (expand) module.mongodb.var.replicas (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.minio.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_host (expand)" references: [module.redis.local.k8s_config (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_config (expand)" references: [module.tenant-365zon.var.k8s_config_yaml (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.minio (expand)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.service_uri (expand)" references: [module.zitadel.var.service_name (expand) module.zitadel.var.server_dns (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.tls (expand)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.scopes (expand)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (close)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)" references: [module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand) module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.minio.var.tls (expand)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.wait_on (expand)" references: [module.argocd.output.installed (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_host (expand)" references: [module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (expand)" references: [] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:58:22.738+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.name (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "local.k8s_config_yaml (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_access_key (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.namespace (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.minio.var.mode (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)" references: [module.tenant-365zon.var.user_id (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.ingressClass (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_id (expand)" references: [module.zitadel-argocd.output.client_id (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.postgresql (close)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_secret.mongodb_auth (expand)" references: [module.mongodb.var.wait_on (expand) module.mongodb.random_password.mongodb_root_password (expand) module.mongodb.random_password.mongodb_replica_set_key (expand) module.mongodb.kubernetes_namespace.mongodb (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_username (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.host (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin_server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.minio.local.admin_service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.admin_server_dns (expand) module.minio.var.admin_server_dns (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.service_name (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "local.cluster_dns (expand)" references: [local.cluster_shortname (expand) local.tld (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_namespace.postgresql (expand)" references: [module.postgresql.var.enabled (expand) module.postgresql.var.namespace (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_admin_uri (expand)" references: [module.minio.local.admin_service_uri (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-argocd.var.domain (expand) module.zitadel-argocd.var.jwt_profile_file (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.minio.helm_release.minio (expand)" references: [module.minio.random_password.minio_access_key (expand) module.minio.random_password.minio_secret_key (expand) module.minio.var.namespace (expand) module.minio.local.service_uri (expand) module.minio.local.admin_service_uri (expand) module.minio.var.admin (expand) module.minio.var.mode (expand) module.minio.var.tls (expand) module.minio.var.ingressClass (expand) module.minio.var.displayOnHomepage (expand) module.minio.var.mode (expand) module.minio.var.replicas (expand) module.minio.var.replicas (expand) module.minio.var.storageSize (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_secret.argocd-tls (expand)" references: [module.argocd.data.kubernetes_secret.bridge-tls (expand) module.argocd.data.kubernetes_secret.bridge-tls (expand) module.argocd.kubernetes_namespace.argocd (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.name (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.org_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.helm_release.rabbitmq (expand)" references: [module.rabbitmq.random_password.password (expand) module.rabbitmq.var.wait_on (expand) module.rabbitmq.random_password.password (expand) module.rabbitmq.var.namespace (expand) module.rabbitmq.var.replicas (expand) module.rabbitmq.local.service_uri (expand) module.rabbitmq.var.admin (expand) module.rabbitmq.var.tls (expand) module.rabbitmq.var.ingressClass (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.owners (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel (close)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "output.minio-root-secret-key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_namespace.redis (expand)" references: [module.redis.var.namespace (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.usernames (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.admin (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.argocd_service_domain (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_config (expand)" references: [module.redis.var.k8s_config_yaml (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "var.region" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_auth (expand)" references: [module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_config (expand)" references: [module.zitadel-bootstrap.var.k8s_config_yaml (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.prometheus_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.kubernetes_secret.bridge-tls (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.enabled (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "output.rabbitmq-connection-string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (close)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_secret (expand)" references: [module.zitadel-argocd.output.client_secret (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.server (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.provider[\"registry.terraform.io/aminueza/minio\"]" references: [module.tenant-365zon.module.minio.var.server (expand) module.tenant-365zon.module.minio.var.region (expand) module.tenant-365zon.module.minio.var.secret_key (expand) module.tenant-365zon.module.minio.var.access_key (expand)] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.zitadel (expand)" references: [] +2025-07-11T08:58:22.739+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (close)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-user.var.email (expand) module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.databases (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_auth (expand)" references: [module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.jwt_profile_file (expand)" references: [module.zitadel.local_file.zitadel_jwt_profile_file (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.rabbitmq.local.k8s_host (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.external.processed_values (expand)" references: [module.argocd.local.service_uri (expand) module.argocd.var.server_dns (expand) module.argocd.local.grpc_service_uri (expand) module.argocd.var.redis_db_start_index (expand) module.argocd.var.redis_password (expand) module.argocd.var.oauth_uri (expand) module.argocd.var.oauth_issuer (expand) module.argocd.var.oauth_client_id (expand) module.argocd.var.oauth_client_secret (expand) module.argocd.var.oauth_redirect_uri (expand) module.argocd.var.tls (expand) module.argocd.var.ingressClass (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.database (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.bucket (expand)" references: [module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (close)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_username (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.minio.local.service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.admin_password (expand)" references: [module.argocd.random_password.admin_password (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/null\"]" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.service_name (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.mongodb (close)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "local.cluster_shortname (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_auth (expand)" references: [module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_secret_key (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.installed (expand)" references: [module.postgresql.helm_release.postgresql (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel.random_password.zitadel_masterkey (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.namespace (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_url (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_auth (expand)" references: [module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.monitoring.random_password.grafana_admin_password (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_secret.zitadel (expand)" references: [module.zitadel.var.enabled (expand) module.zitadel.random_password.zitadel_masterkey (expand) module.zitadel.kubernetes_namespace.zitadel (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.installed (expand)" references: [module.zitadel-db.kubernetes_job.create-tenant (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_secret_key (expand)" references: [module.minio.random_password.minio_secret_key (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.redis.output.installed (expand)" references: [module.redis.helm_release.redis (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand)" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.redis (close)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack (expand)" references: [module.monitoring.var.wait_on (expand) module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.var.remote_write_url (expand) module.monitoring.var.remote_read_url (expand) module.monitoring.random_password.grafana_admin_password (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_db_start_index (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_access_key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.idp_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.installed (expand)" references: [module.rabbitmq.helm_release.rabbitmq (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.minio.var.namespace (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.replicas (expand)" references: [local.node_count (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.service_uri (expand)" references: [module.monitoring.var.service_name (expand) module.monitoring.var.server_dns (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.minio.output.access_key (expand)" references: [module.minio.random_password.minio_access_key (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (close)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (close)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.namespace (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_server (expand)" references: [module.minio.output.minio_server (expand)] +2025-07-11T08:58:22.740+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_auth (expand)" references: [module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_secret_key (expand)" references: [module.tenant-365zon.module.minio.output.secret_key (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (expand)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.redis.var.namespace (expand)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (expand)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (close)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (expand)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_namespace.tenant (expand)" references: [module.tenant-365zon.var.wait_on (expand) module.tenant-365zon.local.name (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.wait_on (expand)" references: [module.postgresql.output.installed (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/aminueza/minio\"]" references: [var.minio_server var.region var.secret_key var.access_key] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (close)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)" references: [module.tenant-365zon.module.minio.null_resource.health_check (expand) module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn (expand)" references: [module.cluster-init.module.longhorn.var.wait_on (expand) module.cluster-init.module.longhorn.var.namespace (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "output.monitoring (expand)" references: [module.monitoring.output.access_instructions (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.random_password.tenant (expand)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings (expand)" references: [module.tenant-365zon.var.mongodb_connection_string (expand) module.tenant-365zon.var.rabbitmq_connection_string (expand) module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.kubernetes_job.create-tenant (expand)" references: [module.zitadel-db.var.wait_on (expand) module.zitadel-db.var.enabled (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.namespace (expand) module.zitadel-db.var.host (expand) module.zitadel-db.var.root_username (expand) module.zitadel-db.var.root_password (expand) module.zitadel-db.var.root_database (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.name (expand) module.zitadel-db.random_password.tenant (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.redis.random_password.redis (expand)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_read_url (expand)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "output.minio-root-access-key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.redis.helm_release.redis (expand)" references: [module.redis.var.wait_on (expand) module.redis.var.architecture (expand) module.redis.var.architecture (validation) module.redis.kubernetes_namespace.redis (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin (expand)" references: [module.zitadel.helm_release.zitadel (expand) module.zitadel.var.namespace (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_database (expand)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-bootstrap.var.domain (expand) module.zitadel-bootstrap.var.jwt_profile_file (expand)] +2025-07-11T08:58:22.741+0200 [DEBUG] ReferenceTransformer: "module.minio.var.storageSize (expand)" references: [] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_config (expand)" references: [module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.namespace (expand)" references: [] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)" references: [] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.installed (expand)" references: [module.mongodb.helm_release.mongodb (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.logoutSuffix (expand)" references: [] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (expand)" references: [] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close)" references: [] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_action.groups-claim (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.mongodb_connection_string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_config (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.connection_string (expand)" references: [module.rabbitmq.random_password.password (expand) module.rabbitmq.var.namespace (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)" references: [] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.access_instructions (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.random_password.grafana_admin_password (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.postgresql.helm_release.postgresql (expand)" references: [module.postgresql.var.wait_on (expand) module.postgresql.kubernetes_secret.postgresql_auth (expand) module.postgresql.var.enabled (expand) module.postgresql.var.username (expand) module.postgresql.kubernetes_namespace.postgresql (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)" references: [module.zitadel-bootstrap.var.domain (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_host (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_api_uri (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.secret_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.alertmanager_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "output.minio-access-key (expand)" references: [module.tenant-365zon.output.minio_access_key (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.monitoring (expand)" references: [] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (expand)" references: [] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (expand)" references: [] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.output.installed (expand)" references: [module.cluster-init.module.longhorn.helm_release.longhorn (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "var.vault_addr" references: [] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.wait_on (expand)" references: [] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.storage (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand) module.tenant-365zon.module.minio.output.secret_key (expand) module.tenant-365zon.var.minio_api_uri (expand) module.tenant-365zon.module.minio.output.bucket (expand) module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: [] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.mongodb (expand)" references: [] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.server_dns (expand)" references: [] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.namespace (expand)" references: [] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_password (expand)" references: [module.redis.output.password (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.server (expand)" references: [module.tenant-365zon.var.minio_server (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.root_password (expand)" references: [module.postgresql.random_password.postgresql_root_password (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:22.742+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_auth (expand)" references: [module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_namespace.zitadel (expand)" references: [module.zitadel.var.enabled (expand) module.zitadel.var.namespace (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.namespace (expand)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.minio.var.ingressClass (expand)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.output.installed (expand)" references: [module.cluster-init.module.longhorn.output.installed (expand) module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_uri (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (close)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (close)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)" references: [module.zitadel-argocd.module.zitadel_project.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project.var.name (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.redis.output.password (expand)" references: [module.redis.random_password.redis (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.service_uri (expand)" references: [module.rabbitmq.var.service_name (expand) module.rabbitmq.var.server_dns (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.enabled (expand)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (expand)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.wait_on (expand)" references: [module.minio.output.installed (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_api_uri (expand)" references: [module.minio.output.minio_api_uri (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (close)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.tenant-365zon.var.jwt_profile_file (expand) module.tenant-365zon.var.domain (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file (expand)" references: [module.zitadel.data.kubernetes_secret.zitadel_admin (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.replicas (expand)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (expand)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "var.bucket" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_host (expand)" references: [module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.installed (expand)" references: [module.argocd.helm_release.argocd (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.redis.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.minio.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.job_name (expand)" references: [module.zitadel-db.var.enabled (expand) module.zitadel-db.kubernetes_job.create-tenant (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.minio.output.secret_key (expand)" references: [module.minio.random_password.minio_secret_key (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.null_resource.health_check (expand)" references: [module.tenant-365zon.module.minio.var.wait_on (expand) module.tenant-365zon.module.minio.var.server (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_config (expand)" references: [module.zitadel.var.k8s_config_yaml (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.password (expand)" references: [module.postgresql.random_password.postgresql_user_password (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.display_on_homepage (expand)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.name (expand)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_config (expand)" references: [module.argocd.var.k8s_config_yaml (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.argocd (expand)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)" references: [module.tenant-365zon.var.org_id (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.minio.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.minio.local.k8s_host (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.postgresql (expand)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_config (expand)" references: [module.monitoring.var.k8s_config_yaml (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.redis_db_next_start_index (expand)" references: [module.argocd.var.redis_db_start_index (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (expand)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand)" references: [] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_host (expand)" references: [module.monitoring.local.k8s_config (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)] +2025-07-11T08:58:22.743+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.tls (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.ingressClass (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.cluster-init.module.longhorn.local.k8s_host (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "data.minio_s3_object.k8s_yaml (expand)" references: [var.bucket] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_host (expand)" references: [module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand)" references: [module.monitoring.var.remote_write_username (expand) module.monitoring.var.remote_write_password (expand) module.monitoring.kubernetes_namespace.monitoring (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "var.endpoints" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "var.access_key" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_auth (expand)" references: [module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.tld (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_host (expand)" references: [module.zitadel.local.k8s_config (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (close)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_access_key (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_namespace.mongodb (expand)" references: [module.mongodb.var.namespace (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_config (expand)" references: [module.minio.var.k8s_config_yaml (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand) module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "var.vault_token" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "local.k8s_host (expand)" references: [local.k8s_config (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_auth (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_auth (expand)" references: [module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_password (expand)" references: [module.zitadel-db.output.password (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_username (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.user_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_host (expand)" references: [module.mongodb.local.k8s_config (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_host (expand)" references: [module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_auth (expand)" references: [module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_root_password (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_root_password (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.minio (close)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/local\"]" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.enabled (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.password (expand)" references: [module.zitadel-db.random_password.tenant (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (close)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (close)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "local.bridge_dns (expand)" references: [local.tld (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_auth (expand)" references: [module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (close)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (close)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (close)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.rabbitmq_connection_string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.namespace (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.admin_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_password (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.email (expand)" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.installed (expand)" references: [module.zitadel.helm_release.zitadel (expand) module.zitadel.local_file.zitadel_jwt_profile_file (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.cluster-init.local.k8s_host (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/external\"]" references: [] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:22.744+0200 [DEBUG] ReferenceTransformer: "local.tld (expand)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "local.k8s_auth (expand)" references: [local.k8s_config (expand) local.k8s_config (expand) local.k8s_config (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_auth (expand)" references: [module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_bucket (expand)" references: [module.tenant-365zon.module.minio.output.bucket (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_host (expand)" references: [module.argocd.local.k8s_config (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.grpc_service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (expand)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (expand)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.username (expand)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.application_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_access_key (expand)" references: [module.minio.random_password.minio_access_key (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (close)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_host (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_host (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.namespace (expand)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.minio.var.replicas (expand)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.secret_key (expand)" references: [module.tenant-365zon.var.minio_secret_key (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_secret.redis (expand)" references: [module.redis.random_password.redis (expand) module.redis.kubernetes_namespace.redis (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.wait_on (expand)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.redis.var.wait_on (expand)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (expand)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd (expand)" references: [module.argocd.var.wait_on (expand) module.argocd.kubernetes_secret.argocd-tls (expand) module.argocd.random_password.admin_password (expand) module.argocd.data.external.processed_values (expand) module.argocd.kubernetes_namespace.argocd (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.enabled (expand)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "local.node_count (expand)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_host (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "var.secret_key" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.minio.var.service_name (expand)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.region (expand)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel-db.local.k8s_host (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_username (expand)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.wait_on (expand)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_host (expand)" references: [module.minio.local.k8s_config (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_config (expand)" references: [module.postgresql.var.k8s_config_yaml (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_host (expand)" references: [module.postgresql.local.k8s_config (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)" references: [module.tenant-365zon.module.minio.null_resource.health_check (expand) module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:58:22.745+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (close)" references: [] +2025-07-11T08:58:22.825+0200 [DEBUG] Starting graph walk: walkPlan +2025-07-11T08:58:22.826+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.826+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.832+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5"] +2025-07-11T08:58:22.833+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 pid=972681 +2025-07-11T08:58:22.833+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 +2025-07-11T08:58:22.835+0200 [INFO] provider.terraform-provider-external_v2.3.5_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.835+0200" +2025-07-11T08:58:22.847+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:22.847+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: plugin address: address=/tmp/plugin3160208828 network=unix timestamp="2025-07-11T08:58:22.847+0200" +2025-07-11T08:58:22.854+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.854+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.859+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5"] +2025-07-11T08:58:22.859+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 pid=972689 +2025-07-11T08:58:22.859+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 +2025-07-11T08:58:22.861+0200 [INFO] provider.terraform-provider-random_v3.7.2_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.861+0200" +2025-07-11T08:58:22.873+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:22.873+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: plugin address: address=/tmp/plugin2661406292 network=unix timestamp="2025-07-11T08:58:22.873+0200" +2025-07-11T08:58:22.880+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.880+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.885+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 args=[".terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1"] +2025-07-11T08:58:22.885+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 pid=972697 +2025-07-11T08:58:22.885+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 +2025-07-11T08:58:22.887+0200 [INFO] provider.terraform-provider-slugify_v0.1.1: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.887+0200" +2025-07-11T08:58:22.898+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:22.899+0200 [DEBUG] provider.terraform-provider-slugify_v0.1.1: plugin address: address=/tmp/plugin1602707609 network=unix timestamp="2025-07-11T08:58:22.898+0200" +2025-07-11T08:58:22.907+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.907+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.911+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5"] +2025-07-11T08:58:22.911+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 pid=972709 +2025-07-11T08:58:22.912+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 +2025-07-11T08:58:22.914+0200 [INFO] provider.terraform-provider-local_v2.5.3_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.914+0200" +2025-07-11T08:58:22.926+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:22.926+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: plugin address: address=/tmp/plugin710339774 network=unix timestamp="2025-07-11T08:58:22.926+0200" +2025-07-11T08:58:22.933+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.933+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.939+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5"] +2025-07-11T08:58:22.939+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 pid=972718 +2025-07-11T08:58:22.939+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 +2025-07-11T08:58:22.941+0200 [INFO] provider.terraform-provider-null_v3.2.4_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.941+0200" +2025-07-11T08:58:22.953+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:22.953+0200 [DEBUG] provider.terraform-provider-null_v3.2.4_x5: plugin address: address=/tmp/plugin2671987798 network=unix timestamp="2025-07-11T08:58:22.953+0200" +2025-07-11T08:58:22.961+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:22.961+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:22.965+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:58:22.965+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=972726 +2025-07-11T08:58:22.965+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:58:22.972+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:58:22.972+0200" +2025-07-11T08:58:22.998+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin2142857350 network=unix timestamp="2025-07-11T08:58:22.998+0200" +2025-07-11T08:58:22.999+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:23.010+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:23.010+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:23.015+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:23.015+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=972739 +2025-07-11T08:58:23.015+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:23.034+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:23.034+0200" +2025-07-11T08:58:23.042+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:23.042+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin775748797 network=unix timestamp="2025-07-11T08:58:23.042+0200" +2025-07-11T08:58:23.049+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:23.049+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:23.054+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:23.054+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=972756 +2025-07-11T08:58:23.054+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:23.068+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:23.068+0200" +2025-07-11T08:58:23.079+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: network=unix address=/tmp/plugin2199588612 timestamp="2025-07-11T08:58:23.079+0200" +2025-07-11T08:58:23.079+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:23.087+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:23.087+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:23.087+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:23.089+0200 [WARN] ValidateProviderConfig from "provider[\"registry.terraform.io/aminueza/minio\"]" changed the config value, but that value is unused +2025-07-11T08:58:23.092+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:23.092+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=972774 +2025-07-11T08:58:23.092+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:23.104+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:23.104+0200" +2025-07-11T08:58:23.116+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:23.116+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin3206299459 network=unix timestamp="2025-07-11T08:58:23.116+0200" +2025-07-11T08:58:23.125+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:23.125+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:23.125+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:23.130+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:23.130+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=972787 +2025-07-11T08:58:23.130+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:23.148+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:23.148+0200" +2025-07-11T08:58:23.157+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:23.157+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2521466225 network=unix timestamp="2025-07-11T08:58:23.157+0200" +2025-07-11T08:58:23.164+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:23.164+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:23.165+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:58:23 [DEBUG] MinIO SSL client transport configured successfully: timestamp="2025-07-11T08:58:23.165+0200" +2025-07-11T08:58:23.165+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:23 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:58:23.165+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_secret_key" references: [] +2025-07-11T08:58:23.165+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_replica_set_key" references: [] +2025-07-11T08:58:23.165+0200 [DEBUG] ReferenceTransformer: "module.redis.random_password.redis" references: [] +2025-07-11T08:58:23.165+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.random_password.tenant" references: [] +2025-07-11T08:58:23.165+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 tf_rpc=ConfigureProvider @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8d4fd24c-b30c-f037-b4a8-6601970e96e6 timestamp="2025-07-11T08:58:23.165+0200" +2025-07-11T08:58:23.165+0200 [DEBUG] ReferenceTransformer: "module.monitoring.random_password.grafana_admin_password" references: [] +2025-07-11T08:58:23.165+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8d4fd24c-b30c-f037-b4a8-6601970e96e6 timestamp="2025-07-11T08:58:23.165+0200" +2025-07-11T08:58:23.166+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_access_key" references: [] +2025-07-11T08:58:23.166+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8d4fd24c-b30c-f037-b4a8-6601970e96e6 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm timestamp="2025-07-11T08:58:23.166+0200" +2025-07-11T08:58:23.166+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_root_password" references: [] +2025-07-11T08:58:23.166+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.kubernetes_secret.bridge-tls" references: [] +2025-07-11T08:58:23.166+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm tf_req_id=e971fb42-6732-799b-3ddf-f0b6d4ea115b config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider timestamp="2025-07-11T08:58:23.166+0200" +2025-07-11T08:58:23.166+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e971fb42-6732-799b-3ddf-f0b6d4ea115b @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm tf_rpc=ConfigureProvider timestamp="2025-07-11T08:58:23.166+0200" +2025-07-11T08:58:23.166+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_root_password" references: [] +2025-07-11T08:58:23.166+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e971fb42-6732-799b-3ddf-f0b6d4ea115b timestamp="2025-07-11T08:58:23.166+0200" +2025-07-11T08:58:23.166+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_namespace.argocd" references: [] +2025-07-11T08:58:23.166+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_user_password" references: [] +2025-07-11T08:58:23.166+0200 [DEBUG] ReferenceTransformer: "module.zitadel.random_password.zitadel_masterkey" references: [] +2025-07-11T08:58:23.166+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.random_password.password" references: [] +2025-07-11T08:58:23.166+0200 [DEBUG] ReferenceTransformer: "data.minio_s3_object.k8s_yaml" references: [] +2025-07-11T08:58:23.167+0200 [DEBUG] ReferenceTransformer: "module.argocd.random_password.admin_password" references: [] +2025-07-11T08:58:23.169+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:23.169+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=972804 +2025-07-11T08:58:23.169+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:23.187+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:23.187+0200" +2025-07-11T08:58:23.195+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:23.195+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin4137938423 network=unix timestamp="2025-07-11T08:58:23.195+0200" +2025-07-11T08:58:23.202+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:23.202+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:23.207+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:23.207+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=972822 +2025-07-11T08:58:23.207+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:23.220+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:23.220+0200" +2025-07-11T08:58:23.232+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:23.232+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin3827115156 network=unix timestamp="2025-07-11T08:58:23.232+0200" +2025-07-11T08:58:23.241+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:23.241+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:23.241+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:23.245+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:23.246+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=972835 +2025-07-11T08:58:23.246+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:23.264+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:23.264+0200" +2025-07-11T08:58:23.272+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:23.272+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2183857877 network=unix timestamp="2025-07-11T08:58:23.272+0200" +2025-07-11T08:58:23.279+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:23.279+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:23.280+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:23 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:58:23.280+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:23 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:58:23.280+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 tf_req_id=9d71fccf-dc05-b6b2-84f1-30ce41763cba @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider timestamp="2025-07-11T08:58:23.280+0200" +2025-07-11T08:58:23.280+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9d71fccf-dc05-b6b2-84f1-30ce41763cba tf_rpc=ConfigureProvider settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" timestamp="2025-07-11T08:58:23.280+0200" +2025-07-11T08:58:23.280+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9d71fccf-dc05-b6b2-84f1-30ce41763cba tf_rpc=ConfigureProvider timestamp="2025-07-11T08:58:23.280+0200" +2025-07-11T08:58:23.281+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring" references: [] +2025-07-11T08:58:23.284+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:23.284+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=972853 +2025-07-11T08:58:23.284+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:23.301+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:23.301+0200" +2025-07-11T08:58:23.309+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:23.309+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: network=unix address=/tmp/plugin311370672 timestamp="2025-07-11T08:58:23.309+0200" +2025-07-11T08:58:23.316+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:23.316+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:23.321+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:23.321+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=972871 +2025-07-11T08:58:23.321+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:23.337+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:23.337+0200" +2025-07-11T08:58:23.350+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:23.350+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin35378023 network=unix timestamp="2025-07-11T08:58:23.350+0200" +2025-07-11T08:58:23.358+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:23.358+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:23.358+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:23.362+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:23.362+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=972886 +2025-07-11T08:58:23.362+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:23.382+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:23.382+0200" +2025-07-11T08:58:23.391+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:23.391+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1085223477 network=unix timestamp="2025-07-11T08:58:23.391+0200" +2025-07-11T08:58:23.399+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:23.399+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:23.404+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:23.405+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=972904 +2025-07-11T08:58:23.405+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:23.419+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:23.419+0200" +2025-07-11T08:58:23.431+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:23.431+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin1157261057 network=unix timestamp="2025-07-11T08:58:23.431+0200" +2025-07-11T08:58:23.439+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:23.439+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:23.439+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:23.444+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:23.444+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=972920 +2025-07-11T08:58:23.444+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:23.457+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:23.457+0200" +2025-07-11T08:58:23.470+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:23.470+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin2824998774 network=unix timestamp="2025-07-11T08:58:23.470+0200" +2025-07-11T08:58:23.478+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:23.478+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:23.478+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:23.482+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:23.483+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=972934 +2025-07-11T08:58:23.483+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:23.501+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:23.501+0200" +2025-07-11T08:58:23.510+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:23.510+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1526709737 network=unix timestamp="2025-07-11T08:58:23.510+0200" +2025-07-11T08:58:23.518+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:23.518+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:23.522+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:23.522+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=972952 +2025-07-11T08:58:23.522+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:23.542+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:23.542+0200" +2025-07-11T08:58:23.552+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1659643943 network=unix timestamp="2025-07-11T08:58:23.552+0200" +2025-07-11T08:58:23.552+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:23.560+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:23.560+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:23.561+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:23 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:58:23.561+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:23 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:58:23.561+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:23 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:58:23.561+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: tf_req_id=a188cb3e-9651-a498-4112-72190a34bd1b tf_rpc=ConfigureProvider config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm timestamp="2025-07-11T08:58:23.561+0200" +2025-07-11T08:58:23.561+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: tf_req_id=a188cb3e-9651-a498-4112-72190a34bd1b tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:23.561+0200" +2025-07-11T08:58:23.561+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=4b1211be-aa8c-1b5a-2959-11ddb81889db @module=helm tf_rpc=ConfigureProvider timestamp="2025-07-11T08:58:23.561+0200" +2025-07-11T08:58:23.561+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:23 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:58:23.561+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=4b1211be-aa8c-1b5a-2959-11ddb81889db settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_rpc=ConfigureProvider timestamp="2025-07-11T08:58:23.561+0200" +2025-07-11T08:58:23.561+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_req_id=a188cb3e-9651-a498-4112-72190a34bd1b tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:23.561+0200" +2025-07-11T08:58:23.561+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_req_id=4b1211be-aa8c-1b5a-2959-11ddb81889db tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:23.561+0200" +2025-07-11T08:58:23.562+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config" references: [] +2025-07-11T08:58:23.562+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_namespace.redis" references: [] +2025-07-11T08:58:23.562+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_namespace.zitadel[0]" references: [] +2025-07-11T08:58:23.562+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_req_id=1b3e5c6e-459c-fb86-e80b-845e2870c975 tf_rpc=ConfigureProvider tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:23.562+0200" +2025-07-11T08:58:23.562+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1b3e5c6e-459c-fb86-e80b-845e2870c975 @module=helm tf_rpc=ConfigureProvider timestamp="2025-07-11T08:58:23.562+0200" +2025-07-11T08:58:23.562+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1b3e5c6e-459c-fb86-e80b-845e2870c975 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm timestamp="2025-07-11T08:58:23.562+0200" +2025-07-11T08:58:23.565+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:23.565+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=972969 +2025-07-11T08:58:23.565+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:23.579+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:23.579+0200" +2025-07-11T08:58:23.590+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin4104683130 network=unix timestamp="2025-07-11T08:58:23.590+0200" +2025-07-11T08:58:23.591+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:23.599+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:23.599+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:23.599+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:23.604+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:23.604+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=972985 +2025-07-11T08:58:23.604+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:23.623+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:23.623+0200" +2025-07-11T08:58:23.631+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:23.631+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1489522963 network=unix timestamp="2025-07-11T08:58:23.631+0200" +2025-07-11T08:58:23.638+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:23.638+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:23.642+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:23.643+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=973002 +2025-07-11T08:58:23.643+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:23.655+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:23.655+0200" +2025-07-11T08:58:23.667+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:23.667+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin419021496 network=unix timestamp="2025-07-11T08:58:23.667+0200" +2025-07-11T08:58:23.675+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:23.675+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:23.676+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:23 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:58:23.676+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:23 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:58:23.676+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=63f98eac-720f-b636-cfe2-beb19d333a14 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm timestamp="2025-07-11T08:58:23.676+0200" +2025-07-11T08:58:23.676+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_req_id=63f98eac-720f-b636-cfe2-beb19d333a14 timestamp="2025-07-11T08:58:23.676+0200" +2025-07-11T08:58:23.676+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=63f98eac-720f-b636-cfe2-beb19d333a14 tf_rpc=ConfigureProvider timestamp="2025-07-11T08:58:23.676+0200" +2025-07-11T08:58:23.677+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_namespace.mongodb" references: [] +2025-07-11T08:58:23.677+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_namespace.postgresql[0]" references: [] +2025-07-11T08:58:23.680+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:23.680+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=973016 +2025-07-11T08:58:23.680+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:23.693+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:23.693+0200" +2025-07-11T08:58:23.705+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:23.705+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin4142615969 network=unix timestamp="2025-07-11T08:58:23.705+0200" +2025-07-11T08:58:23.715+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:23.715+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:23.718+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:23 [INFO] Reading secret bridge-tls +2025-07-11T08:58:23.719+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @module=kubernetes.Kubernetes Accept-Encoding=gzip tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/cert-manager/secrets/bridge-tls tf_http_trans_id=38a757b8-e2a9-2414-d9c5-92249310b1e4 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_version=HTTP/1.1 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_op_type=request tf_http_req_body="" tf_http_req_method=GET Host=rancher.bridge.fourlights.dev timestamp="2025-07-11T08:58:23.718+0200" +2025-07-11T08:58:23.720+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm tf_req_id=b5bff6e6-5763-41fe-da63-c485ac0d299a config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" timestamp="2025-07-11T08:58:23.720+0200" +2025-07-11T08:58:23.720+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b5bff6e6-5763-41fe-da63-c485ac0d299a tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm timestamp="2025-07-11T08:58:23.720+0200" +2025-07-11T08:58:23.720+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=52ffcaf6-f712-65b8-a357-e87604a566ad timestamp="2025-07-11T08:58:23.720+0200" +2025-07-11T08:58:23.720+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @module=helm tf_req_id=52ffcaf6-f712-65b8-a357-e87604a566ad @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider timestamp="2025-07-11T08:58:23.720+0200" +2025-07-11T08:58:23.720+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=52ffcaf6-f712-65b8-a357-e87604a566ad tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 timestamp="2025-07-11T08:58:23.720+0200" +2025-07-11T08:58:23.720+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b5bff6e6-5763-41fe-da63-c485ac0d299a timestamp="2025-07-11T08:58:23.720+0200" +2025-07-11T08:58:23.721+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=f98f52a2-ed3f-96dd-180f-e4ceddfbec54 tf_resource_type=random_password tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.720+0200" +2025-07-11T08:58:23.721+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @module=sdk.framework tf_req_id=2397f8b9-a931-76ba-6813-7a38515b5943 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.720+0200" +2025-07-11T08:58:23.721+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn" references: [] +2025-07-11T08:58:23.721+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=2397f8b9-a931-76ba-6813-7a38515b5943 timestamp="2025-07-11T08:58:23.721+0200" +2025-07-11T08:58:23.721+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource tf_attribute_path=bcrypt_hash tf_req_id=2397f8b9-a931-76ba-6813-7a38515b5943 tf_resource_type=random_password timestamp="2025-07-11T08:58:23.721+0200" +2025-07-11T08:58:23.721+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=7de647ca-6741-a0b3-93ea-3634997b20ba tf_resource_type=random_password timestamp="2025-07-11T08:58:23.721+0200" +2025-07-11T08:58:23.721+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=special tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=0d115b6c-1303-87ff-a538-82590fb90ea0 timestamp="2025-07-11T08:58:23.721+0200" +2025-07-11T08:58:23.721+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=random_password tf_rpc=ReadResource tf_attribute_path=special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=2397f8b9-a931-76ba-6813-7a38515b5943 timestamp="2025-07-11T08:58:23.721+0200" +2025-07-11T08:58:23.721+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=7de647ca-6741-a0b3-93ea-3634997b20ba tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=result timestamp="2025-07-11T08:58:23.721+0200" +2025-07-11T08:58:23.721+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=7de647ca-6741-a0b3-93ea-3634997b20ba @module=sdk.framework tf_attribute_path=numeric tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.721+0200" +2025-07-11T08:58:23.721+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=bcrypt_hash tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f98f52a2-ed3f-96dd-180f-e4ceddfbec54 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.721+0200" +2025-07-11T08:58:23.721+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f98f52a2-ed3f-96dd-180f-e4ceddfbec54 timestamp="2025-07-11T08:58:23.721+0200" +2025-07-11T08:58:23.721+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=0f13eb9e-6e0d-f1a0-aa83-4b8061b81fdf tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:58:23.721+0200" +2025-07-11T08:58:23.721+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource tf_attribute_path=bcrypt_hash tf_req_id=fe0a87cb-56da-3530-82b4-16afb84f59b2 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.721+0200" +2025-07-11T08:58:23.721+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=upper tf_req_id=0d115b6c-1303-87ff-a538-82590fb90ea0 timestamp="2025-07-11T08:58:23.721+0200" +2025-07-11T08:58:23.721+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=special @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=0f13eb9e-6e0d-f1a0-aa83-4b8061b81fdf tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.721+0200" +2025-07-11T08:58:23.722+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=number tf_req_id=0f13eb9e-6e0d-f1a0-aa83-4b8061b81fdf tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.721+0200" +2025-07-11T08:58:23.722+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password @module=sdk.framework tf_attribute_path=special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f98f52a2-ed3f-96dd-180f-e4ceddfbec54 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.721+0200" +2025-07-11T08:58:23.722+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=f98f52a2-ed3f-96dd-180f-e4ceddfbec54 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_attribute_path=upper timestamp="2025-07-11T08:58:23.721+0200" +2025-07-11T08:58:23.722+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=special tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=fe0a87cb-56da-3530-82b4-16afb84f59b2 tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.721+0200" +2025-07-11T08:58:23.722+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=upper tf_req_id=7303bc7a-9e2c-cfad-c7fe-8e32222b57aa @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.722+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=0d115b6c-1303-87ff-a538-82590fb90ea0 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_attribute_path=min_upper timestamp="2025-07-11T08:58:23.721+0200" +2025-07-11T08:58:23.722+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @module=sdk.framework tf_attribute_path=result tf_req_id=7303bc7a-9e2c-cfad-c7fe-8e32222b57aa timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.722+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=0d115b6c-1303-87ff-a538-82590fb90ea0 tf_rpc=ReadResource tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.722+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=7303bc7a-9e2c-cfad-c7fe-8e32222b57aa @module=sdk.framework tf_attribute_path=bcrypt_hash tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.722+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:23 [INFO] Checking namespace argocd +2025-07-11T08:58:23.722+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=2397f8b9-a931-76ba-6813-7a38515b5943 tf_resource_type=random_password tf_attribute_path=upper tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.721+0200" +2025-07-11T08:58:23.722+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=length tf_req_id=0f13eb9e-6e0d-f1a0-aa83-4b8061b81fdf tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.721+0200" +2025-07-11T08:58:23.722+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_method=GET @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/argocd tf_http_req_version=HTTP/1.1 tf_http_trans_id=13882df5-5c42-a7fc-007b-1318960722c5 @module=kubernetes.Kubernetes Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.722+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_upper tf_resource_type=random_password tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f98f52a2-ed3f-96dd-180f-e4ceddfbec54 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.722+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=7303bc7a-9e2c-cfad-c7fe-8e32222b57aa tf_resource_type=random_password timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.723+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=length tf_req_id=2397f8b9-a931-76ba-6813-7a38515b5943 tf_resource_type=random_password tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.723+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=fe0a87cb-56da-3530-82b4-16afb84f59b2 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=random_password timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.723+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=length tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f98f52a2-ed3f-96dd-180f-e4ceddfbec54 tf_resource_type=random_password timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.723+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=7303bc7a-9e2c-cfad-c7fe-8e32222b57aa tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=special tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.723+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=0d115b6c-1303-87ff-a538-82590fb90ea0 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.723+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=special tf_req_id=7de647ca-6741-a0b3-93ea-3634997b20ba tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.723+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=0d115b6c-1303-87ff-a538-82590fb90ea0 @module=sdk.framework tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.723+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource tf_req_id=0f13eb9e-6e0d-f1a0-aa83-4b8061b81fdf tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.723+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=0f13eb9e-6e0d-f1a0-aa83-4b8061b81fdf tf_resource_type=random_password timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.723+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_req_id=f98f52a2-ed3f-96dd-180f-e4ceddfbec54 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.723+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource tf_attribute_path=min_special tf_req_id=7de647ca-6741-a0b3-93ea-3634997b20ba tf_resource_type=random_password timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.723+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=result tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f98f52a2-ed3f-96dd-180f-e4ceddfbec54 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.723+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=7303bc7a-9e2c-cfad-c7fe-8e32222b57aa @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.723+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=override_special tf_resource_type=random_password @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f98f52a2-ed3f-96dd-180f-e4ceddfbec54 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.723+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password @module=sdk.framework tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f98f52a2-ed3f-96dd-180f-e4ceddfbec54 timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.723+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=fe0a87cb-56da-3530-82b4-16afb84f59b2 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource tf_attribute_path=min_lower timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.723+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=upper tf_req_id=fe0a87cb-56da-3530-82b4-16afb84f59b2 tf_resource_type=random_password timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.723+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @module=sdk.framework tf_req_id=0f13eb9e-6e0d-f1a0-aa83-4b8061b81fdf tf_resource_type=random_password timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.723+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=0f13eb9e-6e0d-f1a0-aa83-4b8061b81fdf timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.724+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource tf_req_id=f98f52a2-ed3f-96dd-180f-e4ceddfbec54 timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.724+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=7de647ca-6741-a0b3-93ea-3634997b20ba tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.724+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=fe0a87cb-56da-3530-82b4-16afb84f59b2 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=length tf_resource_type=random_password timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.724+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=upper tf_req_id=7de647ca-6741-a0b3-93ea-3634997b20ba tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.724+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=numeric tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=fe0a87cb-56da-3530-82b4-16afb84f59b2 tf_resource_type=random_password timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.724+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_req_id=2397f8b9-a931-76ba-6813-7a38515b5943 timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.724+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=fe0a87cb-56da-3530-82b4-16afb84f59b2 tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.724+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=2397f8b9-a931-76ba-6813-7a38515b5943 tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.724+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f98f52a2-ed3f-96dd-180f-e4ceddfbec54 tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.724+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=lower tf_req_id=f98f52a2-ed3f-96dd-180f-e4ceddfbec54 tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.724+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=7303bc7a-9e2c-cfad-c7fe-8e32222b57aa tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=length @module=sdk.framework timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.724+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @module=sdk.framework tf_req_id=fe0a87cb-56da-3530-82b4-16afb84f59b2 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.724+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=7de647ca-6741-a0b3-93ea-3634997b20ba tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.723+0200" +2025-07-11T08:58:23.724+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=0d115b6c-1303-87ff-a538-82590fb90ea0 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.722+0200" +2025-07-11T08:58:23.724+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=number tf_req_id=0d115b6c-1303-87ff-a538-82590fb90ea0 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:58:23.723+0200" +2025-07-11T08:58:23.725+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_upper tf_req_id=fe0a87cb-56da-3530-82b4-16afb84f59b2 timestamp="2025-07-11T08:58:23.723+0200" +2025-07-11T08:58:23.725+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=min_numeric tf_req_id=7303bc7a-9e2c-cfad-c7fe-8e32222b57aa tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.723+0200" +2025-07-11T08:58:23.725+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_lower tf_req_id=0d115b6c-1303-87ff-a538-82590fb90ea0 tf_resource_type=random_password @module=sdk.framework timestamp="2025-07-11T08:58:23.723+0200" +2025-07-11T08:58:23.725+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=0f13eb9e-6e0d-f1a0-aa83-4b8061b81fdf tf_rpc=ReadResource @module=sdk.framework tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.723+0200" +2025-07-11T08:58:23.725+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=fe0a87cb-56da-3530-82b4-16afb84f59b2 tf_resource_type=random_password timestamp="2025-07-11T08:58:23.723+0200" +2025-07-11T08:58:23.725+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=7de647ca-6741-a0b3-93ea-3634997b20ba timestamp="2025-07-11T08:58:23.723+0200" +2025-07-11T08:58:23.725+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=2397f8b9-a931-76ba-6813-7a38515b5943 tf_resource_type=random_password tf_rpc=ReadResource tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.723+0200" +2025-07-11T08:58:23.725+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=7de647ca-6741-a0b3-93ea-3634997b20ba tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource tf_attribute_path=bcrypt_hash timestamp="2025-07-11T08:58:23.723+0200" +2025-07-11T08:58:23.725+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=7de647ca-6741-a0b3-93ea-3634997b20ba tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.723+0200" +2025-07-11T08:58:23.725+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @module=sdk.framework tf_req_id=0f13eb9e-6e0d-f1a0-aa83-4b8061b81fdf timestamp="2025-07-11T08:58:23.723+0200" +2025-07-11T08:58:23.725+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=upper tf_req_id=3b76443f-5679-54c1-c056-a562df9a4ce2 tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:58:23.723+0200" +2025-07-11T08:58:23.725+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=fe0a87cb-56da-3530-82b4-16afb84f59b2 tf_resource_type=random_password tf_attribute_path=lower tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.723+0200" +2025-07-11T08:58:23.725+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_numeric @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=0f13eb9e-6e0d-f1a0-aa83-4b8061b81fdf tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:58:23.723+0200" +2025-07-11T08:58:23.725+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=override_special tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=fe0a87cb-56da-3530-82b4-16afb84f59b2 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.723+0200" +2025-07-11T08:58:23.725+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=0f13eb9e-6e0d-f1a0-aa83-4b8061b81fdf tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=bcrypt_hash tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:58:23.723+0200" +2025-07-11T08:58:23.725+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=0f13eb9e-6e0d-f1a0-aa83-4b8061b81fdf tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.724+0200" +2025-07-11T08:58:23.725+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource tf_attribute_path=min_lower tf_req_id=7303bc7a-9e2c-cfad-c7fe-8e32222b57aa @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.723+0200" +2025-07-11T08:58:23.725+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=result tf_req_id=fe0a87cb-56da-3530-82b4-16afb84f59b2 timestamp="2025-07-11T08:58:23.723+0200" +2025-07-11T08:58:23.725+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=2397f8b9-a931-76ba-6813-7a38515b5943 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.723+0200" +2025-07-11T08:58:23.725+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=id tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=2397f8b9-a931-76ba-6813-7a38515b5943 timestamp="2025-07-11T08:58:23.724+0200" +2025-07-11T08:58:23.726+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=length tf_resource_type=random_password @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=3b76443f-5679-54c1-c056-a562df9a4ce2 timestamp="2025-07-11T08:58:23.724+0200" +2025-07-11T08:58:23.726+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=special tf_req_id=3b76443f-5679-54c1-c056-a562df9a4ce2 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.724+0200" +2025-07-11T08:58:23.726+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=0d115b6c-1303-87ff-a538-82590fb90ea0 tf_rpc=ReadResource @module=sdk.framework tf_resource_type=random_password timestamp="2025-07-11T08:58:23.724+0200" +2025-07-11T08:58:23.726+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=7de647ca-6741-a0b3-93ea-3634997b20ba tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.724+0200" +2025-07-11T08:58:23.726+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=2397f8b9-a931-76ba-6813-7a38515b5943 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.724+0200" +2025-07-11T08:58:23.726+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=7de647ca-6741-a0b3-93ea-3634997b20ba tf_resource_type=random_password @module=sdk.framework tf_attribute_path=number timestamp="2025-07-11T08:58:23.724+0200" +2025-07-11T08:58:23.726+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=lower @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=2397f8b9-a931-76ba-6813-7a38515b5943 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.724+0200" +2025-07-11T08:58:23.726+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=id tf_req_id=7303bc7a-9e2c-cfad-c7fe-8e32222b57aa tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:23.724+0200" +2025-07-11T08:58:23.726+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=3b76443f-5679-54c1-c056-a562df9a4ce2 tf_resource_type=random_password @module=sdk.framework tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.724+0200" +2025-07-11T08:58:23.726+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=7303bc7a-9e2c-cfad-c7fe-8e32222b57aa @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=number tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.724+0200" +2025-07-11T08:58:23.726+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=7303bc7a-9e2c-cfad-c7fe-8e32222b57aa tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:58:23.724+0200" +2025-07-11T08:58:23.726+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_req_id=0d115b6c-1303-87ff-a538-82590fb90ea0 tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.724+0200" +2025-07-11T08:58:23.726+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=7303bc7a-9e2c-cfad-c7fe-8e32222b57aa tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.724+0200" +2025-07-11T08:58:23.726+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=bcrypt_hash tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=0d115b6c-1303-87ff-a538-82590fb90ea0 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.724+0200" +2025-07-11T08:58:23.726+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=0d115b6c-1303-87ff-a538-82590fb90ea0 tf_resource_type=random_password tf_attribute_path=lower tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.724+0200" +2025-07-11T08:58:23.726+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=3b76443f-5679-54c1-c056-a562df9a4ce2 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.724+0200" +2025-07-11T08:58:23.727+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=3b76443f-5679-54c1-c056-a562df9a4ce2 timestamp="2025-07-11T08:58:23.724+0200" +2025-07-11T08:58:23.727+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_attribute_path=result tf_req_id=3b76443f-5679-54c1-c056-a562df9a4ce2 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:58:23.725+0200" +2025-07-11T08:58:23.727+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_req_id=3b76443f-5679-54c1-c056-a562df9a4ce2 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=bcrypt_hash timestamp="2025-07-11T08:58:23.725+0200" +2025-07-11T08:58:23.727+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=number tf_req_id=3b76443f-5679-54c1-c056-a562df9a4ce2 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.725+0200" +2025-07-11T08:58:23.727+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=3b76443f-5679-54c1-c056-a562df9a4ce2 timestamp="2025-07-11T08:58:23.725+0200" +2025-07-11T08:58:23.727+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=3b76443f-5679-54c1-c056-a562df9a4ce2 tf_attribute_path=override_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.725+0200" +2025-07-11T08:58:23.727+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=3b76443f-5679-54c1-c056-a562df9a4ce2 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=random_password tf_attribute_path=id timestamp="2025-07-11T08:58:23.725+0200" +2025-07-11T08:58:23.727+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_attribute_path=numeric tf_req_id=3b76443f-5679-54c1-c056-a562df9a4ce2 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.725+0200" +2025-07-11T08:58:23.728+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=3b76443f-5679-54c1-c056-a562df9a4ce2 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_special tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.726+0200" +2025-07-11T08:58:23.747+0200 [DEBUG] ReferenceTransformer: "module.minio.helm_release.minio" references: [] +2025-07-11T08:58:23.748+0200 [DEBUG] UpgradeResourceState: ignoring dynamic block: map[string]interface {}{"type":[]interface {}{"object", map[string]interface {}{"apiVersion":"string", "kind":"string", "metadata":[]interface {}{"object", map[string]interface {}{"name":"string", "namespace":"string"}}, "spec":[]interface {}{"object", map[string]interface {}{"valuesContent":"string"}}}}, "value":map[string]interface {}{"apiVersion":"helm.cattle.io/v1", "kind":"HelmChartConfig", "metadata":map[string]interface {}{"name":"rke2-ingress-nginx", "namespace":"kube-system"}, "spec":map[string]interface {}{"valuesContent":"controller:\n config:\n use-forwarded-headers: \"true\"\n"}}} +2025-07-11T08:58:23.748+0200 [DEBUG] UpgradeResourceState: ignoring dynamic block: map[string]interface {}{"type":[]interface {}{"object", map[string]interface {}{"apiVersion":"string", "kind":"string", "metadata":[]interface {}{"object", map[string]interface {}{"annotations":[]interface {}{"map", "string"}, "creationTimestamp":"string", "deletionGracePeriodSeconds":"number", "deletionTimestamp":"string", "finalizers":[]interface {}{"list", "string"}, "generateName":"string", "generation":"number", "labels":[]interface {}{"map", "string"}, "managedFields":[]interface {}{"tuple", []interface {}{[]interface {}{"object", map[string]interface {}{"apiVersion":"string", "fieldsType":"string", "fieldsV1":"dynamic", "manager":"string", "operation":"string", "subresource":"string", "time":"string"}}}}, "name":"string", "namespace":"string", "ownerReferences":[]interface {}{"list", []interface {}{"object", map[string]interface {}{"apiVersion":"string", "blockOwnerDeletion":"bool", "controller":"bool", "kind":"string", "name":"string", "uid":"string"}}}, "resourceVersion":"string", "selfLink":"string", "uid":"string"}}, "spec":[]interface {}{"object", map[string]interface {}{"failurePolicy":"string", "valuesContent":"string"}}}}, "value":map[string]interface {}{"apiVersion":"helm.cattle.io/v1", "kind":"HelmChartConfig", "metadata":map[string]interface {}{"annotations":interface {}(nil), "creationTimestamp":interface {}(nil), "deletionGracePeriodSeconds":interface {}(nil), "deletionTimestamp":interface {}(nil), "finalizers":interface {}(nil), "generateName":interface {}(nil), "generation":interface {}(nil), "labels":interface {}(nil), "managedFields":interface {}(nil), "name":"rke2-ingress-nginx", "namespace":"kube-system", "ownerReferences":interface {}(nil), "resourceVersion":interface {}(nil), "selfLink":interface {}(nil), "uid":interface {}(nil)}, "spec":map[string]interface {}{"failurePolicy":interface {}(nil), "valuesContent":"controller:\n config:\n use-forwarded-headers: \"true\"\n"}}} +2025-07-11T08:58:23.749+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=b4be8a14-3280-086c-ddc5-75824e57f0e1 @module=sdk.framework tf_attribute_path=special tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.749+0200" +2025-07-11T08:58:23.749+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=b4be8a14-3280-086c-ddc5-75824e57f0e1 tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.749+0200" +2025-07-11T08:58:23.749+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=b4be8a14-3280-086c-ddc5-75824e57f0e1 @module=sdk.framework tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.749+0200" +2025-07-11T08:58:23.749+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.null_resource.health_check" references: [] +2025-07-11T08:58:23.750+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=b4be8a14-3280-086c-ddc5-75824e57f0e1 tf_rpc=ReadResource tf_resource_type=random_password timestamp="2025-07-11T08:58:23.750+0200" +2025-07-11T08:58:23.751+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=b4be8a14-3280-086c-ddc5-75824e57f0e1 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.750+0200" +2025-07-11T08:58:23.751+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=349b0eac-3eae-0f4d-b577-ade68d4aa82c tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=result timestamp="2025-07-11T08:58:23.750+0200" +2025-07-11T08:58:23.751+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=349b0eac-3eae-0f4d-b577-ade68d4aa82c tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.750+0200" +2025-07-11T08:58:23.751+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework tf_attribute_path=lower tf_req_id=3a019fff-824f-6984-618c-b9ad96be910a tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.750+0200" +2025-07-11T08:58:23.751+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=91a864bc-9ed9-5f1c-aeae-efdd5a0cb4ac tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=special tf_resource_type=random_password timestamp="2025-07-11T08:58:23.751+0200" +2025-07-11T08:58:23.751+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=91a864bc-9ed9-5f1c-aeae-efdd5a0cb4ac tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:23.751+0200" +2025-07-11T08:58:23.751+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=override_special tf_req_id=91a864bc-9ed9-5f1c-aeae-efdd5a0cb4ac tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.751+0200" +2025-07-11T08:58:23.752+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=length tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=3a019fff-824f-6984-618c-b9ad96be910a timestamp="2025-07-11T08:58:23.751+0200" +2025-07-11T08:58:23.752+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=upper tf_req_id=91a864bc-9ed9-5f1c-aeae-efdd5a0cb4ac tf_resource_type=random_password @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.751+0200" +2025-07-11T08:58:23.752+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_req_id=3a019fff-824f-6984-618c-b9ad96be910a tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.751+0200" +2025-07-11T08:58:23.752+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=91a864bc-9ed9-5f1c-aeae-efdd5a0cb4ac tf_resource_type=random_password timestamp="2025-07-11T08:58:23.751+0200" +2025-07-11T08:58:23.752+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=3a019fff-824f-6984-618c-b9ad96be910a tf_resource_type=random_password timestamp="2025-07-11T08:58:23.751+0200" +2025-07-11T08:58:23.751+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:23 [INFO] Checking namespace monitoring +2025-07-11T08:58:23.752+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_body="" tf_http_trans_id=3d419e40-67bf-9fee-791b-cd3ae8f715bb new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring Accept="application/json, */*" tf_http_op_type=request tf_http_req_method=GET tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Accept-Encoding=gzip timestamp="2025-07-11T08:58:23.751+0200" +2025-07-11T08:58:23.752+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource tf_req_id=91a864bc-9ed9-5f1c-aeae-efdd5a0cb4ac tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.751+0200" +2025-07-11T08:58:23.752+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=3a019fff-824f-6984-618c-b9ad96be910a tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.751+0200" +2025-07-11T08:58:23.752+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=3a019fff-824f-6984-618c-b9ad96be910a timestamp="2025-07-11T08:58:23.751+0200" +2025-07-11T08:58:23.752+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=91a864bc-9ed9-5f1c-aeae-efdd5a0cb4ac tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=length tf_resource_type=random_password timestamp="2025-07-11T08:58:23.751+0200" +2025-07-11T08:58:23.752+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=91a864bc-9ed9-5f1c-aeae-efdd5a0cb4ac @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=bcrypt_hash tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.751+0200" +2025-07-11T08:58:23.752+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=3a019fff-824f-6984-618c-b9ad96be910a tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.751+0200" +2025-07-11T08:58:23.752+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=91a864bc-9ed9-5f1c-aeae-efdd5a0cb4ac tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:58:23.751+0200" +2025-07-11T08:58:23.752+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=91a864bc-9ed9-5f1c-aeae-efdd5a0cb4ac tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=result tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.751+0200" +2025-07-11T08:58:23.752+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=91a864bc-9ed9-5f1c-aeae-efdd5a0cb4ac tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=random_password timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.752+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=349b0eac-3eae-0f4d-b577-ade68d4aa82c tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_upper tf_resource_type=random_password timestamp="2025-07-11T08:58:23.751+0200" +2025-07-11T08:58:23.752+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=b4be8a14-3280-086c-ddc5-75824e57f0e1 tf_resource_type=random_password tf_attribute_path=min_special tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.752+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=b4be8a14-3280-086c-ddc5-75824e57f0e1 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=numeric tf_resource_type=random_password timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.753+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=349b0eac-3eae-0f4d-b577-ade68d4aa82c tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=random_password tf_attribute_path=id timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.753+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:23 [INFO] Checking namespace redis +2025-07-11T08:58:23.753+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=number tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=349b0eac-3eae-0f4d-b577-ade68d4aa82c tf_resource_type=random_password @module=sdk.framework timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.753+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_numeric tf_resource_type=random_password tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=b4be8a14-3280-086c-ddc5-75824e57f0e1 tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.753+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/redis @module=kubernetes.Kubernetes Accept="application/json, */*" Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev tf_http_trans_id=ea21a8ef-c2ab-3fca-32f5-8dd0327f4208 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_body="" tf_http_req_version=HTTP/1.1 User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_method=GET Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 timestamp="2025-07-11T08:58:23.753+0200" +2025-07-11T08:58:23.753+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=b4be8a14-3280-086c-ddc5-75824e57f0e1 tf_resource_type=random_password @module=sdk.framework tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.753+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=349b0eac-3eae-0f4d-b577-ade68d4aa82c tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_numeric tf_resource_type=random_password timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.753+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=b4be8a14-3280-086c-ddc5-75824e57f0e1 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=lower tf_resource_type=random_password tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.753+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_attribute_path=id tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=b4be8a14-3280-086c-ddc5-75824e57f0e1 timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.753+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=91a864bc-9ed9-5f1c-aeae-efdd5a0cb4ac timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.753+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=349b0eac-3eae-0f4d-b577-ade68d4aa82c tf_resource_type=random_password @module=sdk.framework tf_attribute_path=bcrypt_hash tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.753+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=id tf_req_id=91a864bc-9ed9-5f1c-aeae-efdd5a0cb4ac timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.753+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=number tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=91a864bc-9ed9-5f1c-aeae-efdd5a0cb4ac timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.753+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=length tf_req_id=349b0eac-3eae-0f4d-b577-ade68d4aa82c tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.753+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_req_id=349b0eac-3eae-0f4d-b577-ade68d4aa82c timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.753+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=lower tf_req_id=349b0eac-3eae-0f4d-b577-ade68d4aa82c tf_resource_type=random_password tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.753+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @module=sdk.framework tf_attribute_path=special tf_req_id=349b0eac-3eae-0f4d-b577-ade68d4aa82c tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.753+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password tf_rpc=ReadResource tf_attribute_path=min_special @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=3a019fff-824f-6984-618c-b9ad96be910a timestamp="2025-07-11T08:58:23.751+0200" +2025-07-11T08:58:23.754+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=349b0eac-3eae-0f4d-b577-ade68d4aa82c timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.754+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=length tf_req_id=b4be8a14-3280-086c-ddc5-75824e57f0e1 tf_resource_type=random_password tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.754+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=bcrypt_hash tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=b4be8a14-3280-086c-ddc5-75824e57f0e1 tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.752+0200" +2025-07-11T08:58:23.754+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=3a019fff-824f-6984-618c-b9ad96be910a tf_resource_type=random_password timestamp="2025-07-11T08:58:23.753+0200" +2025-07-11T08:58:23.754+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=349b0eac-3eae-0f4d-b577-ade68d4aa82c tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_special timestamp="2025-07-11T08:58:23.753+0200" +2025-07-11T08:58:23.754+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework tf_attribute_path=numeric tf_req_id=3a019fff-824f-6984-618c-b9ad96be910a tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.753+0200" +2025-07-11T08:58:23.754+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password tf_req_id=3a019fff-824f-6984-618c-b9ad96be910a tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=bcrypt_hash tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:58:23.753+0200" +2025-07-11T08:58:23.754+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=special tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @module=sdk.framework tf_req_id=3a019fff-824f-6984-618c-b9ad96be910a timestamp="2025-07-11T08:58:23.753+0200" +2025-07-11T08:58:23.754+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=3a019fff-824f-6984-618c-b9ad96be910a tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.753+0200" +2025-07-11T08:58:23.765+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:23 [INFO] Checking namespace zitadel +2025-07-11T08:58:23.765+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:23 [INFO] Checking namespace mongodb +2025-07-11T08:58:23.766+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:23 [INFO] Checking namespace postgresql +2025-07-11T08:58:23.766+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept="application/json, */*" tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/postgresql Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_body="" tf_http_req_version=HTTP/1.1 tf_http_trans_id=105cf26b-3ec5-2680-41fa-3e0f3e7acd4d Host=rancher.bridge.fourlights.dev tf_http_op_type=request @module=kubernetes.Kubernetes timestamp="2025-07-11T08:58:23.765+0200" +2025-07-11T08:58:23.766+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/mongodb @module=kubernetes.Kubernetes User-Agent="HashiCorp/1.0 Terraform/1.12.1" Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request Accept-Encoding=gzip tf_http_req_method=GET tf_http_req_version=HTTP/1.1 tf_http_trans_id=04c1ff8d-cf46-049b-94b8-4a18836cf8a1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 timestamp="2025-07-11T08:58:23.766+0200" +2025-07-11T08:58:23.766+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_trans_id=661e9bcd-4efe-31a9-ce3a-37fedf0f9440 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/zitadel tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_body="" tf_http_op_type=request tf_http_req_method=GET Accept="application/json, */*" Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." timestamp="2025-07-11T08:58:23.766+0200" +2025-07-11T08:58:23.770+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000000d20 Settings:0xc0006ec120 RegistryClient:0xc00067bd00 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:23.770+0200" +2025-07-11T08:58:23.771+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"longhorn" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"longhorn" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"v1.7.1","chart":"longhorn","first_deployed":1732547795,"last_deployed":1752215357,"name":"longhorn","namespace":"longhorn-system","notes":"Longhorn is now installed on the cluster!\n\nPlease wait a few minutes for other Longhorn components such as CSI deployments, Engine Images, and Instance Managers to be initialized.\n\nVisit our documentation at https://longhorn.io/docs/\n","revision":2,"values":"{\"csi\":{\"kubeletRootDir\":\"/var/lib/kubelet\"},\"defaultSettings\":{\"defaultDataLocality\":\"best-effort\",\"defaultDataPath\":\"/var/lib/longhorn/\",\"storageOverProvisioningPercentage\":90},\"enablePSP\":false,\"persistence\":{\"defaultClassReplicaCount\":1,\"defaultDataLocality\":\"best-effort\"},\"serviceMonitor\":{\"enabled\":true}}","version":"1.7.1"} Name:"longhorn" Namespace:"longhorn-system" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.longhorn.io" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"defaultSettings.defaultDataPath","type":"","value":"/var/lib/longhorn/"},{"name":"defaultSettings.defaultDataLocality","type":"","value":"best-effort"},{"name":"defaultSettings.storageOverProvisioningPercentage","type":"","value":"90"},{"name":"csi.kubeletRootDir","type":"","value":"/var/lib/kubelet"},{"name":"enablePSP","type":"","value":"false"},{"name":"serviceMonitor.enabled","type":"","value":"true"},{"name":"persistence.defaultClassReplicaCount","type":"","value":"1"},{"name":"persistence.defaultDataLocality","type":"","value":"best-effort"}] SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values: Verify:false Version:"1.7.1" Wait:true WaitForJobs:false}: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:23.771+0200" +2025-07-11T08:58:23.771+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: longhorn] Start: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release @module=helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:23.771+0200" +2025-07-11T08:58:23.771+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release timestamp="2025-07-11T08:58:23.771+0200" +2025-07-11T08:58:23.771+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:23.771+0200" +2025-07-11T08:58:23.771+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 @module=helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 timestamp="2025-07-11T08:58:23.771+0200" +2025-07-11T08:58:23.771+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: longhorn getRelease post action created: tf_rpc=ReadResource @module=helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 timestamp="2025-07-11T08:58:23.771+0200" +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @module=kubernetes.Kubernetes tf_http_res_version=HTTP/2.0 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response Content-Length=1231 Content-Type=application/json Date="Fri, 11 Jul 2025 06:58:24 GMT" X-Api-Cattle-Auth=true + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"monitoring","uid":"4e752f54-5f50-4c50-9f26-9b0bc0d1b794","resourceVersion":"109679530","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"monitoring"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:53:06Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:53:06Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:53:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_code=200 Audit-Id=209f2471-466a-43c3-90b2-7541f66b012b Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_reason="200 OK" tf_http_trans_id=3d419e40-67bf-9fee-791b-cd3ae8f715bb X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 timestamp="2025-07-11T08:58:24.370+0200" +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"argocd","uid":"8c7a5f8e-f333-455a-bc71-e979eafb6297","resourceVersion":"109670603","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"argocd"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" Audit-Id=8922eb01-854d-4ef9-bb3e-83bcd3e74138 X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_trans_id=13882df5-5c42-a7fc-007b-1318960722c5 tf_http_op_type=response @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:58:24 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes Content-Length=1223 Content-Type=application/json X-Api-Cattle-Auth=true new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." timestamp="2025-07-11T08:58:24.370+0200" +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Namespace monitoring exists +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Content-Type=application/json X-Content-Type-Options=nosniff tf_http_res_status_code=200 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response Audit-Id=e04c6b27-4320-4768-93aa-d4656ff809a8 X-Api-Cattle-Auth=true tf_http_res_version=HTTP/2.0 tf_http_trans_id=04c1ff8d-cf46-049b-94b8-4a18836cf8a1 Date="Fri, 11 Jul 2025 06:58:24 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"mongodb","uid":"eae31e15-ed78-4956-9278-4c39b87a8842","resourceVersion":"2007792","creationTimestamp":"2024-11-29T19:03:50Z","labels":{"kubernetes.io/metadata.name":"mongodb"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2024-11-29T19:03:51Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2024-11-29T19:03:51Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2024-11-29T19:03:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2024-11-29T19:03:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_reason="200 OK" @module=kubernetes.Kubernetes Content-Length=1223 timestamp="2025-07-11T08:58:24.370+0200" +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Content-Type=application/json X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_trans_id=661e9bcd-4efe-31a9-ce3a-37fedf0f9440 Content-Length=1225 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"zitadel","uid":"2624b1c4-feb9-4c7a-aa15-4d2f7f5b89de","resourceVersion":"109670602","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"zitadel"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 Audit-Id=a9814361-0a45-4910-a43b-c1f196b6bc78 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:58:24 GMT" X-Api-Cattle-Auth=true tf_http_op_type=response timestamp="2025-07-11T08:58:24.370+0200" +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Namespace zitadel exists +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Content-Length=1231 Date="Fri, 11 Jul 2025 06:58:24 GMT" tf_http_res_version=HTTP/2.0 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 X-Content-Type-Options=nosniff tf_http_res_status_code=200 X-Api-Cattle-Auth=true new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"postgresql","uid":"46aa35b4-b1f9-4a41-8246-7d98511837a8","resourceVersion":"109670601","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"postgresql"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 @module=kubernetes.Kubernetes Audit-Id=b16009ce-64c1-4ceb-a17b-d6192dfb5f3b Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json tf_http_res_status_reason="200 OK" tf_http_trans_id=105cf26b-3ec5-2680-41fa-3e0f3e7acd4d timestamp="2025-07-11T08:58:24.370+0200" +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Namespace postgresql exists +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Reading namespace postgresql +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"redis","uid":"3728ddfb-bb3d-47de-bdd5-6cf6ee0b93b7","resourceVersion":"109670608","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"redis"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_reason="200 OK" @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:58:24 GMT" tf_http_res_version=HTTP/2.0 tf_http_trans_id=ea21a8ef-c2ab-3fca-32f5-8dd0327f4208 Audit-Id=8a892e49-937b-471b-8fda-a427aa8a35ea Content-Length=1221 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_code=200 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Type=application/json X-Api-Cattle-Auth=true timestamp="2025-07-11T08:58:24.370+0200" +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Namespace redis exists +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Reading namespace redis +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 @module=kubernetes.Kubernetes Audit-Id=fab94ebc-3a3c-4306-94e4-d5430ba3aa79 Content-Type=application/json @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Date="Fri, 11 Jul 2025 06:58:24 GMT" + tf_http_res_body= + | {"kind":"Status","apiVersion":"v1","metadata":{},"status":"Failure","message":"secrets \"bridge-tls\" not found","reason":"NotFound","details":{"name":"bridge-tls","kind":"secrets"},"code":404} + tf_http_res_status_reason="404 Not Found" Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=194 tf_http_res_status_code=404 X-Api-Cattle-Auth=true new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_res_version=HTTP/2.0 tf_http_trans_id=38a757b8-e2a9-2414-d9c5-92249310b1e4 X-Content-Type-Options=nosniff timestamp="2025-07-11T08:58:24.370+0200" +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Namespace argocd exists +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Reading namespace argocd +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/redis tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" Accept-Encoding=gzip tf_http_req_body="" tf_http_op_type=request Host=rancher.bridge.fourlights.dev tf_http_trans_id=aef9d0fc-520d-5624-3ba6-1bf957aa5059 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." timestamp="2025-07-11T08:58:24.371+0200" +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Namespace mongodb exists +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/postgresql tf_http_req_version=HTTP/1.1 Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" @module=kubernetes.Kubernetes new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_body="" tf_http_trans_id=38e25464-ef39-9c4f-2cda-5e8f20dc44fc Host=rancher.bridge.fourlights.dev timestamp="2025-07-11T08:58:24.371+0200" +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Reading namespace mongodb +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_version=HTTP/1.1 tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/argocd tf_http_req_method=GET @module=kubernetes.Kubernetes Accept="application/json, */*" Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=f6bc3507-a17c-36e0-7e59-b4c68cbe9655 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_body="" timestamp="2025-07-11T08:58:24.371+0200" +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Reading namespace zitadel +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @module=kubernetes.Kubernetes Accept="application/json, */*" tf_http_op_type=request tf_http_trans_id=51f2e328-9fca-e33b-fea3-7018150f7f22 Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/zitadel Accept-Encoding=gzip tf_http_req_method=GET Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_body="" tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 timestamp="2025-07-11T08:58:24.371+0200" +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept="application/json, */*" Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev tf_http_op_type=request tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/mongodb @module=kubernetes.Kubernetes Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_body="" tf_http_req_method=GET tf_http_trans_id=31a44a4e-60fa-165a-6d50-2d4b8c616b5b timestamp="2025-07-11T08:58:24.371+0200" +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Reading namespace monitoring +2025-07-11T08:58:24.371+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Host=rancher.bridge.fourlights.dev Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring tf_http_trans_id=46c153ee-6e38-8575-667b-4ef04494178a @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_version=HTTP/1.1 User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_body="" tf_http_req_method=GET @module=kubernetes.Kubernetes Accept-Encoding=gzip timestamp="2025-07-11T08:58:24.371+0200" +2025-07-11T08:58:24.376+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0007ce1c0 Settings:0xc0007d8120 RegistryClient:0xc0005b4200 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:24.376+0200" +2025-07-11T08:58:24.376+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"minio" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"minio" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"2025.3.12","chart":"minio","first_deployed":1732564007,"last_deployed":1752215358,"name":"minio","namespace":"minio","notes":"CHART NAME: minio\nCHART VERSION: 16.0.0\nAPP VERSION: 2025.3.12\n\nDid you know there are enterprise versions of the Bitnami catalog? For enhanced secure software supply chain features, unlimited pulls from Docker, LTS support, or application customization, see Bitnami Premium or Tanzu Application Catalog. See https://www.arrow.com/globalecs/na/vendors/bitnami for more information.\n\n** Please be patient while the chart is being deployed **\n\nMinIO® can be accessed via port on the following DNS name from within your cluster:\n\n minio.minio.svc.cluster.local\n\nTo get your credentials run:\n\n export ROOT_USER=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-user}\" | base64 -d)\n export ROOT_PASSWORD=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-password}\" | base64 -d)\n\nTo connect to your MinIO® server using a client:\n\n- Run a MinIO® Client pod and append the desired command (e.g. 'admin info'):\n\n kubectl run --namespace minio minio-client \\\n --rm --tty -i --restart='Never' \\\n --env MINIO_SERVER_ROOT_USER=$ROOT_USER \\\n --env MINIO_SERVER_ROOT_PASSWORD=$ROOT_PASSWORD \\\n --env MINIO_SERVER_HOST=minio \\\n --image docker.io/bitnami/minio-client:2025.3.12-debian-12-r0 -- admin info minio\n\nTo access the MinIO® web UI:\n\n- Get the MinIO® URL:\n\n You should be able to access your new MinIO® web UI through\n\n http://storage-admin.365zon.fourlights.dev/minio/\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"apiIngress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"auth\":{\"rootPassword\":\"(sensitive value)\",\"rootUser\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage-admin.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"mode\":\"standalone\",\"persistence\":{\"size\":\"40Gi\"},\"resourcesPreset\":\"nano\",\"statefulset\":{\"drivesPerNode\":2,\"replicaCount\":1},\"tls\":{\"enabled\":false}}","version":"16.0.0"} Name:"minio" Namespace:"minio" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"mode","type":"","value":"standalone"},{"name":"resourcesPreset","type":"","value":"nano"},{"name":"statefulset.replicaCount","type":"","value":"1"},{"name":"statefulset.drivesPerNode","type":"","value":"2"},{"name":"persistence.size","type":"","value":"40Gi"}] SetList: SetSensitive:[{"name":"auth.rootUser","type":,"value":"Xg6VDlh9GVliFdnWnVec"},{"name":"auth.rootPassword","type":,"value":"j!4VaGixfD6f*nam7EeC0Sa*OogSqYA=cinX9bPj"}] SkipCrds:false Status:"deployed" Timeout:300 Values:["tls:\n enabled: false\n\ningress:\n enabled: true\n tls: false\n ingressClassName: nginx\n hostname: storage-admin.365zon.fourlights.dev\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n \n ingress.kubernetes.io/proxy-body-size: \"0\"\n nginx.ingress.kubernetes.io/proxy-body-size: \"0\"\n \n \n\napiIngress:\n enabled: true\n ingressClassName: nginx\n tls: false\n hostname: storage.365zon.fourlights.dev\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n \n ingress.kubernetes.io/proxy-body-size: \"0\"\n nginx.ingress.kubernetes.io/proxy-body-size: \"0\"\n \n"] Verify:false Version:"16.0.0" Wait:true WaitForJobs:true}: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e timestamp="2025-07-11T08:58:24.376+0200" +2025-07-11T08:58:24.376+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: minio] Start: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:24.376+0200" +2025-07-11T08:58:24.376+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm KubernetesData=map[] tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:24.376+0200" +2025-07-11T08:58:24.376+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release @module=helm configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 timestamp="2025-07-11T08:58:24.376+0200" +2025-07-11T08:58:24.376+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release timestamp="2025-07-11T08:58:24.376+0200" +2025-07-11T08:58:24.376+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: minio getRelease post action created: @module=helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:24.376+0200" +2025-07-11T08:58:24.540+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=f8c76b4d-7662-44d4-a235-c9dd7f263ded Content-Type=application/json Date="Fri, 11 Jul 2025 06:58:24 GMT" X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"mongodb","uid":"eae31e15-ed78-4956-9278-4c39b87a8842","resourceVersion":"2007792","creationTimestamp":"2024-11-29T19:03:50Z","labels":{"kubernetes.io/metadata.name":"mongodb"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2024-11-29T19:03:51Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2024-11-29T19:03:51Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2024-11-29T19:03:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2024-11-29T19:03:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + X-Content-Type-Options=nosniff new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=1223 tf_http_res_version=HTTP/2.0 tf_http_trans_id=31a44a4e-60fa-165a-6d50-2d4b8c616b5b timestamp="2025-07-11T08:58:24.540+0200" +2025-07-11T08:58:24.540+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_op_type=response X-Content-Type-Options=nosniff @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Content-Length=1225 X-Api-Cattle-Auth=true Audit-Id=ed330d15-8418-4129-91e1-083929b0ba2e Content-Type=application/json new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"zitadel","uid":"2624b1c4-feb9-4c7a-aa15-4d2f7f5b89de","resourceVersion":"109670602","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"zitadel"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_code=200 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:58:24 GMT" tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 tf_http_trans_id=51f2e328-9fca-e33b-fea3-7018150f7f22 timestamp="2025-07-11T08:58:24.540+0200" +2025-07-11T08:58:24.540+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Length=1231 Content-Type=application/json X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff tf_http_res_status_reason="200 OK" Audit-Id=a21bdb44-0cfe-4a37-8eb6-4489e1ec0edb Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:58:24 GMT" tf_http_op_type=response tf_http_res_status_code=200 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"monitoring","uid":"4e752f54-5f50-4c50-9f26-9b0bc0d1b794","resourceVersion":"109679530","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"monitoring"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:53:06Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:53:06Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:53:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_trans_id=46c153ee-6e38-8575-667b-4ef04494178a @module=kubernetes.Kubernetes tf_http_res_version=HTTP/2.0 timestamp="2025-07-11T08:58:24.540+0200" +2025-07-11T08:58:24.540+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"monitoring", GenerateName:"", Namespace:"", SelfLink:"", UID:"4e752f54-5f50-4c50-9f26-9b0bc0d1b794", ResourceVersion:"109679530", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"monitoring"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:53:06Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:53:06Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000f17ba8), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 53, 5, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000f17bd8), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:58:24.540+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @module=kubernetes.Kubernetes Audit-Id=166da2c0-d4b4-4921-be1e-8d2e78642e0a X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"redis","uid":"3728ddfb-bb3d-47de-bdd5-6cf6ee0b93b7","resourceVersion":"109670608","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"redis"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:58:24 GMT" X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_version=HTTP/2.0 tf_http_trans_id=aef9d0fc-520d-5624-3ba6-1bf957aa5059 Content-Type=application/json tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Length=1221 tf_http_op_type=response timestamp="2025-07-11T08:58:24.540+0200" +2025-07-11T08:58:24.540+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"redis", GenerateName:"", Namespace:"", SelfLink:"", UID:"3728ddfb-bb3d-47de-bdd5-6cf6ee0b93b7", ResourceVersion:"109670608", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"redis"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000fd6138), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000fd6168), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:58:24.540+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:58:24 [ERROR] setting state: expires: '' expected type 'string', got unconvertible type 'time.Time', value: '0001-01-01 00:00:00 +0000 UTC': timestamp="2025-07-11T08:58:24.540+0200" +2025-07-11T08:58:24.540+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:58:24 [ERROR] setting state: last_modified: '' expected type 'string', got unconvertible type 'time.Time', value: '2024-11-25 13:55:45 +0000 UTC': timestamp="2025-07-11T08:58:24.540+0200" +2025-07-11T08:58:24.540+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"zitadel", GenerateName:"", Namespace:"", SelfLink:"", UID:"2624b1c4-feb9-4c7a-aa15-4d2f7f5b89de", ResourceVersion:"109670602", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"zitadel"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000d4af78), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000d4afa8), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:58:24.540+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_op_type=response tf_http_res_version=HTTP/2.0 tf_http_trans_id=38e25464-ef39-9c4f-2cda-5e8f20dc44fc Audit-Id=8b688cee-54a5-42c9-b169-4aa198c79699 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"postgresql","uid":"46aa35b4-b1f9-4a41-8246-7d98511837a8","resourceVersion":"109670601","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"postgresql"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_reason="200 OK" Content-Length=1231 Date="Fri, 11 Jul 2025 06:58:24 GMT" X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_code=200 X-Api-Cattle-Auth=true X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Content-Type=application/json new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." timestamp="2025-07-11T08:58:24.540+0200" +2025-07-11T08:58:24.541+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"postgresql", GenerateName:"", Namespace:"", SelfLink:"", UID:"46aa35b4-b1f9-4a41-8246-7d98511837a8", ResourceVersion:"109670601", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"postgresql"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000ca8510), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000ca8540), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:58:24.540+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"mongodb", GenerateName:"", Namespace:"", SelfLink:"", UID:"eae31e15-ed78-4956-9278-4c39b87a8842", ResourceVersion:"2007792", Generation:0, CreationTimestamp:time.Date(2024, time.November, 29, 20, 3, 50, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"mongodb"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2024-11-29T19:03:51Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2024-11-29T19:03:51Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2024, time.November, 29, 20, 3, 50, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000ea0e88), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2024, time.November, 29, 20, 3, 50, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000ea0eb8), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:58:24.540+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @module=kubernetes.Kubernetes Audit-Id=ff4122fd-1b42-4695-8d73-db05159bb9a9 Content-Type=application/json Date="Fri, 11 Jul 2025 06:58:24 GMT" Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=1223 X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"argocd","uid":"8c7a5f8e-f333-455a-bc71-e979eafb6297","resourceVersion":"109670603","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"argocd"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + X-Api-Cattle-Auth=true tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 tf_http_trans_id=f6bc3507-a17c-36e0-7e59-b4c68cbe9655 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_reason="200 OK" timestamp="2025-07-11T08:58:24.540+0200" +2025-07-11T08:58:24.541+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"argocd", GenerateName:"", Namespace:"", SelfLink:"", UID:"8c7a5f8e-f333-455a-bc71-e979eafb6297", ResourceVersion:"109670603", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"argocd"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001005bc0), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001005bf0), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:58:24.543+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.argocd.kubernetes_namespace.argocd, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute +2025-07-11T08:58:24.543+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.postgresql.kubernetes_namespace.postgresql[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute +2025-07-11T08:58:24.544+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.zitadel.kubernetes_namespace.zitadel[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute +2025-07-11T08:58:24.544+0200 [DEBUG] provider.terraform-provider-null_v3.2.4_x5: Value switched to prior value due to semantic equality logic: tf_req_id=3d10815f-e977-719b-a20a-bad6a4912835 tf_resource_type=null_resource tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/null timestamp="2025-07-11T08:58:24.543+0200" +2025-07-11T08:58:24.545+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.redis.kubernetes_namespace.redis, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute +2025-07-11T08:58:24.545+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.mongodb.kubernetes_namespace.mongodb, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute +2025-07-11T08:58:24.546+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.monitoring.kubernetes_namespace.monitoring, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:58:24.546+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_secret.argocd-tls" references: [] +2025-07-11T08:58:24.546+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:24.547+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_secret.postgresql_auth[0]" references: [] +2025-07-11T08:58:24.547+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_secret.zitadel[0]" references: [] +2025-07-11T08:58:24.549+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 id=972689 +2025-07-11T08:58:24.549+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:24.549+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth" references: [] +2025-07-11T08:58:24.549+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_secret.redis" references: [] +2025-07-11T08:58:24.549+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:24.549+0200 [DEBUG] ReferenceTransformer: "module.redis.helm_release.redis" references: [] +2025-07-11T08:58:24.551+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=972726 +2025-07-11T08:58:24.551+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:24.551+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:24.552+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 id=972718 +2025-07-11T08:58:24.552+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:24.552+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:24.552+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:24.557+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:58:24.557+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=973075 +2025-07-11T08:58:24.557+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:58:24.563+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:58:24.563+0200" +2025-07-11T08:58:24.590+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:24.590+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin2629124807 network=unix timestamp="2025-07-11T08:58:24.590+0200" +2025-07-11T08:58:24.603+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Checking secret zitadel +2025-07-11T08:58:24.603+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Checking secret argocd-tls +2025-07-11T08:58:24.603+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @module=kubernetes.Kubernetes tf_http_op_type=request tf_http_req_body="" tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_method=GET tf_http_trans_id=4a129eb3-6b78-b10a-ac68-06e31f12ee1e Accept="application/json, */*" Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/zitadel/secrets/zitadel timestamp="2025-07-11T08:58:24.603+0200" +2025-07-11T08:58:24.603+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev tf_http_req_method=GET Accept-Encoding=gzip tf_http_req_body="" tf_http_trans_id=24295bf9-f2bc-46df-a255-9892c5b073ed @module=kubernetes.Kubernetes tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/argocd/secrets/argocd-tls User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." timestamp="2025-07-11T08:58:24.603+0200" +2025-07-11T08:58:24.603+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Checking secret postgresql-auth +2025-07-11T08:58:24.603+0200 [WARN] ValidateProviderConfig from "module.tenant-365zon.module.minio.provider[\"registry.terraform.io/aminueza/minio\"]" changed the config value, but that value is unused +2025-07-11T08:58:24.603+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Checking secret prometheus-remote-write-auth +2025-07-11T08:58:24.603+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Checking secret redis +2025-07-11T08:58:24.603+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept="application/json, */*" Host=rancher.bridge.fourlights.dev tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/postgresql/secrets/postgresql-auth tf_http_trans_id=4555412e-cb75-69e6-79ab-29407b32426e tf_http_req_method=GET @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_body="" tf_http_req_version=HTTP/1.1 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_op_type=request new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." timestamp="2025-07-11T08:58:24.603+0200" +2025-07-11T08:58:24.603+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/redis/secrets/redis Accept-Encoding=gzip tf_http_op_type=request tf_http_req_method=GET @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=41e5392d-1acc-5aea-aeb5-57005c580bea tf_http_req_version=HTTP/1.1 tf_http_req_body="" Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev timestamp="2025-07-11T08:58:24.603+0200" +2025-07-11T08:58:24.604+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @module=kubernetes.Kubernetes tf_http_req_method=GET new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring/secrets/prometheus-remote-write-auth tf_http_trans_id=45701af5-c2e6-0315-109c-c308f8a1452a Accept="application/json, */*" Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_op_type=request tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T08:58:24.603+0200" +2025-07-11T08:58:24.604+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:58:24 [DEBUG] MinIO SSL client transport configured successfully: timestamp="2025-07-11T08:58:24.604+0200" +2025-07-11T08:58:24.604+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay" references: [] +2025-07-11T08:58:24.604+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay" references: [] +2025-07-11T08:58:24.607+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc00070c380 Settings:0xc000759440 RegistryClient:0xc000033680 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:24.607+0200" +2025-07-11T08:58:24.607+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"redis" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"redis" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"7.4.1","chart":"redis","first_deployed":1752215366,"last_deployed":1752215366,"name":"redis","namespace":"redis","notes":"CHART NAME: redis\nCHART VERSION: 20.1.7\nAPP VERSION: 7.4.1\n\n** Please be patient while the chart is being deployed **\n\nRedis® can be accessed via port 6379 on the following DNS name from within your cluster:\n\n redis-master.redis.svc.cluster.local\n\n\n\nTo get your password run:\n\n export REDIS_PASSWORD=$(kubectl get secret --namespace redis redis -o jsonpath=\"{.data.redis-password}\" | base64 -d)\n\nTo connect to your Redis® server:\n\n1. Run a Redis® pod that you can use as a client:\n\n kubectl run --namespace redis redis-client --restart='Never' --env REDIS_PASSWORD=$REDIS_PASSWORD --image docker.io/bitnami/redis:7.4.1-debian-12-r0 --command -- sleep infinity\n\n Use the following command to attach to the pod:\n\n kubectl exec --tty -i redis-client \\\n --namespace redis -- bash\n\n2. Connect using the Redis® CLI:\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h redis-master\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace redis svc/redis-master 6379:6379 &\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h 127.0.0.1 -p 6379\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - replica.resources\n - master.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"architecture\":\"standalone\",\"auth\":{\"enabled\":true,\"existingSecret\":\"redis\",\"existingSecretPasswordKey\":\"redis-password\"},\"master\":{\"persistence\":{\"size\":\"6Gi\"}},\"metrics\":{\"enabled\":false}}","version":"20.1.7"} Name:"redis" Namespace:"redis" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["metrics:\n enabled: false\n\narchitecture: standalone\n\nauth:\n enabled: true\n existingSecret: redis\n existingSecretPasswordKey: 'redis-password'\n\nmaster:\n persistence:\n size: 6Gi\n"] Verify:false Version:"20.1.7" Wait:true WaitForJobs:true}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 @module=helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:24.607+0200" +2025-07-11T08:58:24.607+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: redis] Start: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:24.607+0200" +2025-07-11T08:58:24.607+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:24.607+0200" +2025-07-11T08:58:24.607+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 tf_rpc=ReadResource @module=helm configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release timestamp="2025-07-11T08:58:24.607+0200" +2025-07-11T08:58:24.607+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 timestamp="2025-07-11T08:58:24.607+0200" +2025-07-11T08:58:24.607+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: redis getRelease post action created: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:24.607+0200" +2025-07-11T08:58:24.696+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: longhorn getRelease post run: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 timestamp="2025-07-11T08:58:24.696+0200" +2025-07-11T08:58:24.696+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: longhorn getRelease completed: @module=helm tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 timestamp="2025-07-11T08:58:24.696+0200" +2025-07-11T08:58:24.696+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: longhorn] Done: @module=helm tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 timestamp="2025-07-11T08:58:24.696+0200" +2025-07-11T08:58:24.696+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: longhorn] Started: @module=helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:24.696+0200" +2025-07-11T08:58:24.696+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 KubernetesData=map[] tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release timestamp="2025-07-11T08:58:24.696+0200" +2025-07-11T08:58:24.696+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm configPaths=[] tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:24.696+0200" +2025-07-11T08:58:24.696+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release timestamp="2025-07-11T08:58:24.696+0200" +2025-07-11T08:58:24.696+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: longhorn getRelease post action created: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 tf_rpc=ReadResource timestamp="2025-07-11T08:58:24.696+0200" +2025-07-11T08:58:24.841+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes Audit-Id=3560dade-bb35-4082-b8a5-04b543e306f6 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_op_type=response tf_http_res_status_reason="200 OK" Content-Length=601 Content-Type=application/json tf_http_trans_id=4555412e-cb75-69e6-79ab-29407b32426e @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"postgresql-auth","namespace":"postgresql","uid":"02e1e77a-2f52-472a-9f4e-58998a742cff","resourceVersion":"109670606","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:password":{},"f:rootpassword":{}},"f:type":{}}}]},"data":{"password":"NnspTnVjM3RaZU5SMFs/cVRmeGwoKmkwXWctP2tiM259S2U0X1V1eg==","rootpassword":"UHZ3TUl7THpuVmFTPHFfWyhyWEQwcF1jPl9XLTExMiRJWmZkQUgyUQ=="},"type":"generic"} + Date="Fri, 11 Jul 2025 06:58:24 GMT" X-Api-Cattle-Auth=true X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 timestamp="2025-07-11T08:58:24.841+0200" +2025-07-11T08:58:24.841+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Reading secret postgresql-auth +2025-07-11T08:58:24.841+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Type=application/json X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_code=200 X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 Date="Fri, 11 Jul 2025 06:58:24 GMT" X-Api-Cattle-Auth=true tf_http_op_type=response tf_http_res_status_reason="200 OK" Audit-Id=8036778b-1590-4909-9f89-b1b45bf7b360 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"prometheus-remote-write-auth","namespace":"monitoring","uid":"15a01c82-9a5b-4f4f-8a35-8710850a1aea","resourceVersion":"109670609","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:password":{},"f:username":{}},"f:type":{}}}]},"data":{"password":"eW91ci1zZWN1cmUtcGFzc3dvcmQ=","username":"cHJvbWV0aGV1cw=="},"type":"Opaque"} + tf_http_res_version=HTTP/2.0 tf_http_trans_id=45701af5-c2e6-0315-109c-c308f8a1452a @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=537 timestamp="2025-07-11T08:58:24.841+0200" +2025-07-11T08:58:24.842+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Reading secret prometheus-remote-write-auth +2025-07-11T08:58:24.841+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_reason="200 OK" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 @module=kubernetes.Kubernetes Content-Length=491 tf_http_res_status_code=200 Content-Type=application/json tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"redis","namespace":"redis","uid":"8025a40f-6901-4ee8-92bb-bfaf43082625","resourceVersion":"109670611","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:redis-password":{}},"f:type":{}}}]},"data":{"redis-password":"ZVNPZkw0R1JGYmNEQDVJM0ZiJTBCT1dIS3NjelVySnI="},"type":"Opaque"} + tf_http_trans_id=41e5392d-1acc-5aea-aeb5-57005c580bea X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 Audit-Id=1ce3f247-0db6-44fd-910c-6984fbab2b88 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:58:24 GMT" timestamp="2025-07-11T08:58:24.841+0200" +2025-07-11T08:58:24.842+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Reading secret redis +2025-07-11T08:58:24.842+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_body="" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/redis/secrets/redis @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Accept="application/json, */*" Accept-Encoding=gzip tf_http_req_version=HTTP/1.1 tf_http_trans_id=012078d5-28b1-8724-ce0c-bf5aad7a5b6f timestamp="2025-07-11T08:58:24.842+0200" +2025-07-11T08:58:24.841+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Audit-Id=503c0a29-678d-4988-b563-aba0faf6a15a Content-Length=485 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=4a129eb3-6b78-b10a-ac68-06e31f12ee1e Content-Type=application/json Date="Fri, 11 Jul 2025 06:58:24 GMT" X-Api-Cattle-Auth=true X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_reason="200 OK" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"zitadel","namespace":"zitadel","uid":"82dac3ea-12ea-4359-ba5c-04454217d607","resourceVersion":"109670607","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:masterkey":{}},"f:type":{}}}]},"data":{"masterkey":"Tm5nTm1VZmYleFZtc01IeUExbXktPk9lW04mRyFkKTo="},"type":"Opaque"} + timestamp="2025-07-11T08:58:24.841+0200" +2025-07-11T08:58:24.842+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Reading secret zitadel +2025-07-11T08:58:24.842+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/postgresql/secrets/postgresql-auth Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_body="" tf_http_trans_id=8e3eae01-de92-ecf1-b30f-55e3d95c1124 tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev tf_http_req_method=GET timestamp="2025-07-11T08:58:24.842+0200" +2025-07-11T08:58:24.842+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_body="" Accept-Encoding=gzip new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET tf_http_req_version=HTTP/1.1 tf_http_trans_id=4d6239b9-b957-b23f-6dd7-81136f2ffffa @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/zitadel/secrets/zitadel @module=kubernetes.Kubernetes tf_http_op_type=request Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" timestamp="2025-07-11T08:58:24.842+0200" +2025-07-11T08:58:24.842+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_trans_id=4352d849-dd3d-d811-2c4b-b6c4fa6fd502 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring/secrets/prometheus-remote-write-auth tf_http_req_method=GET @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Accept="application/json, */*" Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T08:58:24.842+0200" +2025-07-11T08:58:24.842+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Audit-Id=860442c0-d3ce-4258-874d-47c00d85f463 Content-Length=384 Date="Fri, 11 Jul 2025 06:58:24 GMT" tf_http_res_status_code=200 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json X-Api-Cattle-Auth=true tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"argocd-tls","namespace":"argocd","uid":"104b95c0-233e-4544-b94c-310faf05fc16","resourceVersion":"109670604","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:type":{}}}]},"type":"Opaque"} + tf_http_res_version=HTTP/2.0 X-Content-Type-Options=nosniff tf_http_res_status_reason="200 OK" tf_http_trans_id=24295bf9-f2bc-46df-a255-9892c5b073ed timestamp="2025-07-11T08:58:24.842+0200" +2025-07-11T08:58:24.842+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Reading secret argocd-tls +2025-07-11T08:58:24.842+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_method=GET Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Host=rancher.bridge.fourlights.dev tf_http_req_body="" Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/argocd/secrets/argocd-tls tf_http_trans_id=946643a3-2bc3-6168-5db7-ab16c9619e8e tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T08:58:24.842+0200" +2025-07-11T08:58:24.985+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:58:24 GMT" X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes Audit-Id=d6eca225-1bfa-4035-9a0a-44834fb041cb Content-Type=application/json + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"zitadel","namespace":"zitadel","uid":"82dac3ea-12ea-4359-ba5c-04454217d607","resourceVersion":"109670607","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:masterkey":{}},"f:type":{}}}]},"data":{"masterkey":"Tm5nTm1VZmYleFZtc01IeUExbXktPk9lW04mRyFkKTo="},"type":"Opaque"} + tf_http_res_status_code=200 tf_http_trans_id=4d6239b9-b957-b23f-6dd7-81136f2ffffa X-Api-Cattle-Auth=true new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Length=485 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_reason="200 OK" timestamp="2025-07-11T08:58:24.985+0200" +2025-07-11T08:58:24.985+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Received secret: v1.ObjectMeta{Name:"zitadel", GenerateName:"", Namespace:"zitadel", SelfLink:"", UID:"82dac3ea-12ea-4359-ba5c-04454217d607", ResourceVersion:"109670607", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc00118ec30), Subresource:""}}} +2025-07-11T08:58:24.986+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_trans_id=946643a3-2bc3-6168-5db7-ab16c9619e8e + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"argocd-tls","namespace":"argocd","uid":"104b95c0-233e-4544-b94c-310faf05fc16","resourceVersion":"109670604","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:type":{}}}]},"type":"Opaque"} + tf_http_res_status_code=200 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Type=application/json Date="Fri, 11 Jul 2025 06:58:24 GMT" X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_reason="200 OK" Audit-Id=aa5dd1e9-c1e4-4cd5-a0e2-66faba550590 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response @module=kubernetes.Kubernetes Content-Length=384 X-Api-Cattle-Auth=true X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_version=HTTP/2.0 timestamp="2025-07-11T08:58:24.985+0200" +2025-07-11T08:58:24.986+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Received secret: v1.ObjectMeta{Name:"argocd-tls", GenerateName:"", Namespace:"argocd", SelfLink:"", UID:"104b95c0-233e-4544-b94c-310faf05fc16", ResourceVersion:"109670604", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000f02210), Subresource:""}}} +2025-07-11T08:58:24.988+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.zitadel.kubernetes_secret.zitadel[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .type: planned value cty.StringVal("Opaque") for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:58:24.988+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.argocd.kubernetes_secret.argocd-tls, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .type: planned value cty.StringVal("Opaque") for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute +2025-07-11T08:58:24.988+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:24.990+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=972739 +2025-07-11T08:58:24.990+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:24.990+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @module=kubernetes.Kubernetes Date="Fri, 11 Jul 2025 06:58:24 GMT" X-Content-Type-Options=nosniff + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"postgresql-auth","namespace":"postgresql","uid":"02e1e77a-2f52-472a-9f4e-58998a742cff","resourceVersion":"109670606","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:password":{},"f:rootpassword":{}},"f:type":{}}}]},"data":{"password":"NnspTnVjM3RaZU5SMFs/cVRmeGwoKmkwXWctP2tiM259S2U0X1V1eg==","rootpassword":"UHZ3TUl7THpuVmFTPHFfWyhyWEQwcF1jPl9XLTExMiRJWmZkQUgyUQ=="},"type":"generic"} + tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 Content-Length=601 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=8e3eae01-de92-ecf1-b30f-55e3d95c1124 Audit-Id=f9cba696-25af-435e-ba3f-2870ed8d4de6 Content-Type=application/json X-Api-Cattle-Auth=true tf_http_op_type=response @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_code=200 timestamp="2025-07-11T08:58:24.990+0200" +2025-07-11T08:58:24.990+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Received secret: v1.ObjectMeta{Name:"postgresql-auth", GenerateName:"", Namespace:"postgresql", SelfLink:"", UID:"02e1e77a-2f52-472a-9f4e-58998a742cff", ResourceVersion:"109670606", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000a6fe78), Subresource:""}}} +2025-07-11T08:58:24.991+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Content-Length=491 Content-Type=application/json tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" tf_http_trans_id=012078d5-28b1-8724-ce0c-bf5aad7a5b6f Audit-Id=43d1a93b-bd9f-4b3e-9e64-2745eced0976 X-Api-Cattle-Auth=true Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 Date="Fri, 11 Jul 2025 06:58:24 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"redis","namespace":"redis","uid":"8025a40f-6901-4ee8-92bb-bfaf43082625","resourceVersion":"109670611","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:redis-password":{}},"f:type":{}}}]},"data":{"redis-password":"ZVNPZkw0R1JGYmNEQDVJM0ZiJTBCT1dIS3NjelVySnI="},"type":"Opaque"} + tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes timestamp="2025-07-11T08:58:24.990+0200" +2025-07-11T08:58:24.991+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Received secret: v1.ObjectMeta{Name:"redis", GenerateName:"", Namespace:"redis", SelfLink:"", UID:"8025a40f-6901-4ee8-92bb-bfaf43082625", ResourceVersion:"109670611", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000db71a0), Subresource:""}}} +2025-07-11T08:58:24.991+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_op_type=response tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 tf_http_trans_id=4352d849-dd3d-d811-2c4b-b6c4fa6fd502 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Length=537 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json X-Api-Cattle-Auth=true new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 @module=kubernetes.Kubernetes Audit-Id=09f1658f-ecb2-484a-813f-37c0f4cc9771 Date="Fri, 11 Jul 2025 06:58:24 GMT" X-Content-Type-Options=nosniff + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"prometheus-remote-write-auth","namespace":"monitoring","uid":"15a01c82-9a5b-4f4f-8a35-8710850a1aea","resourceVersion":"109670609","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:password":{},"f:username":{}},"f:type":{}}}]},"data":{"password":"eW91ci1zZWN1cmUtcGFzc3dvcmQ=","username":"cHJvbWV0aGV1cw=="},"type":"Opaque"} + timestamp="2025-07-11T08:58:24.990+0200" +2025-07-11T08:58:24.991+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:24 [INFO] Received secret: v1.ObjectMeta{Name:"prometheus-remote-write-auth", GenerateName:"", Namespace:"monitoring", SelfLink:"", UID:"15a01c82-9a5b-4f4f-8a35-8710850a1aea", ResourceVersion:"109670609", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000d04450), Subresource:""}}} +2025-07-11T08:58:24.991+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:58:24 [DEBUG] Reading bucket [365zon2] in region [eu-central-1]: timestamp="2025-07-11T08:58:24.990+0200" +2025-07-11T08:58:24.992+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.redis.kubernetes_secret.redis, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:58:24.993+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.postgresql.kubernetes_secret.postgresql_auth[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:58:24.993+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.monitoring.kubernetes_secret.prometheus_remote_write_auth, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .type: planned value cty.StringVal("Opaque") for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:58:24.993+0200 [DEBUG] ReferenceTransformer: "module.postgresql.helm_release.postgresql[0]" references: [] +2025-07-11T08:58:24.993+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:24.994+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=972985 +2025-07-11T08:58:24.994+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:24.994+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:24.995+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=972853 +2025-07-11T08:58:24.995+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:24.996+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:24.996+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=972787 +2025-07-11T08:58:24.996+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:24.999+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000624380 Settings:0xc0007b5440 RegistryClient:0xc0004f9600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_rpc=ReadResource @module=helm timestamp="2025-07-11T08:58:24.999+0200" +2025-07-11T08:58:25.000+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"postgresql" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"postgresql" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"17.0.0","chart":"postgresql","first_deployed":1752215369,"last_deployed":1752215369,"name":"postgresql","namespace":"postgresql","notes":"CHART NAME: postgresql\nCHART VERSION: 16.0.5\nAPP VERSION: 17.0.0\n\n** Please be patient while the chart is being deployed **\n\nWARNING: PostgreSQL has been configured without authentication, this is not recommended for production environments.\n\nPostgreSQL can be accessed via port 5432 on the following DNS names from within your cluster:\n\n postgresql.postgresql.svc.cluster.local - Read/Write connection\n\nTo get the password for \"postgres\" run:\n\n export POSTGRES_ADMIN_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.rootpassword}\" | base64 -d)\n\nTo get the password for \"bridge\" run:\n\n export POSTGRES_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.password}\" | base64 -d)\n\nTo connect to your database run the following command:\n\n kubectl run postgresql-client --rm --tty -i --restart='Never' --namespace postgresql --image docker.io/bitnami/postgresql:17.0.0-debian-12-r6 \\\n --command -- psql --host postgresql -d postgres -p 5432\n\n > NOTE: If you access the container using bash, make sure that you execute \"/opt/bitnami/scripts/postgresql/entrypoint.sh /bin/bash\" in order to avoid the error \"psql: local user with ID 1001} does not exist\"\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace postgresql svc/postgresql 5432:5432 &\n psql --host 127.0.0.1 -d postgres -p 5432\n\nWARNING: The configured password will be ignored on new installation in case when previous PostgreSQL release was deleted through the helm command. In that case, old PVC will have an old password, and setting it through helm won't take effect. Deleting persistent volumes (PVs) will solve the issue.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - primary.resources\n - readReplicas.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"auth\":{\"existingSecret\":\"postgresql-auth\",\"secretKeys\":{\"adminPasswordKey\":\"rootpassword\",\"userPasswordKey\":\"password\"},\"username\":\"bridge\"}}","version":"16.0.5"} Name:"postgresql" Namespace:"postgresql" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["auth:\n existingSecret: postgresql-auth\n username: bridge\n secretKeys:\n adminPasswordKey: rootpassword\n userPasswordKey: password\n"] Verify:false Version:"16.0.5" Wait:true WaitForJobs:false}: @module=helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.000+0200" +2025-07-11T08:58:25.000+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: postgresql] Start: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 @module=helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.000+0200" +2025-07-11T08:58:25.000+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm KubernetesData=map[] tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.000+0200" +2025-07-11T08:58:25.000+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 tf_rpc=ReadResource @module=helm configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:25.000+0200" +2025-07-11T08:58:25.000+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_resource_type=helm_release tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:25.000+0200" +2025-07-11T08:58:25.000+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: postgresql getRelease post action created: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.000+0200" +2025-07-11T08:58:25.026+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: longhorn getRelease post run: @module=helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 timestamp="2025-07-11T08:58:25.026+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: longhorn getRelease completed: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.026+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"v1.7.1","chart":"longhorn","first_deployed":1732547795,"last_deployed":1752215357,"name":"longhorn","namespace":"longhorn-system","notes":"Longhorn is now installed on the cluster!\n\nPlease wait a few minutes for other Longhorn components such as CSI deployments, Engine Images, and Instance Managers to be initialized.\n\nVisit our documentation at https://longhorn.io/docs/\n","revision":2,"values":"{\"csi\":{\"kubeletRootDir\":\"/var/lib/kubelet\"},\"defaultSettings\":{\"defaultDataLocality\":\"best-effort\",\"defaultDataPath\":\"/var/lib/longhorn/\",\"storageOverProvisioningPercentage\":90},\"enablePSP\":false,\"persistence\":{\"defaultClassReplicaCount\":1,\"defaultDataLocality\":\"best-effort\"},\"serviceMonitor\":{\"enabled\":true}}","version":"1.7.1"}: @module=helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.026+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.notes tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.last_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.first_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.app_version tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.revision tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource tf_attribute_path=metadata.name tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.version @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.chart tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=atomic tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=cleanup_on_fail tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=disable_webhooks tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=status tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[0].name tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[0].type tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[0].value timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[0] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[1].name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 @module=sdk.framework tf_attribute_path=set[1].type tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[1].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[1] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[2].type @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_attribute_path=set[2].value tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @module=sdk.framework tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[2].name tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=set[2] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=set[3].name tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[3].type tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=set[3].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[3] tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource tf_attribute_path=set[4].name tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource tf_attribute_path=set[4].type tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource tf_attribute_path=set[4].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set[4] tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[5].type tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_attribute_path=set[5].value tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[5].name tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[5] tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[6].name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[6].type tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[6].value timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[6] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[7].name tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release @module=sdk.framework timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[7].type tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[7].value tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=helm_release tf_attribute_path=set[7] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:25.027+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=set tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=render_subchart_notes tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource @module=sdk.framework tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=namespace tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=replace tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=timeout tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=repository tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=dependency_update tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=reset_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=wait tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=name tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=wait_for_jobs tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=force_update tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=disable_openapi_validation tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_attribute_path=disable_crd_hooks tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource tf_attribute_path=recreate_pods tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=reuse_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_attribute_path=lint tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework tf_attribute_path=verify tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.028+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=skip_crds tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.029+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_rpc=ReadResource tf_attribute_path=create_namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.029+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=pass_credentials tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.029+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=max_history timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.029+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=chart tf_req_id=5a59ccbd-c180-c3cd-f5df-4549ba935274 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.028+0200" +2025-07-11T08:58:25.030+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:25.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000000d20 Settings:0xc0006ec120 RegistryClient:0xc00067bd00 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=dec30495-4e77-d390-f881-35d4044041d7 tf_rpc=ValidateResourceConfig tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 timestamp="2025-07-11T08:58:25.032+0200" +2025-07-11T08:58:25.034+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000000d20 Settings:0xc0006ec120 RegistryClient:0xc00067bd00 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8e7b5820-70e5-cb3a-d80d-2d5e67e9d362 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:25.034+0200" +2025-07-11T08:58:25.041+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"longhorn" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"longhorn" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"v1.7.1","chart":"longhorn","first_deployed":1732547795,"last_deployed":1752215357,"name":"longhorn","namespace":"longhorn-system","notes":"Longhorn is now installed on the cluster!\n\nPlease wait a few minutes for other Longhorn components such as CSI deployments, Engine Images, and Instance Managers to be initialized.\n\nVisit our documentation at https://longhorn.io/docs/\n","revision":2,"values":"{\"csi\":{\"kubeletRootDir\":\"/var/lib/kubelet\"},\"defaultSettings\":{\"defaultDataLocality\":\"best-effort\",\"defaultDataPath\":\"/var/lib/longhorn/\",\"storageOverProvisioningPercentage\":90},\"enablePSP\":false,\"persistence\":{\"defaultClassReplicaCount\":1,\"defaultDataLocality\":\"best-effort\"},\"serviceMonitor\":{\"enabled\":true}}","version":"1.7.1"} Name:"longhorn" Namespace:"longhorn-system" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.longhorn.io" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"defaultSettings.defaultDataPath","type":"","value":"/var/lib/longhorn/"},{"name":"defaultSettings.defaultDataLocality","type":"","value":"best-effort"},{"name":"defaultSettings.storageOverProvisioningPercentage","type":"","value":"90"},{"name":"csi.kubeletRootDir","type":"","value":"/var/lib/kubelet"},{"name":"enablePSP","type":"","value":"false"},{"name":"serviceMonitor.enabled","type":"","value":"true"},{"name":"persistence.defaultClassReplicaCount","type":"","value":"1"},{"name":"persistence.defaultDataLocality","type":"","value":"best-effort"}] SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values: Verify:false Version:"1.7.1" Wait:true WaitForJobs:false}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 @module=helm tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8e7b5820-70e5-cb3a-d80d-2d5e67e9d362 tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.041+0200" +2025-07-11T08:58:25.041+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"longhorn" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"longhorn" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"v1.7.1","chart":"longhorn","first_deployed":1732547795,"last_deployed":1752215357,"name":"longhorn","namespace":"longhorn-system","notes":"Longhorn is now installed on the cluster!\n\nPlease wait a few minutes for other Longhorn components such as CSI deployments, Engine Images, and Instance Managers to be initialized.\n\nVisit our documentation at https://longhorn.io/docs/\n","revision":2,"values":"{\"csi\":{\"kubeletRootDir\":\"/var/lib/kubelet\"},\"defaultSettings\":{\"defaultDataLocality\":\"best-effort\",\"defaultDataPath\":\"/var/lib/longhorn/\",\"storageOverProvisioningPercentage\":90},\"enablePSP\":false,\"persistence\":{\"defaultClassReplicaCount\":1,\"defaultDataLocality\":\"best-effort\"},\"serviceMonitor\":{\"enabled\":true}}","version":"1.7.1"} Name:"longhorn" Namespace:"longhorn-system" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.longhorn.io" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"defaultSettings.defaultDataPath","type":"","value":"/var/lib/longhorn/"},{"name":"defaultSettings.defaultDataLocality","type":"","value":"best-effort"},{"name":"defaultSettings.storageOverProvisioningPercentage","type":"","value":"90"},{"name":"csi.kubeletRootDir","type":"","value":"/var/lib/kubelet"},{"name":"enablePSP","type":"","value":"false"},{"name":"serviceMonitor.enabled","type":"","value":"true"},{"name":"persistence.defaultClassReplicaCount","type":"","value":"1"},{"name":"persistence.defaultDataLocality","type":"","value":"best-effort"}] SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values: Verify:false Version:"1.7.1" Wait:true WaitForJobs:false}: tf_rpc=PlanResourceChange @module=helm tf_req_id=8e7b5820-70e5-cb3a-d80d-2d5e67e9d362 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:25.041+0200" +2025-07-11T08:58:25.041+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: longhorn] Start: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8e7b5820-70e5-cb3a-d80d-2d5e67e9d362 tf_rpc=PlanResourceChange tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.041+0200" +2025-07-11T08:58:25.041+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: KubernetesData=map[] tf_req_id=8e7b5820-70e5-cb3a-d80d-2d5e67e9d362 tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=helm timestamp="2025-07-11T08:58:25.041+0200" +2025-07-11T08:58:25.041+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm tf_req_id=8e7b5820-70e5-cb3a-d80d-2d5e67e9d362 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:25.041+0200" +2025-07-11T08:58:25.041+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_req_id=8e7b5820-70e5-cb3a-d80d-2d5e67e9d362 tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 timestamp="2025-07-11T08:58:25.041+0200" +2025-07-11T08:58:25.041+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: longhorn] Initial Values: Name=longhorn, Namespace=longhorn-system, Repository=https://charts.longhorn.io, Repository_Username=, Repository_Password=, Chart=longhorn: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @module=helm tf_req_id=8e7b5820-70e5-cb3a-d80d-2d5e67e9d362 tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.041+0200" +2025-07-11T08:58:25.041+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc0006ec240 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8e7b5820-70e5-cb3a-d80d-2d5e67e9d362 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 @module=helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:25.041+0200" +2025-07-11T08:58:25.293+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:58:25 [WARN] ({ 365zon2 enabled [] 2025-07-11 06:46:17.754225947 +0000 UTC}): timestamp="2025-07-11T08:58:25.293+0200" +2025-07-11T08:58:25.294+0200 [WARN] Provider "registry.terraform.io/aminueza/minio" produced an invalid plan for module.tenant-365zon.module.minio.minio_iam_user.overlay, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .update_secret: planned value cty.False for a non-computed attribute + - .disable_user: planned value cty.False for a non-computed attribute + - .force_destroy: planned value cty.False for a non-computed attribute +2025-07-11T08:58:25.481+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: minio getRelease post run: @module=helm tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 timestamp="2025-07-11T08:58:25.481+0200" +2025-07-11T08:58:25.481+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: minio getRelease completed: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.481+0200" +2025-07-11T08:58:25.481+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: minio] Done: @module=helm tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 timestamp="2025-07-11T08:58:25.481+0200" +2025-07-11T08:58:25.481+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: minio] Started: tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:25.481+0200" +2025-07-11T08:58:25.481+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm KubernetesData=map[] tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.481+0200" +2025-07-11T08:58:25.481+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.481+0200" +2025-07-11T08:58:25.481+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.481+0200" +2025-07-11T08:58:25.481+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: minio getRelease post action created: tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 timestamp="2025-07-11T08:58:25.481+0200" +2025-07-11T08:58:25.600+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:58:25 [DEBUG] Bucket [365zon2] exists!: timestamp="2025-07-11T08:58:25.600+0200" +2025-07-11T08:58:25.602+0200 [WARN] Provider "registry.terraform.io/aminueza/minio" produced an invalid plan for module.tenant-365zon.module.minio.minio_s3_bucket.overlay, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .object_locking: planned value cty.False for a non-computed attribute + - .force_destroy: planned value cty.False for a non-computed attribute +2025-07-11T08:58:25.603+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay" references: [] +2025-07-11T08:58:25.603+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay" references: [] +2025-07-11T08:58:25.603+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay" references: [] +2025-07-11T08:58:25.604+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:58:25 [DEBUG] S3 bucket policy, read for bucket: 365zon2: timestamp="2025-07-11T08:58:25.604+0200" +2025-07-11T08:58:25.604+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:58:25 [DEBUG] Getting IAM Policy: 365zon2: timestamp="2025-07-11T08:58:25.604+0200" +2025-07-11T08:58:25.609+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: redis getRelease post run: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release @module=helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.609+0200" +2025-07-11T08:58:25.609+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: redis getRelease completed: tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 timestamp="2025-07-11T08:58:25.609+0200" +2025-07-11T08:58:25.609+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: redis] Done: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.609+0200" +2025-07-11T08:58:25.609+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: redis] Started: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 tf_resource_type=helm_release tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 timestamp="2025-07-11T08:58:25.609+0200" +2025-07-11T08:58:25.609+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.609+0200" +2025-07-11T08:58:25.609+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release tf_rpc=ReadResource @module=helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 configPaths=[] timestamp="2025-07-11T08:58:25.609+0200" +2025-07-11T08:58:25.609+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_rpc=ReadResource tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.609+0200" +2025-07-11T08:58:25.609+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: redis getRelease post action created: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.609+0200" +2025-07-11T08:58:25.681+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025-07-11T08:58:25.681+0200 [DEBUG] [UpgradeResourceState]: +2025-07-11T08:58:25.681+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: morphed object= +2025-07-11T08:58:25.681+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | tftypes.Object["apiVersion":tftypes.String, "kind":tftypes.String, "metadata":tftypes.Object["annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String, "namespace":tftypes.String, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String], "spec":tftypes.Object["failurePolicy":tftypes.String, "valuesContent":tftypes.String]]<"apiVersion":tftypes.String<"helm.cattle.io/v1">, "kind":tftypes.String<"HelmChartConfig">, "metadata":tftypes.Object["annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String, "namespace":tftypes.String, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String]<"annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String<"rke2-ingress-nginx">, "namespace":tftypes.String<"kube-system">, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String>, "spec":tftypes.Object["failurePolicy":tftypes.String, "valuesContent":tftypes.String]<"failurePolicy":tftypes.String, "valuesContent":tftypes.String<"controller: +2025-07-11T08:58:25.681+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | config: +2025-07-11T08:58:25.681+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | use-forwarded-headers: "true" +2025-07-11T08:58:25.681+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | ">>> +2025-07-11T08:58:25.681+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: +2025-07-11T08:58:25.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: redis getRelease post run: @module=helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.955+0200" +2025-07-11T08:58:25.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: redis getRelease completed: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.955+0200" +2025-07-11T08:58:25.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"7.4.1","chart":"redis","first_deployed":1752215366,"last_deployed":1752215366,"name":"redis","namespace":"redis","notes":"CHART NAME: redis\nCHART VERSION: 20.1.7\nAPP VERSION: 7.4.1\n\n** Please be patient while the chart is being deployed **\n\nRedis® can be accessed via port 6379 on the following DNS name from within your cluster:\n\n redis-master.redis.svc.cluster.local\n\n\n\nTo get your password run:\n\n export REDIS_PASSWORD=$(kubectl get secret --namespace redis redis -o jsonpath=\"{.data.redis-password}\" | base64 -d)\n\nTo connect to your Redis® server:\n\n1. Run a Redis® pod that you can use as a client:\n\n kubectl run --namespace redis redis-client --restart='Never' --env REDIS_PASSWORD=$REDIS_PASSWORD --image docker.io/bitnami/redis:7.4.1-debian-12-r0 --command -- sleep infinity\n\n Use the following command to attach to the pod:\n\n kubectl exec --tty -i redis-client \\\n --namespace redis -- bash\n\n2. Connect using the Redis® CLI:\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h redis-master\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace redis svc/redis-master 6379:6379 &\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h 127.0.0.1 -p 6379\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - replica.resources\n - master.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"architecture\":\"standalone\",\"auth\":{\"enabled\":true,\"existingSecret\":\"redis\",\"existingSecretPasswordKey\":\"redis-password\"},\"master\":{\"persistence\":{\"size\":\"6Gi\"}},\"metrics\":{\"enabled\":false}}","version":"20.1.7"}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.955+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=chart tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=reuse_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=wait_for_jobs tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=create_namespace tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=repository tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=force_update tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=values[0] tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release @module=sdk.framework timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=skip_crds tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=metadata.notes tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.version tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.app_version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.name tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_attribute_path=metadata.first_deployed timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.last_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.chart tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.namespace tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.revision tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release @module=sdk.framework tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 @module=sdk.framework tf_attribute_path=metadata tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=pass_credentials tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=wait tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=render_subchart_notes tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=status tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=lint tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release @module=sdk.framework tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=namespace timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.956+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=replace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.957+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=timeout tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.957+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=version tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.956+0200" +2025-07-11T08:58:25.957+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=disable_crd_hooks tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:58:25.957+0200" +2025-07-11T08:58:25.957+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=dependency_update tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.957+0200" +2025-07-11T08:58:25.957+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_attribute_path=recreate_pods tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.957+0200" +2025-07-11T08:58:25.957+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=atomic tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 timestamp="2025-07-11T08:58:25.957+0200" +2025-07-11T08:58:25.957+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=disable_openapi_validation tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.957+0200" +2025-07-11T08:58:25.957+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=verify tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:25.957+0200" +2025-07-11T08:58:25.957+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=max_history tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.957+0200" +2025-07-11T08:58:25.957+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=reset_values tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:25.957+0200" +2025-07-11T08:58:25.957+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.957+0200" +2025-07-11T08:58:25.957+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=cleanup_on_fail tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.957+0200" +2025-07-11T08:58:25.957+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=disable_webhooks tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97980257-5f5f-bc84-4f73-4b2795ea6622 tf_rpc=ReadResource timestamp="2025-07-11T08:58:25.957+0200" +2025-07-11T08:58:25.958+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:25.959+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc00070c380 Settings:0xc000759440 RegistryClient:0xc000033680 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=helm tf_req_id=6c28b12b-843d-5c87-1aea-282ee4d837f5 tf_rpc=ValidateResourceConfig @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 timestamp="2025-07-11T08:58:25.959+0200" +2025-07-11T08:58:25.961+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc00070c380 Settings:0xc000759440 RegistryClient:0xc000033680 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_req_id=b521a9b0-95db-98ce-23ed-eee2e8960502 timestamp="2025-07-11T08:58:25.961+0200" +2025-07-11T08:58:25.965+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"redis" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"redis" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"7.4.1","chart":"redis","first_deployed":1752215366,"last_deployed":1752215366,"name":"redis","namespace":"redis","notes":"CHART NAME: redis\nCHART VERSION: 20.1.7\nAPP VERSION: 7.4.1\n\n** Please be patient while the chart is being deployed **\n\nRedis® can be accessed via port 6379 on the following DNS name from within your cluster:\n\n redis-master.redis.svc.cluster.local\n\n\n\nTo get your password run:\n\n export REDIS_PASSWORD=$(kubectl get secret --namespace redis redis -o jsonpath=\"{.data.redis-password}\" | base64 -d)\n\nTo connect to your Redis® server:\n\n1. Run a Redis® pod that you can use as a client:\n\n kubectl run --namespace redis redis-client --restart='Never' --env REDIS_PASSWORD=$REDIS_PASSWORD --image docker.io/bitnami/redis:7.4.1-debian-12-r0 --command -- sleep infinity\n\n Use the following command to attach to the pod:\n\n kubectl exec --tty -i redis-client \\\n --namespace redis -- bash\n\n2. Connect using the Redis® CLI:\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h redis-master\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace redis svc/redis-master 6379:6379 &\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h 127.0.0.1 -p 6379\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - replica.resources\n - master.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"architecture\":\"standalone\",\"auth\":{\"enabled\":true,\"existingSecret\":\"redis\",\"existingSecretPasswordKey\":\"redis-password\"},\"master\":{\"persistence\":{\"size\":\"6Gi\"}},\"metrics\":{\"enabled\":false}}","version":"20.1.7"} Name:"redis" Namespace:"redis" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["metrics:\n enabled: false\n\narchitecture: standalone\n\nauth:\n enabled: true\n existingSecret: redis\n existingSecretPasswordKey: 'redis-password'\n\nmaster:\n persistence:\n size: 6Gi\n"] Verify:false Version:"20.1.7" Wait:true WaitForJobs:true}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b521a9b0-95db-98ce-23ed-eee2e8960502 tf_rpc=PlanResourceChange @module=helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 timestamp="2025-07-11T08:58:25.965+0200" +2025-07-11T08:58:25.965+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"redis" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"redis" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"7.4.1","chart":"redis","first_deployed":1752215366,"last_deployed":1752215366,"name":"redis","namespace":"redis","notes":"CHART NAME: redis\nCHART VERSION: 20.1.7\nAPP VERSION: 7.4.1\n\n** Please be patient while the chart is being deployed **\n\nRedis® can be accessed via port 6379 on the following DNS name from within your cluster:\n\n redis-master.redis.svc.cluster.local\n\n\n\nTo get your password run:\n\n export REDIS_PASSWORD=$(kubectl get secret --namespace redis redis -o jsonpath=\"{.data.redis-password}\" | base64 -d)\n\nTo connect to your Redis® server:\n\n1. Run a Redis® pod that you can use as a client:\n\n kubectl run --namespace redis redis-client --restart='Never' --env REDIS_PASSWORD=$REDIS_PASSWORD --image docker.io/bitnami/redis:7.4.1-debian-12-r0 --command -- sleep infinity\n\n Use the following command to attach to the pod:\n\n kubectl exec --tty -i redis-client \\\n --namespace redis -- bash\n\n2. Connect using the Redis® CLI:\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h redis-master\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace redis svc/redis-master 6379:6379 &\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h 127.0.0.1 -p 6379\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - replica.resources\n - master.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"architecture\":\"standalone\",\"auth\":{\"enabled\":true,\"existingSecret\":\"redis\",\"existingSecretPasswordKey\":\"redis-password\"},\"master\":{\"persistence\":{\"size\":\"6Gi\"}},\"metrics\":{\"enabled\":false}}","version":"20.1.7"} Name:"redis" Namespace:"redis" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["metrics:\n enabled: false\n\narchitecture: standalone\n\nauth:\n enabled: true\n existingSecret: redis\n existingSecretPasswordKey: 'redis-password'\n\nmaster:\n persistence:\n size: 6Gi\n"] Verify:false Version:"20.1.7" Wait:true WaitForJobs:true}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b521a9b0-95db-98ce-23ed-eee2e8960502 tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.965+0200" +2025-07-11T08:58:25.965+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: redis] Start: tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b521a9b0-95db-98ce-23ed-eee2e8960502 timestamp="2025-07-11T08:58:25.965+0200" +2025-07-11T08:58:25.965+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_req_id=b521a9b0-95db-98ce-23ed-eee2e8960502 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm timestamp="2025-07-11T08:58:25.965+0200" +2025-07-11T08:58:25.965+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_rpc=PlanResourceChange @module=helm configPaths=[] tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b521a9b0-95db-98ce-23ed-eee2e8960502 timestamp="2025-07-11T08:58:25.965+0200" +2025-07-11T08:58:25.966+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_req_id=b521a9b0-95db-98ce-23ed-eee2e8960502 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:25.965+0200" +2025-07-11T08:58:25.966+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: redis] Initial Values: Name=redis, Namespace=redis, Repository=https://charts.bitnami.com/bitnami, Repository_Username=, Repository_Password=, Chart=redis: tf_rpc=PlanResourceChange tf_req_id=b521a9b0-95db-98ce-23ed-eee2e8960502 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:25.965+0200" +2025-07-11T08:58:25.966+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc000759560 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b521a9b0-95db-98ce-23ed-eee2e8960502 tf_resource_type=helm_release timestamp="2025-07-11T08:58:25.966+0200" +2025-07-11T08:58:26.078+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: postgresql getRelease post run: tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:26.078+0200" +2025-07-11T08:58:26.078+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: postgresql getRelease completed: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.078+0200" +2025-07-11T08:58:26.078+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: postgresql] Done: tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 @module=helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.078+0200" +2025-07-11T08:58:26.078+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: postgresql] Started: tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.078+0200" +2025-07-11T08:58:26.078+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release @module=helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 timestamp="2025-07-11T08:58:26.078+0200" +2025-07-11T08:58:26.078+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm timestamp="2025-07-11T08:58:26.078+0200" +2025-07-11T08:58:26.078+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @module=helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.078+0200" +2025-07-11T08:58:26.078+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: postgresql getRelease post action created: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.078+0200" +2025-07-11T08:58:26.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay" references: [] +2025-07-11T08:58:26.082+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:58:26 [DEBUG] Locking "365zon2": timestamp="2025-07-11T08:58:26.082+0200" +2025-07-11T08:58:26.082+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:58:26 [DEBUG] Locked "365zon2": timestamp="2025-07-11T08:58:26.082+0200" +2025-07-11T08:58:26.082+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:58:26 [DEBUG] UserPolicyAttachment: is user '365zon2' an LDAP user? false: timestamp="2025-07-11T08:58:26.082+0200" +2025-07-11T08:58:26.099+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: minio getRelease post run: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:26.099+0200" +2025-07-11T08:58:26.099+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: minio getRelease completed: tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.099+0200" +2025-07-11T08:58:26.099+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"2025.3.12","chart":"minio","first_deployed":1732564007,"last_deployed":1752215358,"name":"minio","namespace":"minio","notes":"CHART NAME: minio\nCHART VERSION: 16.0.0\nAPP VERSION: 2025.3.12\n\nDid you know there are enterprise versions of the Bitnami catalog? For enhanced secure software supply chain features, unlimited pulls from Docker, LTS support, or application customization, see Bitnami Premium or Tanzu Application Catalog. See https://www.arrow.com/globalecs/na/vendors/bitnami for more information.\n\n** Please be patient while the chart is being deployed **\n\nMinIO® can be accessed via port on the following DNS name from within your cluster:\n\n minio.minio.svc.cluster.local\n\nTo get your credentials run:\n\n export ROOT_USER=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-user}\" | base64 -d)\n export ROOT_PASSWORD=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-password}\" | base64 -d)\n\nTo connect to your MinIO® server using a client:\n\n- Run a MinIO® Client pod and append the desired command (e.g. 'admin info'):\n\n kubectl run --namespace minio minio-client \\\n --rm --tty -i --restart='Never' \\\n --env MINIO_SERVER_ROOT_USER=$ROOT_USER \\\n --env MINIO_SERVER_ROOT_PASSWORD=$ROOT_PASSWORD \\\n --env MINIO_SERVER_HOST=minio \\\n --image docker.io/bitnami/minio-client:2025.3.12-debian-12-r0 -- admin info minio\n\nTo access the MinIO® web UI:\n\n- Get the MinIO® URL:\n\n You should be able to access your new MinIO® web UI through\n\n http://storage-admin.365zon.fourlights.dev/minio/\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"apiIngress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"auth\":{\"rootPassword\":\"(sensitive value)\",\"rootUser\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage-admin.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"mode\":\"standalone\",\"persistence\":{\"size\":\"40Gi\"},\"resourcesPreset\":\"nano\",\"statefulset\":{\"drivesPerNode\":2,\"replicaCount\":1},\"tls\":{\"enabled\":false}}","version":"16.0.0"}: @module=helm tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 timestamp="2025-07-11T08:58:26.099+0200" +2025-07-11T08:58:26.099+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=dependency_update tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.099+0200" +2025-07-11T08:58:26.099+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=render_subchart_notes tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:26.099+0200" +2025-07-11T08:58:26.099+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.app_version tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.099+0200" +2025-07-11T08:58:26.099+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.first_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:26.099+0200" +2025-07-11T08:58:26.099+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=metadata.values tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e timestamp="2025-07-11T08:58:26.099+0200" +2025-07-11T08:58:26.099+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:26.099+0200" +2025-07-11T08:58:26.099+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.099+0200" +2025-07-11T08:58:26.099+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_attribute_path=metadata.last_deployed tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:26.099+0200" +2025-07-11T08:58:26.099+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.version tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.099+0200" +2025-07-11T08:58:26.099+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.revision tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e timestamp="2025-07-11T08:58:26.099+0200" +2025-07-11T08:58:26.099+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.notes tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e timestamp="2025-07-11T08:58:26.099+0200" +2025-07-11T08:58:26.099+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.chart tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.099+0200" +2025-07-11T08:58:26.099+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:26.099+0200" +2025-07-11T08:58:26.099+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=create_namespace tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e timestamp="2025-07-11T08:58:26.099+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_attribute_path=name tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:26.099+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=reuse_values tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release tf_attribute_path=disable_openapi_validation timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=repository tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_attribute_path=atomic tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=force_update tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_attribute_path=replace tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=chart tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=pass_credentials tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=disable_webhooks timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release tf_attribute_path=cleanup_on_fail tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=namespace @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set_sensitive[0].value tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set_sensitive[0].name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_attribute_path=set_sensitive[0] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set_sensitive[1].value tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set_sensitive[1].name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set_sensitive[1] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set_sensitive tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=disable_crd_hooks timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=skip_crds tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=wait tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=max_history tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_attribute_path=recreate_pods tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=wait_for_jobs tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=lint tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=values[0] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=values @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_attribute_path=version tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set[0].name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[0].type tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_attribute_path=set[0].value tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[0] timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_attribute_path=set[1].name timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[1].type tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release @module=sdk.framework timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_attribute_path=set[1].value tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[1] tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[2].type tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.100+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e @module=sdk.framework tf_attribute_path=set[2].value tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.101+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set[2].name tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.101+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=sdk.framework tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[2] timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.101+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[3].type tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.101+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[3].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.101+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[3].name tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.101+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[3] timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.101+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[4].type tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.101+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=set[4].value timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.101+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[4].name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release @module=sdk.framework tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.101+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_attribute_path=set[4] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.101+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.100+0200" +2025-07-11T08:58:26.101+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=verify tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:26.101+0200" +2025-07-11T08:58:26.101+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.101+0200" +2025-07-11T08:58:26.101+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=timeout tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e timestamp="2025-07-11T08:58:26.101+0200" +2025-07-11T08:58:26.101+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=reset_values tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.101+0200" +2025-07-11T08:58:26.101+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=status tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a8866aba-ce61-4994-e0c9-80ee575e8a8e timestamp="2025-07-11T08:58:26.101+0200" +2025-07-11T08:58:26.103+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:26.106+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0007ce1c0 Settings:0xc0007d8120 RegistryClient:0xc0005b4200 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_rpc=ValidateResourceConfig @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=4ecf3113-2883-a9a1-30c3-9959b64d5e98 tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.105+0200" +2025-07-11T08:58:26.109+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0007ce1c0 Settings:0xc0007d8120 RegistryClient:0xc0005b4200 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_req_id=e4a816c5-ebc7-0273-145c-7e27d5944e9d tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:26.109+0200" +2025-07-11T08:58:26.116+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"minio" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"minio" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"2025.3.12","chart":"minio","first_deployed":1732564007,"last_deployed":1752215358,"name":"minio","namespace":"minio","notes":"CHART NAME: minio\nCHART VERSION: 16.0.0\nAPP VERSION: 2025.3.12\n\nDid you know there are enterprise versions of the Bitnami catalog? For enhanced secure software supply chain features, unlimited pulls from Docker, LTS support, or application customization, see Bitnami Premium or Tanzu Application Catalog. See https://www.arrow.com/globalecs/na/vendors/bitnami for more information.\n\n** Please be patient while the chart is being deployed **\n\nMinIO® can be accessed via port on the following DNS name from within your cluster:\n\n minio.minio.svc.cluster.local\n\nTo get your credentials run:\n\n export ROOT_USER=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-user}\" | base64 -d)\n export ROOT_PASSWORD=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-password}\" | base64 -d)\n\nTo connect to your MinIO® server using a client:\n\n- Run a MinIO® Client pod and append the desired command (e.g. 'admin info'):\n\n kubectl run --namespace minio minio-client \\\n --rm --tty -i --restart='Never' \\\n --env MINIO_SERVER_ROOT_USER=$ROOT_USER \\\n --env MINIO_SERVER_ROOT_PASSWORD=$ROOT_PASSWORD \\\n --env MINIO_SERVER_HOST=minio \\\n --image docker.io/bitnami/minio-client:2025.3.12-debian-12-r0 -- admin info minio\n\nTo access the MinIO® web UI:\n\n- Get the MinIO® URL:\n\n You should be able to access your new MinIO® web UI through\n\n http://storage-admin.365zon.fourlights.dev/minio/\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"apiIngress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"auth\":{\"rootPassword\":\"(sensitive value)\",\"rootUser\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage-admin.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"mode\":\"standalone\",\"persistence\":{\"size\":\"40Gi\"},\"resourcesPreset\":\"nano\",\"statefulset\":{\"drivesPerNode\":2,\"replicaCount\":1},\"tls\":{\"enabled\":false}}","version":"16.0.0"} Name:"minio" Namespace:"minio" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"mode","type":"","value":"standalone"},{"name":"resourcesPreset","type":"","value":"nano"},{"name":"statefulset.replicaCount","type":"","value":"1"},{"name":"statefulset.drivesPerNode","type":"","value":"2"},{"name":"persistence.size","type":"","value":"40Gi"}] SetList: SetSensitive:[{"name":"auth.rootUser","type":,"value":"Xg6VDlh9GVliFdnWnVec"},{"name":"auth.rootPassword","type":,"value":"j!4VaGixfD6f*nam7EeC0Sa*OogSqYA=cinX9bPj"}] SkipCrds:false Status:"deployed" Timeout:300 Values:["tls:\n enabled: false\n\ningress:\n enabled: true\n tls: false\n ingressClassName: nginx\n hostname: storage-admin.365zon.fourlights.dev\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n \n ingress.kubernetes.io/proxy-body-size: \"0\"\n nginx.ingress.kubernetes.io/proxy-body-size: \"0\"\n \n \n\napiIngress:\n enabled: true\n ingressClassName: nginx\n tls: false\n hostname: storage.365zon.fourlights.dev\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n \n ingress.kubernetes.io/proxy-body-size: \"0\"\n nginx.ingress.kubernetes.io/proxy-body-size: \"0\"\n \n"] Verify:false Version:"16.0.0" Wait:true WaitForJobs:true}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e4a816c5-ebc7-0273-145c-7e27d5944e9d tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:26.116+0200" +2025-07-11T08:58:26.116+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"minio" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"minio" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"2025.3.12","chart":"minio","first_deployed":1732564007,"last_deployed":1752215358,"name":"minio","namespace":"minio","notes":"CHART NAME: minio\nCHART VERSION: 16.0.0\nAPP VERSION: 2025.3.12\n\nDid you know there are enterprise versions of the Bitnami catalog? For enhanced secure software supply chain features, unlimited pulls from Docker, LTS support, or application customization, see Bitnami Premium or Tanzu Application Catalog. See https://www.arrow.com/globalecs/na/vendors/bitnami for more information.\n\n** Please be patient while the chart is being deployed **\n\nMinIO® can be accessed via port on the following DNS name from within your cluster:\n\n minio.minio.svc.cluster.local\n\nTo get your credentials run:\n\n export ROOT_USER=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-user}\" | base64 -d)\n export ROOT_PASSWORD=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-password}\" | base64 -d)\n\nTo connect to your MinIO® server using a client:\n\n- Run a MinIO® Client pod and append the desired command (e.g. 'admin info'):\n\n kubectl run --namespace minio minio-client \\\n --rm --tty -i --restart='Never' \\\n --env MINIO_SERVER_ROOT_USER=$ROOT_USER \\\n --env MINIO_SERVER_ROOT_PASSWORD=$ROOT_PASSWORD \\\n --env MINIO_SERVER_HOST=minio \\\n --image docker.io/bitnami/minio-client:2025.3.12-debian-12-r0 -- admin info minio\n\nTo access the MinIO® web UI:\n\n- Get the MinIO® URL:\n\n You should be able to access your new MinIO® web UI through\n\n http://storage-admin.365zon.fourlights.dev/minio/\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"apiIngress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"auth\":{\"rootPassword\":\"(sensitive value)\",\"rootUser\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage-admin.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"mode\":\"standalone\",\"persistence\":{\"size\":\"40Gi\"},\"resourcesPreset\":\"nano\",\"statefulset\":{\"drivesPerNode\":2,\"replicaCount\":1},\"tls\":{\"enabled\":false}}","version":"16.0.0"} Name:"minio" Namespace:"minio" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"mode","type":"","value":"standalone"},{"name":"resourcesPreset","type":"","value":"nano"},{"name":"statefulset.replicaCount","type":"","value":"1"},{"name":"statefulset.drivesPerNode","type":"","value":"2"},{"name":"persistence.size","type":"","value":"40Gi"}] SetList: SetSensitive:[{"name":"auth.rootUser","type":,"value":"Xg6VDlh9GVliFdnWnVec"},{"name":"auth.rootPassword","type":,"value":"j!4VaGixfD6f*nam7EeC0Sa*OogSqYA=cinX9bPj"}] SkipCrds:false Status:"deployed" Timeout:300 Values:["tls:\n enabled: false\n\ningress:\n enabled: true\n tls: false\n ingressClassName: nginx\n hostname: storage-admin.365zon.fourlights.dev\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n \n ingress.kubernetes.io/proxy-body-size: \"0\"\n nginx.ingress.kubernetes.io/proxy-body-size: \"0\"\n \n \n\napiIngress:\n enabled: true\n ingressClassName: nginx\n tls: false\n hostname: storage.365zon.fourlights.dev\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n \n ingress.kubernetes.io/proxy-body-size: \"0\"\n nginx.ingress.kubernetes.io/proxy-body-size: \"0\"\n \n"] Verify:false Version:"16.0.0" Wait:true WaitForJobs:true}: @module=helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e4a816c5-ebc7-0273-145c-7e27d5944e9d tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:26.116+0200" +2025-07-11T08:58:26.116+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: minio] Start: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e4a816c5-ebc7-0273-145c-7e27d5944e9d tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.116+0200" +2025-07-11T08:58:26.116+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_req_id=e4a816c5-ebc7-0273-145c-7e27d5944e9d tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:26.116+0200" +2025-07-11T08:58:26.116+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=e4a816c5-ebc7-0273-145c-7e27d5944e9d tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm configPaths=[] timestamp="2025-07-11T08:58:26.116+0200" +2025-07-11T08:58:26.116+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_req_id=e4a816c5-ebc7-0273-145c-7e27d5944e9d tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.116+0200" +2025-07-11T08:58:26.116+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: minio] Initial Values: Name=minio, Namespace=minio, Repository=oci://registry-1.docker.io/bitnamicharts, Repository_Username=, Repository_Password=, Chart=minio: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @module=helm tf_req_id=e4a816c5-ebc7-0273-145c-7e27d5944e9d tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.116+0200" +2025-07-11T08:58:26.117+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc0007d8240 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 @module=helm tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e4a816c5-ebc7-0273-145c-7e27d5944e9d tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.116+0200" +2025-07-11T08:58:26.215+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:58:26 [DEBUG] Unlocking "365zon2": timestamp="2025-07-11T08:58:26.215+0200" +2025-07-11T08:58:26.215+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:58:26 [DEBUG] Unlocked "365zon2": timestamp="2025-07-11T08:58:26.215+0200" +2025-07-11T08:58:26.378+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:26.403+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: postgresql getRelease post run: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.403+0200" +2025-07-11T08:58:26.403+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: postgresql getRelease completed: tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.403+0200" +2025-07-11T08:58:26.404+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"17.0.0","chart":"postgresql","first_deployed":1752215369,"last_deployed":1752215369,"name":"postgresql","namespace":"postgresql","notes":"CHART NAME: postgresql\nCHART VERSION: 16.0.5\nAPP VERSION: 17.0.0\n\n** Please be patient while the chart is being deployed **\n\nWARNING: PostgreSQL has been configured without authentication, this is not recommended for production environments.\n\nPostgreSQL can be accessed via port 5432 on the following DNS names from within your cluster:\n\n postgresql.postgresql.svc.cluster.local - Read/Write connection\n\nTo get the password for \"postgres\" run:\n\n export POSTGRES_ADMIN_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.rootpassword}\" | base64 -d)\n\nTo get the password for \"bridge\" run:\n\n export POSTGRES_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.password}\" | base64 -d)\n\nTo connect to your database run the following command:\n\n kubectl run postgresql-client --rm --tty -i --restart='Never' --namespace postgresql --image docker.io/bitnami/postgresql:17.0.0-debian-12-r6 \\\n --command -- psql --host postgresql -d postgres -p 5432\n\n > NOTE: If you access the container using bash, make sure that you execute \"/opt/bitnami/scripts/postgresql/entrypoint.sh /bin/bash\" in order to avoid the error \"psql: local user with ID 1001} does not exist\"\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace postgresql svc/postgresql 5432:5432 &\n psql --host 127.0.0.1 -d postgres -p 5432\n\nWARNING: The configured password will be ignored on new installation in case when previous PostgreSQL release was deleted through the helm command. In that case, old PVC will have an old password, and setting it through helm won't take effect. Deleting persistent volumes (PVs) will solve the issue.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - primary.resources\n - readReplicas.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"auth\":{\"existingSecret\":\"postgresql-auth\",\"secretKeys\":{\"adminPasswordKey\":\"rootpassword\",\"userPasswordKey\":\"password\"},\"username\":\"bridge\"}}","version":"16.0.5"}: @module=helm tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.404+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_attribute_path=wait tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.404+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=version tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.404+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=dependency_update tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.404+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=max_history @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.404+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=reset_values tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.404+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=cleanup_on_fail tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.404+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=chart tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.404+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=metadata.namespace tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.404+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.app_version tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.404+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.chart @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.notes tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release tf_attribute_path=metadata.values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.first_deployed tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.revision tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_attribute_path=metadata.name tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.last_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_attribute_path=render_subchart_notes tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=repository timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=force_update tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=wait_for_jobs timestamp="2025-07-11T08:58:26.404+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=disable_webhooks tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.405+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=disable_openapi_validation tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:58:26.405+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=recreate_pods tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 timestamp="2025-07-11T08:58:26.405+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=pass_credentials timestamp="2025-07-11T08:58:26.405+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.405+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=disable_crd_hooks timestamp="2025-07-11T08:58:26.405+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_attribute_path=create_namespace timestamp="2025-07-11T08:58:26.405+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource tf_attribute_path=lint timestamp="2025-07-11T08:58:26.405+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=namespace timestamp="2025-07-11T08:58:26.405+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=verify tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.405+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=skip_crds tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.405+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=timeout @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:58:26.405+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_attribute_path=atomic tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:26.405+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 timestamp="2025-07-11T08:58:26.405+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=replace tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.405+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=reuse_values tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:26.405+0200" +2025-07-11T08:58:26.405+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=status tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.405+0200" +2025-07-11T08:58:26.406+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 tf_attribute_path=values[0] tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:26.405+0200" +2025-07-11T08:58:26.406+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_attribute_path=values tf_req_id=67ee51f6-438f-5cb3-e84a-f989f5d065d6 timestamp="2025-07-11T08:58:26.405+0200" +2025-07-11T08:58:26.406+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:26.407+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000624380 Settings:0xc0007b5440 RegistryClient:0xc0004f9600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_rpc=ValidateResourceConfig tf_req_id=2d7c0dbd-e40b-c02e-682f-c98ea6e4da86 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:26.407+0200" +2025-07-11T08:58:26.409+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000624380 Settings:0xc0007b5440 RegistryClient:0xc0004f9600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e5ef3dd3-ea4a-6a58-2862-fc1c9945e001 tf_rpc=PlanResourceChange @module=helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 timestamp="2025-07-11T08:58:26.409+0200" +2025-07-11T08:58:26.413+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"postgresql" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"postgresql" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"17.0.0","chart":"postgresql","first_deployed":1752215369,"last_deployed":1752215369,"name":"postgresql","namespace":"postgresql","notes":"CHART NAME: postgresql\nCHART VERSION: 16.0.5\nAPP VERSION: 17.0.0\n\n** Please be patient while the chart is being deployed **\n\nWARNING: PostgreSQL has been configured without authentication, this is not recommended for production environments.\n\nPostgreSQL can be accessed via port 5432 on the following DNS names from within your cluster:\n\n postgresql.postgresql.svc.cluster.local - Read/Write connection\n\nTo get the password for \"postgres\" run:\n\n export POSTGRES_ADMIN_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.rootpassword}\" | base64 -d)\n\nTo get the password for \"bridge\" run:\n\n export POSTGRES_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.password}\" | base64 -d)\n\nTo connect to your database run the following command:\n\n kubectl run postgresql-client --rm --tty -i --restart='Never' --namespace postgresql --image docker.io/bitnami/postgresql:17.0.0-debian-12-r6 \\\n --command -- psql --host postgresql -d postgres -p 5432\n\n > NOTE: If you access the container using bash, make sure that you execute \"/opt/bitnami/scripts/postgresql/entrypoint.sh /bin/bash\" in order to avoid the error \"psql: local user with ID 1001} does not exist\"\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace postgresql svc/postgresql 5432:5432 &\n psql --host 127.0.0.1 -d postgres -p 5432\n\nWARNING: The configured password will be ignored on new installation in case when previous PostgreSQL release was deleted through the helm command. In that case, old PVC will have an old password, and setting it through helm won't take effect. Deleting persistent volumes (PVs) will solve the issue.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - primary.resources\n - readReplicas.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"auth\":{\"existingSecret\":\"postgresql-auth\",\"secretKeys\":{\"adminPasswordKey\":\"rootpassword\",\"userPasswordKey\":\"password\"},\"username\":\"bridge\"}}","version":"16.0.5"} Name:"postgresql" Namespace:"postgresql" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["auth:\n existingSecret: postgresql-auth\n username: bridge\n secretKeys:\n adminPasswordKey: rootpassword\n userPasswordKey: password\n"] Verify:false Version:"16.0.5" Wait:true WaitForJobs:false}: @module=helm tf_req_id=e5ef3dd3-ea4a-6a58-2862-fc1c9945e001 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 timestamp="2025-07-11T08:58:26.413+0200" +2025-07-11T08:58:26.413+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"postgresql" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"postgresql" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"17.0.0","chart":"postgresql","first_deployed":1752215369,"last_deployed":1752215369,"name":"postgresql","namespace":"postgresql","notes":"CHART NAME: postgresql\nCHART VERSION: 16.0.5\nAPP VERSION: 17.0.0\n\n** Please be patient while the chart is being deployed **\n\nWARNING: PostgreSQL has been configured without authentication, this is not recommended for production environments.\n\nPostgreSQL can be accessed via port 5432 on the following DNS names from within your cluster:\n\n postgresql.postgresql.svc.cluster.local - Read/Write connection\n\nTo get the password for \"postgres\" run:\n\n export POSTGRES_ADMIN_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.rootpassword}\" | base64 -d)\n\nTo get the password for \"bridge\" run:\n\n export POSTGRES_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.password}\" | base64 -d)\n\nTo connect to your database run the following command:\n\n kubectl run postgresql-client --rm --tty -i --restart='Never' --namespace postgresql --image docker.io/bitnami/postgresql:17.0.0-debian-12-r6 \\\n --command -- psql --host postgresql -d postgres -p 5432\n\n > NOTE: If you access the container using bash, make sure that you execute \"/opt/bitnami/scripts/postgresql/entrypoint.sh /bin/bash\" in order to avoid the error \"psql: local user with ID 1001} does not exist\"\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace postgresql svc/postgresql 5432:5432 &\n psql --host 127.0.0.1 -d postgres -p 5432\n\nWARNING: The configured password will be ignored on new installation in case when previous PostgreSQL release was deleted through the helm command. In that case, old PVC will have an old password, and setting it through helm won't take effect. Deleting persistent volumes (PVs) will solve the issue.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - primary.resources\n - readReplicas.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"auth\":{\"existingSecret\":\"postgresql-auth\",\"secretKeys\":{\"adminPasswordKey\":\"rootpassword\",\"userPasswordKey\":\"password\"},\"username\":\"bridge\"}}","version":"16.0.5"} Name:"postgresql" Namespace:"postgresql" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["auth:\n existingSecret: postgresql-auth\n username: bridge\n secretKeys:\n adminPasswordKey: rootpassword\n userPasswordKey: password\n"] Verify:false Version:"16.0.5" Wait:true WaitForJobs:false}: tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e5ef3dd3-ea4a-6a58-2862-fc1c9945e001 timestamp="2025-07-11T08:58:26.413+0200" +2025-07-11T08:58:26.413+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: postgresql] Start: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e5ef3dd3-ea4a-6a58-2862-fc1c9945e001 tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 @module=helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.413+0200" +2025-07-11T08:58:26.413+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: KubernetesData=map[] tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e5ef3dd3-ea4a-6a58-2862-fc1c9945e001 tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.413+0200" +2025-07-11T08:58:26.414+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @module=helm configPaths=[] tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e5ef3dd3-ea4a-6a58-2862-fc1c9945e001 tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.414+0200" +2025-07-11T08:58:26.414+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_req_id=e5ef3dd3-ea4a-6a58-2862-fc1c9945e001 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:26.414+0200" +2025-07-11T08:58:26.414+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: postgresql] Initial Values: Name=postgresql, Namespace=postgresql, Repository=https://charts.bitnami.com/bitnami, Repository_Username=, Repository_Password=, Chart=postgresql: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e5ef3dd3-ea4a-6a58-2862-fc1c9945e001 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:26.414+0200" +2025-07-11T08:58:26.414+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc0007b5560 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: tf_req_id=e5ef3dd3-ea4a-6a58-2862-fc1c9945e001 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:26.414+0200" +2025-07-11T08:58:26.540+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: longhorn] Got chart: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8e7b5820-70e5-cb3a-d80d-2d5e67e9d362 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 @module=helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:26.540+0200" +2025-07-11T08:58:26.540+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8e7b5820-70e5-cb3a-d80d-2d5e67e9d362 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 @module=helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:26.540+0200" +2025-07-11T08:58:26.540+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: longhorn] Release validated: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8e7b5820-70e5-cb3a-d80d-2d5e67e9d362 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:26.540+0200" +2025-07-11T08:58:26.540+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: longhorn] Done: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 @module=helm tf_req_id=8e7b5820-70e5-cb3a-d80d-2d5e67e9d362 tf_resource_type=helm_release timestamp="2025-07-11T08:58:26.540+0200" +2025-07-11T08:58:26.542+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:26.544+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=973016 +2025-07-11T08:58:26.544+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:26.726+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025-07-11T08:58:26.726+0200 [DEBUG] [PlanUpdateResource]: OAPI type="tftypes.Object[\"apiVersion\":tftypes.String, \"kind\":tftypes.String, \"metadata\":tftypes.Object[\"annotations\":tftypes.Map[tftypes.String], \"creationTimestamp\":tftypes.String, \"deletionGracePeriodSeconds\":tftypes.Number, \"deletionTimestamp\":tftypes.String, \"finalizers\":tftypes.List[tftypes.String], \"generateName\":tftypes.String, \"generation\":tftypes.Number, \"labels\":tftypes.Map[tftypes.String], \"managedFields\":tftypes.Tuple[tftypes.Object[\"apiVersion\":tftypes.String, \"fieldsType\":tftypes.String, \"fieldsV1\":tftypes.DynamicPseudoType, \"manager\":tftypes.String, \"operation\":tftypes.String, \"subresource\":tftypes.String, \"time\":tftypes.String]], \"name\":tftypes.String, \"namespace\":tftypes.String, \"ownerReferences\":tftypes.List[tftypes.Object[\"apiVersion\":tftypes.String, \"blockOwnerDeletion\":tftypes.Bool, \"controller\":tftypes.Bool, \"kind\":tftypes.String, \"name\":tftypes.String, \"uid\":tftypes.String]], \"resourceVersion\":tftypes.String, \"selfLink\":tftypes.String, \"uid\":tftypes.String], \"spec\":tftypes.Object[\"failurePolicy\":tftypes.String, \"valuesContent\":tftypes.String]]" +2025-07-11T08:58:26.726+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025-07-11T08:58:26.726+0200 [DEBUG] [PlanResourceChange]: +2025-07-11T08:58:26.726+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: morphed manifest= +2025-07-11T08:58:26.726+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | tftypes.Object["apiVersion":tftypes.String, "kind":tftypes.String, "metadata":tftypes.Object["annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String, "namespace":tftypes.String, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String], "spec":tftypes.Object["failurePolicy":tftypes.String, "valuesContent":tftypes.String]]<"apiVersion":tftypes.String<"helm.cattle.io/v1">, "kind":tftypes.String<"HelmChartConfig">, "metadata":tftypes.Object["annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String, "namespace":tftypes.String, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String]<"annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String<"rke2-ingress-nginx">, "namespace":tftypes.String<"kube-system">, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String>, "spec":tftypes.Object["failurePolicy":tftypes.String, "valuesContent":tftypes.String]<"failurePolicy":tftypes.String, "valuesContent":tftypes.String<"controller: +2025-07-11T08:58:26.726+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | config: +2025-07-11T08:58:26.726+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | use-forwarded-headers: "true" +2025-07-11T08:58:26.726+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | ">>> +2025-07-11T08:58:26.727+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: +2025-07-11T08:58:26.727+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025-07-11T08:58:26.726+0200 [DEBUG] [PlanResourceChange]: +2025-07-11T08:58:26.727+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: backfilled manifest= +2025-07-11T08:58:26.727+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | tftypes.Object["apiVersion":tftypes.String, "kind":tftypes.String, "metadata":tftypes.Object["annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String, "namespace":tftypes.String, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String], "spec":tftypes.Object["failurePolicy":tftypes.String, "valuesContent":tftypes.String]]<"apiVersion":tftypes.String<"helm.cattle.io/v1">, "kind":tftypes.String<"HelmChartConfig">, "metadata":tftypes.Object["annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String, "namespace":tftypes.String, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String]<"annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String<"rke2-ingress-nginx">, "namespace":tftypes.String<"kube-system">, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String>, "spec":tftypes.Object["failurePolicy":tftypes.String, "valuesContent":tftypes.String]<"failurePolicy":tftypes.String, "valuesContent":tftypes.String<"controller: +2025-07-11T08:58:26.727+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | config: +2025-07-11T08:58:26.727+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | use-forwarded-headers: "true" +2025-07-11T08:58:26.727+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | ">>> +2025-07-11T08:58:26.727+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: +2025-07-11T08:58:26.728+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:26.728+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_secret.mongodb_auth" references: [] +2025-07-11T08:58:26.729+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.helm_release.rabbitmq" references: [] +2025-07-11T08:58:26.730+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=972835 +2025-07-11T08:58:26.730+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:26.732+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:26 [INFO] Checking secret mongodb-auth +2025-07-11T08:58:26.732+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_op_type=request tf_http_req_method=GET tf_http_trans_id=5934f164-af2c-5e0c-38c5-3cfa84ddd7c6 Accept="application/json, */*" Host=rancher.bridge.fourlights.dev tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/mongodb/secrets/mongodb-auth @module=kubernetes.Kubernetes Accept-Encoding=gzip new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" User-Agent="HashiCorp/1.0 Terraform/1.12.1" timestamp="2025-07-11T08:58:26.732+0200" +2025-07-11T08:58:26.734+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000510380 Settings:0xc000753440 RegistryClient:0xc0004e5600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 timestamp="2025-07-11T08:58:26.734+0200" +2025-07-11T08:58:26.735+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"rabbitmq" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"rabbitmq" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"4.0.4","chart":"rabbitmq","first_deployed":1732607998,"last_deployed":1752215414,"name":"rabbitmq","namespace":"rabbitmq","notes":"CHART NAME: rabbitmq\nCHART VERSION: 15.1.0\nAPP VERSION: 4.0.4** Please be patient while the chart is being deployed **\n\nCredentials:\n echo \"Username : user\"\n echo \"Password : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-password}\" | base64 -d)\"\n echo \"ErLang Cookie : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-erlang-cookie}\" | base64 -d)\"\n\nNote that the credentials are saved in persistent volume claims and will not be changed upon upgrade or reinstallation unless the persistent volume claim has been deleted. If this is not the first installation of this chart, the credentials may not be valid.\nThis is applicable when no passwords are set and therefore the random password is autogenerated. In case of using a fixed password, you should specify it when upgrading.\nMore information about the credentials may be found at https://docs.bitnami.com/general/how-to/troubleshoot-helm-chart-issues/#credential-errors-while-upgrading-chart-releases.\n\nRabbitMQ can be accessed within the cluster on port 5672 at rabbitmq.rabbitmq.svc.cluster.local\n\nTo access for outside the cluster, perform the following steps:\n\nTo Access the RabbitMQ AMQP port:\n\n1. Create a port-forward to the AMQP port:\n\n kubectl port-forward --namespace rabbitmq svc/rabbitmq 5672:5672 &\n echo \"URL : amqp://127.0.0.1:5672/\"\n\n2. Access RabbitMQ using using the obtained URL.\n\nTo Access the RabbitMQ Management interface:\n\n1. Get the RabbitMQ Management URL and associate its hostname to your cluster external IP:\n\n export CLUSTER_IP=$(minikube ip) # On Minikube. Use: `kubectl cluster-info` on others K8s clusters\n echo \"RabbitMQ Management: http://rabbitmq.local/\"\n echo \"$CLUSTER_IP rabbitmq.local\" | sudo tee -a /etc/hosts\n\n2. Open a browser and access RabbitMQ Management using the obtained URL.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"auth\":{\"password\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"kubernetes.io/ingress.class\":\"nginx\"},\"enabled\":true,\"hostname\":\"rabbitmq.local\",\"ingressClassName\":\"nginx\",\"tls\":false},\"persistence\":{\"size\":\"4Gi\"},\"replicaCount\":1}","version":"15.1.0"} Name:"rabbitmq" Namespace:"rabbitmq" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"replicaCount","type":"","value":"1"},{"name":"persistence.size","type":"","value":"4Gi"}] SetList: SetSensitive:[{"name":"auth.password","type":,"value":"QA3UNmEGovybKcT415K6"}] SkipCrds:false Status:"deployed" Timeout:300 Values:["ingress:\n enabled: true\n tls: false\n ingressClassName: nginx\n hostname: rabbitmq.local\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n"] Verify:false Version:"15.1.0" Wait:true WaitForJobs:false}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.735+0200" +2025-07-11T08:58:26.735+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: rabbitmq] Start: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.735+0200" +2025-07-11T08:58:26.735+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f timestamp="2025-07-11T08:58:26.735+0200" +2025-07-11T08:58:26.735+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 configPaths=[] tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.735+0200" +2025-07-11T08:58:26.735+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f @module=helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.735+0200" +2025-07-11T08:58:26.735+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: rabbitmq getRelease post action created: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource timestamp="2025-07-11T08:58:26.735+0200" +2025-07-11T08:58:26.876+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"mongodb-auth","namespace":"mongodb","uid":"ca8368a6-42ac-4451-9d7b-003bd0dedf8b","resourceVersion":"2012002","creationTimestamp":"2024-11-29T19:03:50Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2024-11-29T19:14:42Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:mongodb-replica-set-key":{},"f:mongodb-root-password":{}},"f:type":{}}}]},"data":{"mongodb-replica-set-key":"ejl1Y2xzcWZIN1l3cVpmTE9nNTg3bEN5UzV2aVFUdDhkQ21yWGFyNw==","mongodb-root-password":"RzJNNWNrMzlCWDY3SDdMMkRvQjVMcVJGeHZQMTJ2SUxKVnc2V05aUg=="},"type":"generic"} + Date="Fri, 11 Jul 2025 06:58:26 GMT" X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_code=200 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_res_status_reason="200 OK" @module=kubernetes.Kubernetes Audit-Id=f0571ada-3d2c-458c-97b0-e9ba20bb42f7 tf_http_res_version=HTTP/2.0 tf_http_trans_id=5934f164-af2c-5e0c-38c5-3cfa84ddd7c6 Content-Length=641 timestamp="2025-07-11T08:58:26.876+0200" +2025-07-11T08:58:26.877+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:26 [INFO] Reading secret mongodb-auth +2025-07-11T08:58:26.877+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=779ddbed-1788-1fef-f17c-f32725198e2c @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Host=rancher.bridge.fourlights.dev tf_http_op_type=request tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/mongodb/secrets/mongodb-auth @module=kubernetes.Kubernetes Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Accept-Encoding=gzip tf_http_req_method=GET tf_http_req_version=HTTP/1.1 Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" timestamp="2025-07-11T08:58:26.877+0200" +2025-07-11T08:58:26.999+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Api-Cattle-Auth=true @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"mongodb-auth","namespace":"mongodb","uid":"ca8368a6-42ac-4451-9d7b-003bd0dedf8b","resourceVersion":"2012002","creationTimestamp":"2024-11-29T19:03:50Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2024-11-29T19:14:42Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:mongodb-replica-set-key":{},"f:mongodb-root-password":{}},"f:type":{}}}]},"data":{"mongodb-replica-set-key":"ejl1Y2xzcWZIN1l3cVpmTE9nNTg3bEN5UzV2aVFUdDhkQ21yWGFyNw==","mongodb-root-password":"RzJNNWNrMzlCWDY3SDdMMkRvQjVMcVJGeHZQMTJ2SUxKVnc2V05aUg=="},"type":"generic"} + tf_http_res_status_code=200 Content-Length=641 Content-Type=application/json X-Content-Type-Options=nosniff tf_http_res_status_reason="200 OK" tf_http_trans_id=779ddbed-1788-1fef-f17c-f32725198e2c Audit-Id=5036a93a-ad68-4661-ba07-499ed475aa16 Date="Fri, 11 Jul 2025 06:58:26 GMT" X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_version=HTTP/2.0 timestamp="2025-07-11T08:58:26.999+0200" +2025-07-11T08:58:26.999+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:26 [INFO] Received secret: v1.ObjectMeta{Name:"mongodb-auth", GenerateName:"", Namespace:"mongodb", SelfLink:"", UID:"ca8368a6-42ac-4451-9d7b-003bd0dedf8b", ResourceVersion:"2012002", Generation:0, CreationTimestamp:time.Date(2024, time.November, 29, 20, 3, 50, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2024, time.November, 29, 20, 14, 42, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0011b4438), Subresource:""}}} +2025-07-11T08:58:27.002+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.mongodb.kubernetes_secret.mongodb_auth, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:58:27.003+0200 [DEBUG] ReferenceTransformer: "module.mongodb.helm_release.mongodb" references: [] +2025-07-11T08:58:27.003+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:27.005+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=972952 +2025-07-11T08:58:27.005+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:27.008+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc00075c380 Settings:0xc000577440 RegistryClient:0xc0003cbe80 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_rpc=ReadResource timestamp="2025-07-11T08:58:27.008+0200" +2025-07-11T08:58:27.009+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"mongodb" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"mongodb" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"8.0.3","chart":"mongodb","first_deployed":1732907685,"last_deployed":1752215413,"name":"mongodb","namespace":"mongodb","notes":"CHART NAME: mongodb\nCHART VERSION: 16.3.1\nAPP VERSION: 8.0.3\n\n** Please be patient while the chart is being deployed **\n\nMongoDB® can be accessed on the following DNS name(s) and ports from within your cluster:\n\n mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\n\nTo get the root password run:\n\n export MONGODB_ROOT_PASSWORD=$(kubectl get secret --namespace mongodb mongodb-auth -o jsonpath=\"{.data.mongodb-root-password}\" | base64 -d)\n\nTo connect to your database, create a MongoDB® client container:\n\n kubectl run --namespace mongodb mongodb-client --rm --tty -i --restart='Never' --env=\"MONGODB_ROOT_PASSWORD=$MONGODB_ROOT_PASSWORD\" --image docker.io/bitnami/mongodb:8.0.3-debian-12-r0 --command -- bash\n\nThen, run the following command:\n mongosh admin --host \"mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\" --authenticationDatabase admin -u $MONGODB_ROOT_USER -p $MONGODB_ROOT_PASSWORD\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - arbiter.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":3,"values":"{\"affinity\":{\"podAntiAffinity\":{\"requiredDuringSchedulingIgnoredDuringExecution\":[{\"labelSelector\":{\"matchLabels\":{\"app.kubernetes.io/component\":\"mongodb\"}},\"topologyKey\":\"kubernetes.io/hostname\"}]}},\"architecture\":\"replicaset\",\"auth\":{\"enabled\":true,\"existingSecret\":\"mongodb-auth\"},\"commonAnnotations\":{\"mongodb.com/timeouts\":\"true\"},\"livenessProbe\":{\"failureThreshold\":6,\"initialDelaySeconds\":60,\"periodSeconds\":20,\"timeoutSeconds\":15},\"mongodb\":{\"extraFlags\":[\"--oplogSizeMB=10240\",\"--setParameter=electionTimeoutMillis=10000\",\"--setParameter=heartbeatIntervalMillis=2000\",\"--setParameter=catchUpTimeoutMillis=30000\",\"--setParameter=catchUpTakeoverDelayMillis=30000\"]},\"readinessProbe\":{\"failureThreshold\":3,\"initialDelaySeconds\":30,\"periodSeconds\":10,\"successThreshold\":1,\"timeoutSeconds\":15},\"replicaCount\":3,\"resources\":{\"limits\":{\"cpu\":\"1000m\",\"memory\":\"1.5Gi\"},\"requests\":{\"cpu\":\"500m\",\"memory\":\"1Gi\"}},\"terminationGracePeriodSeconds\":300}","version":"16.3.1"} Name:"mongodb" Namespace:"mongodb" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["architecture: replicaset\nreplicaCount: 3\n\ncommonAnnotations:\n mongodb.com/timeouts: \"true\"\n\nmongodb:\n extraFlags:\n - \"--oplogSizeMB=10240\"\n - \"--setParameter=electionTimeoutMillis=10000\"\n - \"--setParameter=heartbeatIntervalMillis=2000\"\n - \"--setParameter=catchUpTimeoutMillis=30000\"\n - \"--setParameter=catchUpTakeoverDelayMillis=30000\"\n\n# More forgiving probe settings\nreadinessProbe:\n initialDelaySeconds: 30\n periodSeconds: 10\n timeoutSeconds: 15\n failureThreshold: 3\n successThreshold: 1\n\nlivenessProbe:\n initialDelaySeconds: 60\n periodSeconds: 20\n timeoutSeconds: 15\n failureThreshold: 6\n\n# Proper shutdown handling\nterminationGracePeriodSeconds: 300\n\n# Ensure pods are distributed across nodes\naffinity:\n podAntiAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n - labelSelector:\n matchLabels:\n app.kubernetes.io/component: mongodb\n topologyKey: kubernetes.io/hostname\n\nauth:\n enabled: true\n existingSecret: mongodb-auth\n\n \n\n \n\nresources:\n limits:\n cpu: 1000m\n memory: 1.5Gi\n requests:\n cpu: 500m\n memory: 1Gi\n"] Verify:false Version:"16.3.1" Wait:true WaitForJobs:true}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 tf_rpc=ReadResource timestamp="2025-07-11T08:58:27.008+0200" +2025-07-11T08:58:27.009+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: mongodb] Start: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release tf_rpc=ReadResource @module=helm timestamp="2025-07-11T08:58:27.008+0200" +2025-07-11T08:58:27.009+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa KubernetesData=map[] tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:27.008+0200" +2025-07-11T08:58:27.009+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release @module=helm configPaths=[] tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 timestamp="2025-07-11T08:58:27.009+0200" +2025-07-11T08:58:27.009+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:27.009+0200" +2025-07-11T08:58:27.009+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: mongodb getRelease post action created: tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:27.009+0200" +2025-07-11T08:58:27.819+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: mongodb getRelease post run: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:27.819+0200" +2025-07-11T08:58:27.819+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: mongodb getRelease completed: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 timestamp="2025-07-11T08:58:27.819+0200" +2025-07-11T08:58:27.819+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: mongodb] Done: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 timestamp="2025-07-11T08:58:27.819+0200" +2025-07-11T08:58:27.819+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: mongodb] Started: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa timestamp="2025-07-11T08:58:27.819+0200" +2025-07-11T08:58:27.819+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm KubernetesData=map[] timestamp="2025-07-11T08:58:27.819+0200" +2025-07-11T08:58:27.820+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @module=helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:27.819+0200" +2025-07-11T08:58:27.820+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_rpc=ReadResource timestamp="2025-07-11T08:58:27.819+0200" +2025-07-11T08:58:27.820+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: mongodb getRelease post action created: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm timestamp="2025-07-11T08:58:27.819+0200" +2025-07-11T08:58:27.833+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: rabbitmq getRelease post run: tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 @module=helm tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f timestamp="2025-07-11T08:58:27.833+0200" +2025-07-11T08:58:27.833+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: rabbitmq getRelease completed: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f timestamp="2025-07-11T08:58:27.833+0200" +2025-07-11T08:58:27.833+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: rabbitmq] Done: tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:27.833+0200" +2025-07-11T08:58:27.833+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: rabbitmq] Started: tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release tf_rpc=ReadResource @module=helm timestamp="2025-07-11T08:58:27.833+0200" +2025-07-11T08:58:27.833+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_resource_type=helm_release tf_rpc=ReadResource @module=helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:27.833+0200" +2025-07-11T08:58:27.833+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource tf_resource_type=helm_release timestamp="2025-07-11T08:58:27.833+0200" +2025-07-11T08:58:27.833+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm timestamp="2025-07-11T08:58:27.833+0200" +2025-07-11T08:58:27.833+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: rabbitmq getRelease post action created: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource timestamp="2025-07-11T08:58:27.833+0200" +2025-07-11T08:58:27.869+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: minio] Got chart: tf_req_id=e4a816c5-ebc7-0273-145c-7e27d5944e9d tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:27.869+0200" +2025-07-11T08:58:27.869+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e4a816c5-ebc7-0273-145c-7e27d5944e9d tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:27.869+0200" +2025-07-11T08:58:27.869+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: minio] Release validated: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_req_id=e4a816c5-ebc7-0273-145c-7e27d5944e9d timestamp="2025-07-11T08:58:27.869+0200" +2025-07-11T08:58:27.869+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: minio] Done: tf_req_id=e4a816c5-ebc7-0273-145c-7e27d5944e9d tf_resource_type=helm_release @module=helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:27.869+0200" +2025-07-11T08:58:27.871+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:27.871+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_namespace.tenant" references: [] +2025-07-11T08:58:27.874+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=972920 +2025-07-11T08:58:27.874+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:27.875+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:27 [INFO] Checking namespace 365zon +2025-07-11T08:58:27.876+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_op_type=request tf_http_req_body="" tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET tf_http_trans_id=e829cb83-51ab-5a5b-710c-12fc4b959f09 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon @module=kubernetes.Kubernetes Accept-Encoding=gzip timestamp="2025-07-11T08:58:27.876+0200" +2025-07-11T08:58:28.269+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes X-Content-Type-Options=nosniff tf_http_op_type=response tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" tf_http_trans_id=e829cb83-51ab-5a5b-710c-12fc4b959f09 X-Api-Cattle-Auth=true Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:58:28 GMT" + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"365zon","uid":"20230e1f-afa5-430b-9720-e3668166b470","resourceVersion":"109671116","creationTimestamp":"2025-07-11T06:29:49Z","labels":{"kubernetes.io/metadata.name":"365zon"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:51Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:51Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:49Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 Audit-Id=4da141ea-b198-44f2-914b-b9a39cde5092 Content-Length=1223 Content-Type=application/json new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_version=HTTP/2.0 timestamp="2025-07-11T08:58:28.269+0200" +2025-07-11T08:58:28.269+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:28 [INFO] Namespace 365zon exists +2025-07-11T08:58:28.269+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:28 [INFO] Reading namespace 365zon +2025-07-11T08:58:28.269+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @module=kubernetes.Kubernetes Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=ca3c7323-d8cf-5ce4-cfd5-abc4abc4ca61 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_op_type=request tf_http_req_body="" Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_version=HTTP/1.1 Host=rancher.bridge.fourlights.dev tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon timestamp="2025-07-11T08:58:28.269+0200" +2025-07-11T08:58:28.381+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: mongodb getRelease post run: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.381+0200" +2025-07-11T08:58:28.381+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: mongodb getRelease completed: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.381+0200" +2025-07-11T08:58:28.381+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"8.0.3","chart":"mongodb","first_deployed":1732907685,"last_deployed":1752215413,"name":"mongodb","namespace":"mongodb","notes":"CHART NAME: mongodb\nCHART VERSION: 16.3.1\nAPP VERSION: 8.0.3\n\n** Please be patient while the chart is being deployed **\n\nMongoDB® can be accessed on the following DNS name(s) and ports from within your cluster:\n\n mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\n\nTo get the root password run:\n\n export MONGODB_ROOT_PASSWORD=$(kubectl get secret --namespace mongodb mongodb-auth -o jsonpath=\"{.data.mongodb-root-password}\" | base64 -d)\n\nTo connect to your database, create a MongoDB® client container:\n\n kubectl run --namespace mongodb mongodb-client --rm --tty -i --restart='Never' --env=\"MONGODB_ROOT_PASSWORD=$MONGODB_ROOT_PASSWORD\" --image docker.io/bitnami/mongodb:8.0.3-debian-12-r0 --command -- bash\n\nThen, run the following command:\n mongosh admin --host \"mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\" --authenticationDatabase admin -u $MONGODB_ROOT_USER -p $MONGODB_ROOT_PASSWORD\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - arbiter.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":3,"values":"{\"affinity\":{\"podAntiAffinity\":{\"requiredDuringSchedulingIgnoredDuringExecution\":[{\"labelSelector\":{\"matchLabels\":{\"app.kubernetes.io/component\":\"mongodb\"}},\"topologyKey\":\"kubernetes.io/hostname\"}]}},\"architecture\":\"replicaset\",\"auth\":{\"enabled\":true,\"existingSecret\":\"mongodb-auth\"},\"commonAnnotations\":{\"mongodb.com/timeouts\":\"true\"},\"livenessProbe\":{\"failureThreshold\":6,\"initialDelaySeconds\":60,\"periodSeconds\":20,\"timeoutSeconds\":15},\"mongodb\":{\"extraFlags\":[\"--oplogSizeMB=10240\",\"--setParameter=electionTimeoutMillis=10000\",\"--setParameter=heartbeatIntervalMillis=2000\",\"--setParameter=catchUpTimeoutMillis=30000\",\"--setParameter=catchUpTakeoverDelayMillis=30000\"]},\"readinessProbe\":{\"failureThreshold\":3,\"initialDelaySeconds\":30,\"periodSeconds\":10,\"successThreshold\":1,\"timeoutSeconds\":15},\"replicaCount\":3,\"resources\":{\"limits\":{\"cpu\":\"1000m\",\"memory\":\"1.5Gi\"},\"requests\":{\"cpu\":\"500m\",\"memory\":\"1Gi\"}},\"terminationGracePeriodSeconds\":300}","version":"16.3.1"}: @module=helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 timestamp="2025-07-11T08:58:28.381+0200" +2025-07-11T08:58:28.381+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=wait tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa timestamp="2025-07-11T08:58:28.381+0200" +2025-07-11T08:58:28.381+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=force_update tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.381+0200" +2025-07-11T08:58:28.381+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @module=sdk.framework tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=verify tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:28.381+0200" +2025-07-11T08:58:28.381+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_attribute_path=version tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:28.381+0200" +2025-07-11T08:58:28.381+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=namespace tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:28.381+0200" +2025-07-11T08:58:28.381+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=skip_crds tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:28.381+0200" +2025-07-11T08:58:28.381+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release tf_attribute_path=values[0] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:28.381+0200" +2025-07-11T08:58:28.381+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=values tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.381+0200" +2025-07-11T08:58:28.381+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=pass_credentials tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_rpc=ReadResource @module=sdk.framework tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.381+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=wait_for_jobs tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:28.381+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=dependency_update tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=render_subchart_notes tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=reuse_values tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=replace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=reset_values tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=chart tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_attribute_path=disable_crd_hooks tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=max_history tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=timeout tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=lint tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_rpc=ReadResource tf_attribute_path=atomic tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa @module=sdk.framework tf_attribute_path=repository tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=status tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=disable_openapi_validation tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=create_namespace tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.last_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_attribute_path=metadata.namespace tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.app_version tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.revision tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.notes tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.chart tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa @module=sdk.framework tf_attribute_path=metadata.values timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.name tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa @module=sdk.framework tf_attribute_path=metadata.first_deployed tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.382+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.383+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=cleanup_on_fail tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.383+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=disable_webhooks tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.383+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=3111f880-2c1b-c81f-63bc-f8635586c3fa tf_resource_type=helm_release tf_attribute_path=recreate_pods tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.382+0200" +2025-07-11T08:58:28.383+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:28.385+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc00075c380 Settings:0xc000577440 RegistryClient:0xc0003cbe80 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e0a54bbc-b7c9-6f4d-0edc-4d395df06f61 tf_resource_type=helm_release tf_rpc=ValidateResourceConfig @module=helm timestamp="2025-07-11T08:58:28.385+0200" +2025-07-11T08:58:28.387+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc00075c380 Settings:0xc000577440 RegistryClient:0xc0003cbe80 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=959752a1-e8e4-9ab0-156c-c79376007fef timestamp="2025-07-11T08:58:28.387+0200" +2025-07-11T08:58:28.391+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"mongodb" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"mongodb" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"8.0.3","chart":"mongodb","first_deployed":1732907685,"last_deployed":1752215413,"name":"mongodb","namespace":"mongodb","notes":"CHART NAME: mongodb\nCHART VERSION: 16.3.1\nAPP VERSION: 8.0.3\n\n** Please be patient while the chart is being deployed **\n\nMongoDB® can be accessed on the following DNS name(s) and ports from within your cluster:\n\n mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\n\nTo get the root password run:\n\n export MONGODB_ROOT_PASSWORD=$(kubectl get secret --namespace mongodb mongodb-auth -o jsonpath=\"{.data.mongodb-root-password}\" | base64 -d)\n\nTo connect to your database, create a MongoDB® client container:\n\n kubectl run --namespace mongodb mongodb-client --rm --tty -i --restart='Never' --env=\"MONGODB_ROOT_PASSWORD=$MONGODB_ROOT_PASSWORD\" --image docker.io/bitnami/mongodb:8.0.3-debian-12-r0 --command -- bash\n\nThen, run the following command:\n mongosh admin --host \"mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\" --authenticationDatabase admin -u $MONGODB_ROOT_USER -p $MONGODB_ROOT_PASSWORD\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - arbiter.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":3,"values":"{\"affinity\":{\"podAntiAffinity\":{\"requiredDuringSchedulingIgnoredDuringExecution\":[{\"labelSelector\":{\"matchLabels\":{\"app.kubernetes.io/component\":\"mongodb\"}},\"topologyKey\":\"kubernetes.io/hostname\"}]}},\"architecture\":\"replicaset\",\"auth\":{\"enabled\":true,\"existingSecret\":\"mongodb-auth\"},\"commonAnnotations\":{\"mongodb.com/timeouts\":\"true\"},\"livenessProbe\":{\"failureThreshold\":6,\"initialDelaySeconds\":60,\"periodSeconds\":20,\"timeoutSeconds\":15},\"mongodb\":{\"extraFlags\":[\"--oplogSizeMB=10240\",\"--setParameter=electionTimeoutMillis=10000\",\"--setParameter=heartbeatIntervalMillis=2000\",\"--setParameter=catchUpTimeoutMillis=30000\",\"--setParameter=catchUpTakeoverDelayMillis=30000\"]},\"readinessProbe\":{\"failureThreshold\":3,\"initialDelaySeconds\":30,\"periodSeconds\":10,\"successThreshold\":1,\"timeoutSeconds\":15},\"replicaCount\":3,\"resources\":{\"limits\":{\"cpu\":\"1000m\",\"memory\":\"1.5Gi\"},\"requests\":{\"cpu\":\"500m\",\"memory\":\"1Gi\"}},\"terminationGracePeriodSeconds\":300}","version":"16.3.1"} Name:"mongodb" Namespace:"mongodb" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["architecture: replicaset\nreplicaCount: 3\n\ncommonAnnotations:\n mongodb.com/timeouts: \"true\"\n\nmongodb:\n extraFlags:\n - \"--oplogSizeMB=10240\"\n - \"--setParameter=electionTimeoutMillis=10000\"\n - \"--setParameter=heartbeatIntervalMillis=2000\"\n - \"--setParameter=catchUpTimeoutMillis=30000\"\n - \"--setParameter=catchUpTakeoverDelayMillis=30000\"\n\n# More forgiving probe settings\nreadinessProbe:\n initialDelaySeconds: 30\n periodSeconds: 10\n timeoutSeconds: 15\n failureThreshold: 3\n successThreshold: 1\n\nlivenessProbe:\n initialDelaySeconds: 60\n periodSeconds: 20\n timeoutSeconds: 15\n failureThreshold: 6\n\n# Proper shutdown handling\nterminationGracePeriodSeconds: 300\n\n# Ensure pods are distributed across nodes\naffinity:\n podAntiAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n - labelSelector:\n matchLabels:\n app.kubernetes.io/component: mongodb\n topologyKey: kubernetes.io/hostname\n\nauth:\n enabled: true\n existingSecret: mongodb-auth\n\n \n\n \n\nresources:\n limits:\n cpu: 1000m\n memory: 1.5Gi\n requests:\n cpu: 500m\n memory: 1Gi\n"] Verify:false Version:"16.3.1" Wait:true WaitForJobs:true}: tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=959752a1-e8e4-9ab0-156c-c79376007fef @module=helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.391+0200" +2025-07-11T08:58:28.391+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"mongodb" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"mongodb" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"8.0.3","chart":"mongodb","first_deployed":1732907685,"last_deployed":1752215413,"name":"mongodb","namespace":"mongodb","notes":"CHART NAME: mongodb\nCHART VERSION: 16.3.1\nAPP VERSION: 8.0.3\n\n** Please be patient while the chart is being deployed **\n\nMongoDB® can be accessed on the following DNS name(s) and ports from within your cluster:\n\n mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\n\nTo get the root password run:\n\n export MONGODB_ROOT_PASSWORD=$(kubectl get secret --namespace mongodb mongodb-auth -o jsonpath=\"{.data.mongodb-root-password}\" | base64 -d)\n\nTo connect to your database, create a MongoDB® client container:\n\n kubectl run --namespace mongodb mongodb-client --rm --tty -i --restart='Never' --env=\"MONGODB_ROOT_PASSWORD=$MONGODB_ROOT_PASSWORD\" --image docker.io/bitnami/mongodb:8.0.3-debian-12-r0 --command -- bash\n\nThen, run the following command:\n mongosh admin --host \"mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\" --authenticationDatabase admin -u $MONGODB_ROOT_USER -p $MONGODB_ROOT_PASSWORD\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - arbiter.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":3,"values":"{\"affinity\":{\"podAntiAffinity\":{\"requiredDuringSchedulingIgnoredDuringExecution\":[{\"labelSelector\":{\"matchLabels\":{\"app.kubernetes.io/component\":\"mongodb\"}},\"topologyKey\":\"kubernetes.io/hostname\"}]}},\"architecture\":\"replicaset\",\"auth\":{\"enabled\":true,\"existingSecret\":\"mongodb-auth\"},\"commonAnnotations\":{\"mongodb.com/timeouts\":\"true\"},\"livenessProbe\":{\"failureThreshold\":6,\"initialDelaySeconds\":60,\"periodSeconds\":20,\"timeoutSeconds\":15},\"mongodb\":{\"extraFlags\":[\"--oplogSizeMB=10240\",\"--setParameter=electionTimeoutMillis=10000\",\"--setParameter=heartbeatIntervalMillis=2000\",\"--setParameter=catchUpTimeoutMillis=30000\",\"--setParameter=catchUpTakeoverDelayMillis=30000\"]},\"readinessProbe\":{\"failureThreshold\":3,\"initialDelaySeconds\":30,\"periodSeconds\":10,\"successThreshold\":1,\"timeoutSeconds\":15},\"replicaCount\":3,\"resources\":{\"limits\":{\"cpu\":\"1000m\",\"memory\":\"1.5Gi\"},\"requests\":{\"cpu\":\"500m\",\"memory\":\"1Gi\"}},\"terminationGracePeriodSeconds\":300}","version":"16.3.1"} Name:"mongodb" Namespace:"mongodb" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["architecture: replicaset\nreplicaCount: 3\n\ncommonAnnotations:\n mongodb.com/timeouts: \"true\"\n\nmongodb:\n extraFlags:\n - \"--oplogSizeMB=10240\"\n - \"--setParameter=electionTimeoutMillis=10000\"\n - \"--setParameter=heartbeatIntervalMillis=2000\"\n - \"--setParameter=catchUpTimeoutMillis=30000\"\n - \"--setParameter=catchUpTakeoverDelayMillis=30000\"\n\n# More forgiving probe settings\nreadinessProbe:\n initialDelaySeconds: 30\n periodSeconds: 10\n timeoutSeconds: 15\n failureThreshold: 3\n successThreshold: 1\n\nlivenessProbe:\n initialDelaySeconds: 60\n periodSeconds: 20\n timeoutSeconds: 15\n failureThreshold: 6\n\n# Proper shutdown handling\nterminationGracePeriodSeconds: 300\n\n# Ensure pods are distributed across nodes\naffinity:\n podAntiAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n - labelSelector:\n matchLabels:\n app.kubernetes.io/component: mongodb\n topologyKey: kubernetes.io/hostname\n\nauth:\n enabled: true\n existingSecret: mongodb-auth\n\n \n\n \n\nresources:\n limits:\n cpu: 1000m\n memory: 1.5Gi\n requests:\n cpu: 500m\n memory: 1Gi\n"] Verify:false Version:"16.3.1" Wait:true WaitForJobs:true}: tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=959752a1-e8e4-9ab0-156c-c79376007fef timestamp="2025-07-11T08:58:28.391+0200" +2025-07-11T08:58:28.391+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: mongodb] Start: tf_req_id=959752a1-e8e4-9ab0-156c-c79376007fef tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:28.391+0200" +2025-07-11T08:58:28.391+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=helm tf_req_id=959752a1-e8e4-9ab0-156c-c79376007fef tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:28.391+0200" +2025-07-11T08:58:28.391+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm configPaths=[] tf_req_id=959752a1-e8e4-9ab0-156c-c79376007fef tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:28.391+0200" +2025-07-11T08:58:28.391+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_req_id=959752a1-e8e4-9ab0-156c-c79376007fef tf_rpc=PlanResourceChange @module=helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:28.391+0200" +2025-07-11T08:58:28.391+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: mongodb] Initial Values: Name=mongodb, Namespace=mongodb, Repository=oci://registry-1.docker.io/bitnamicharts, Repository_Username=, Repository_Password=, Chart=mongodb: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=959752a1-e8e4-9ab0-156c-c79376007fef tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:28.391+0200" +2025-07-11T08:58:28.391+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc000577560 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: tf_req_id=959752a1-e8e4-9ab0-156c-c79376007fef tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 @module=helm timestamp="2025-07-11T08:58:28.391+0200" +2025-07-11T08:58:28.419+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes Content-Length=1223 X-Api-Cattle-Auth=true new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response tf_http_res_status_code=200 tf_http_trans_id=ca3c7323-d8cf-5ce4-cfd5-abc4abc4ca61 X-Content-Type-Options=nosniff @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=c43c8904-9210-4e19-bc85-8092bdc742bc Date="Fri, 11 Jul 2025 06:58:28 GMT" + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"365zon","uid":"20230e1f-afa5-430b-9720-e3668166b470","resourceVersion":"109671116","creationTimestamp":"2025-07-11T06:29:49Z","labels":{"kubernetes.io/metadata.name":"365zon"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:51Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:51Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:49Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_reason="200 OK" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 timestamp="2025-07-11T08:58:28.419+0200" +2025-07-11T08:58:28.419+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:28 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"365zon", GenerateName:"", Namespace:"", SelfLink:"", UID:"20230e1f-afa5-430b-9720-e3668166b470", ResourceVersion:"109671116", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 49, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"365zon"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:51Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:51Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 49, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000c4b1d0), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 50, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000c4b200), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:58:28.421+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.kubernetes_namespace.tenant, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute +2025-07-11T08:58:28.421+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings" references: [] +2025-07-11T08:58:28.423+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:28 [INFO] Checking secret connection-strings +2025-07-11T08:58:28.423+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept-Encoding=gzip tf_http_req_body="" tf_http_req_version=HTTP/1.1 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/connection-strings @module=kubernetes.Kubernetes Accept="application/json, */*" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_trans_id=a92c5516-ca69-3e2c-8773-ecc8133f0780 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 timestamp="2025-07-11T08:58:28.423+0200" +2025-07-11T08:58:28.502+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Content-Length=1039 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 tf_http_trans_id=a92c5516-ca69-3e2c-8773-ecc8133f0780 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=b8deea9b-c860-452c-8abd-77420ceb22a3 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"connection-strings","namespace":"365zon","uid":"47f6eb88-7be7-4756-ac01-6857de56e2e4","resourceVersion":"109671119","creationTimestamp":"2025-07-11T06:29:50Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:ConnectionStrings__DocumentDb":{},"f:ConnectionStrings__ServiceBus":{}},"f:type":{}}}]},"data":{"ConnectionStrings__DocumentDb":"bW9uZ29kYjovL3Jvb3Q6RzJNNWNrMzlCWDY3SDdMMkRvQjVMcVJGeHZQMTJ2SUxKVnc2V05aUkBtb25nb2RiLTAubW9uZ29kYi1oZWFkbGVzcy5tb25nb2RiLnN2Yy5jbHVzdGVyLmxvY2FsOjI3MDE3LG1vbmdvZGItMS5tb25nb2RiLWhlYWRsZXNzLm1vbmdvZGIuc3ZjLmNsdXN0ZXIubG9jYWw6MjcwMTcsbW9uZ29kYi0yLm1vbmdvZGItaGVhZGxlc3MubW9uZ29kYi5zdmMuY2x1c3Rlci5sb2NhbDoyNzAxNy9hZG1pbj9yZXBsaWNhU2V0PXJzMCZhdXRoU291cmNlPWFkbWlu","ConnectionStrings__ServiceBus":"cmFiYml0bXE6Ly91c2VyOlFBM1VObUVHb3Z5YktjVDQxNUs2QHJhYmJpdG1xLWhlYWRsZXNzLnJhYmJpdG1xLnN2Yy5jbHVzdGVyLmxvY2FsOjU2NzIv"},"type":"Opaque"} + @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:58:28 GMT" X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_op_type=response Content-Type=application/json X-Content-Type-Options=nosniff timestamp="2025-07-11T08:58:28.502+0200" +2025-07-11T08:58:28.502+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:28 [INFO] Reading secret connection-strings +2025-07-11T08:58:28.502+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_method=GET tf_http_trans_id=d94a1adf-dfdc-3b6d-c39c-e97a78ae6d3a Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/connection-strings tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Accept="application/json, */*" tf_http_req_body="" Accept-Encoding=gzip new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request timestamp="2025-07-11T08:58:28.502+0200" +2025-07-11T08:58:28.520+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: rabbitmq getRelease post run: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.520+0200" +2025-07-11T08:58:28.520+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: rabbitmq getRelease completed: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 timestamp="2025-07-11T08:58:28.520+0200" +2025-07-11T08:58:28.520+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"4.0.4","chart":"rabbitmq","first_deployed":1732607998,"last_deployed":1752215414,"name":"rabbitmq","namespace":"rabbitmq","notes":"CHART NAME: rabbitmq\nCHART VERSION: 15.1.0\nAPP VERSION: 4.0.4** Please be patient while the chart is being deployed **\n\nCredentials:\n echo \"Username : user\"\n echo \"Password : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-password}\" | base64 -d)\"\n echo \"ErLang Cookie : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-erlang-cookie}\" | base64 -d)\"\n\nNote that the credentials are saved in persistent volume claims and will not be changed upon upgrade or reinstallation unless the persistent volume claim has been deleted. If this is not the first installation of this chart, the credentials may not be valid.\nThis is applicable when no passwords are set and therefore the random password is autogenerated. In case of using a fixed password, you should specify it when upgrading.\nMore information about the credentials may be found at https://docs.bitnami.com/general/how-to/troubleshoot-helm-chart-issues/#credential-errors-while-upgrading-chart-releases.\n\nRabbitMQ can be accessed within the cluster on port 5672 at rabbitmq.rabbitmq.svc.cluster.local\n\nTo access for outside the cluster, perform the following steps:\n\nTo Access the RabbitMQ AMQP port:\n\n1. Create a port-forward to the AMQP port:\n\n kubectl port-forward --namespace rabbitmq svc/rabbitmq 5672:5672 &\n echo \"URL : amqp://127.0.0.1:5672/\"\n\n2. Access RabbitMQ using using the obtained URL.\n\nTo Access the RabbitMQ Management interface:\n\n1. Get the RabbitMQ Management URL and associate its hostname to your cluster external IP:\n\n export CLUSTER_IP=$(minikube ip) # On Minikube. Use: `kubectl cluster-info` on others K8s clusters\n echo \"RabbitMQ Management: http://rabbitmq.local/\"\n echo \"$CLUSTER_IP rabbitmq.local\" | sudo tee -a /etc/hosts\n\n2. Open a browser and access RabbitMQ Management using the obtained URL.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"auth\":{\"password\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"kubernetes.io/ingress.class\":\"nginx\"},\"enabled\":true,\"hostname\":\"rabbitmq.local\",\"ingressClassName\":\"nginx\",\"tls\":false},\"persistence\":{\"size\":\"4Gi\"},\"replicaCount\":1}","version":"15.1.0"}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.520+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=repository tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=cleanup_on_fail tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=chart tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=timeout tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=wait_for_jobs tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=skip_crds timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=atomic tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=reset_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=version tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.revision tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.chart tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.notes tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_attribute_path=metadata.values tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.namespace tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.app_version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=metadata.first_deployed tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=metadata.last_deployed @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.version tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.name tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_attribute_path=max_history tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=status tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=create_namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=namespace tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=render_subchart_notes tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_attribute_path=id tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set_sensitive[0].name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.521+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource tf_attribute_path=set_sensitive[0].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set_sensitive[0] tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set_sensitive tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.521+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=force_update tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=disable_openapi_validation tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=disable_webhooks tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=dependency_update tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=wait tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=replace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=recreate_pods tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=pass_credentials tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=verify tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=values[0] tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=values tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=disable_crd_hooks tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[0].name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set[0].type tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=set[0].value tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[0] tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=set[1].name tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set[1].type tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[1].value tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[1] tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=reuse_values tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.522+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=lint tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=25757ec0-2203-465a-9327-f7b9c8d8027f tf_resource_type=helm_release @module=sdk.framework timestamp="2025-07-11T08:58:28.522+0200" +2025-07-11T08:58:28.524+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:28.525+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000510380 Settings:0xc000753440 RegistryClient:0xc0004e5600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ValidateResourceConfig @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_req_id=7d59d74f-fadb-3370-f4a1-eca7898ab161 timestamp="2025-07-11T08:58:28.525+0200" +2025-07-11T08:58:28.527+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000510380 Settings:0xc000753440 RegistryClient:0xc0004e5600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=96423073-bcc4-d598-e526-50088b8b8669 timestamp="2025-07-11T08:58:28.527+0200" +2025-07-11T08:58:28.532+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"rabbitmq" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"rabbitmq" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"4.0.4","chart":"rabbitmq","first_deployed":1732607998,"last_deployed":1752215414,"name":"rabbitmq","namespace":"rabbitmq","notes":"CHART NAME: rabbitmq\nCHART VERSION: 15.1.0\nAPP VERSION: 4.0.4** Please be patient while the chart is being deployed **\n\nCredentials:\n echo \"Username : user\"\n echo \"Password : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-password}\" | base64 -d)\"\n echo \"ErLang Cookie : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-erlang-cookie}\" | base64 -d)\"\n\nNote that the credentials are saved in persistent volume claims and will not be changed upon upgrade or reinstallation unless the persistent volume claim has been deleted. If this is not the first installation of this chart, the credentials may not be valid.\nThis is applicable when no passwords are set and therefore the random password is autogenerated. In case of using a fixed password, you should specify it when upgrading.\nMore information about the credentials may be found at https://docs.bitnami.com/general/how-to/troubleshoot-helm-chart-issues/#credential-errors-while-upgrading-chart-releases.\n\nRabbitMQ can be accessed within the cluster on port 5672 at rabbitmq.rabbitmq.svc.cluster.local\n\nTo access for outside the cluster, perform the following steps:\n\nTo Access the RabbitMQ AMQP port:\n\n1. Create a port-forward to the AMQP port:\n\n kubectl port-forward --namespace rabbitmq svc/rabbitmq 5672:5672 &\n echo \"URL : amqp://127.0.0.1:5672/\"\n\n2. Access RabbitMQ using using the obtained URL.\n\nTo Access the RabbitMQ Management interface:\n\n1. Get the RabbitMQ Management URL and associate its hostname to your cluster external IP:\n\n export CLUSTER_IP=$(minikube ip) # On Minikube. Use: `kubectl cluster-info` on others K8s clusters\n echo \"RabbitMQ Management: http://rabbitmq.local/\"\n echo \"$CLUSTER_IP rabbitmq.local\" | sudo tee -a /etc/hosts\n\n2. Open a browser and access RabbitMQ Management using the obtained URL.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"auth\":{\"password\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"kubernetes.io/ingress.class\":\"nginx\"},\"enabled\":true,\"hostname\":\"rabbitmq.local\",\"ingressClassName\":\"nginx\",\"tls\":false},\"persistence\":{\"size\":\"4Gi\"},\"replicaCount\":1}","version":"15.1.0"} Name:"rabbitmq" Namespace:"rabbitmq" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"replicaCount","type":"","value":"1"},{"name":"persistence.size","type":"","value":"4Gi"}] SetList: SetSensitive:[{"name":"auth.password","type":,"value":"QA3UNmEGovybKcT415K6"}] SkipCrds:false Status:"deployed" Timeout:300 Values:["ingress:\n enabled: true\n tls: false\n ingressClassName: nginx\n hostname: rabbitmq.local\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n"] Verify:false Version:"15.1.0" Wait:true WaitForJobs:false}: tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm tf_req_id=96423073-bcc4-d598-e526-50088b8b8669 timestamp="2025-07-11T08:58:28.532+0200" +2025-07-11T08:58:28.532+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"rabbitmq" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"rabbitmq" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"4.0.4","chart":"rabbitmq","first_deployed":1732607998,"last_deployed":1752215414,"name":"rabbitmq","namespace":"rabbitmq","notes":"CHART NAME: rabbitmq\nCHART VERSION: 15.1.0\nAPP VERSION: 4.0.4** Please be patient while the chart is being deployed **\n\nCredentials:\n echo \"Username : user\"\n echo \"Password : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-password}\" | base64 -d)\"\n echo \"ErLang Cookie : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-erlang-cookie}\" | base64 -d)\"\n\nNote that the credentials are saved in persistent volume claims and will not be changed upon upgrade or reinstallation unless the persistent volume claim has been deleted. If this is not the first installation of this chart, the credentials may not be valid.\nThis is applicable when no passwords are set and therefore the random password is autogenerated. In case of using a fixed password, you should specify it when upgrading.\nMore information about the credentials may be found at https://docs.bitnami.com/general/how-to/troubleshoot-helm-chart-issues/#credential-errors-while-upgrading-chart-releases.\n\nRabbitMQ can be accessed within the cluster on port 5672 at rabbitmq.rabbitmq.svc.cluster.local\n\nTo access for outside the cluster, perform the following steps:\n\nTo Access the RabbitMQ AMQP port:\n\n1. Create a port-forward to the AMQP port:\n\n kubectl port-forward --namespace rabbitmq svc/rabbitmq 5672:5672 &\n echo \"URL : amqp://127.0.0.1:5672/\"\n\n2. Access RabbitMQ using using the obtained URL.\n\nTo Access the RabbitMQ Management interface:\n\n1. Get the RabbitMQ Management URL and associate its hostname to your cluster external IP:\n\n export CLUSTER_IP=$(minikube ip) # On Minikube. Use: `kubectl cluster-info` on others K8s clusters\n echo \"RabbitMQ Management: http://rabbitmq.local/\"\n echo \"$CLUSTER_IP rabbitmq.local\" | sudo tee -a /etc/hosts\n\n2. Open a browser and access RabbitMQ Management using the obtained URL.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"auth\":{\"password\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"kubernetes.io/ingress.class\":\"nginx\"},\"enabled\":true,\"hostname\":\"rabbitmq.local\",\"ingressClassName\":\"nginx\",\"tls\":false},\"persistence\":{\"size\":\"4Gi\"},\"replicaCount\":1}","version":"15.1.0"} Name:"rabbitmq" Namespace:"rabbitmq" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"replicaCount","type":"","value":"1"},{"name":"persistence.size","type":"","value":"4Gi"}] SetList: SetSensitive:[{"name":"auth.password","type":,"value":"QA3UNmEGovybKcT415K6"}] SkipCrds:false Status:"deployed" Timeout:300 Values:["ingress:\n enabled: true\n tls: false\n ingressClassName: nginx\n hostname: rabbitmq.local\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n"] Verify:false Version:"15.1.0" Wait:true WaitForJobs:false}: @module=helm tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=96423073-bcc4-d598-e526-50088b8b8669 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 timestamp="2025-07-11T08:58:28.532+0200" +2025-07-11T08:58:28.532+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: rabbitmq] Start: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=96423073-bcc4-d598-e526-50088b8b8669 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:28.532+0200" +2025-07-11T08:58:28.532+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=96423073-bcc4-d598-e526-50088b8b8669 tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 KubernetesData=map[] tf_resource_type=helm_release timestamp="2025-07-11T08:58:28.532+0200" +2025-07-11T08:58:28.532+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 tf_req_id=96423073-bcc4-d598-e526-50088b8b8669 tf_resource_type=helm_release @module=helm configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:28.532+0200" +2025-07-11T08:58:28.532+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=96423073-bcc4-d598-e526-50088b8b8669 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:28.532+0200" +2025-07-11T08:58:28.532+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: rabbitmq] Initial Values: Name=rabbitmq, Namespace=rabbitmq, Repository=oci://registry-1.docker.io/bitnamicharts, Repository_Username=, Repository_Password=, Chart=rabbitmq: tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=96423073-bcc4-d598-e526-50088b8b8669 timestamp="2025-07-11T08:58:28.532+0200" +2025-07-11T08:58:28.532+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc000753560 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: tf_req_id=96423073-bcc4-d598-e526-50088b8b8669 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:28.532+0200" +2025-07-11T08:58:28.585+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Audit-Id=cdbac54f-4f2a-4b3b-9c6b-7407bea858a6 Content-Length=1039 Content-Type=application/json X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response Date="Fri, 11 Jul 2025 06:58:28 GMT" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_reason="200 OK" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Api-Cattle-Auth=true + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"connection-strings","namespace":"365zon","uid":"47f6eb88-7be7-4756-ac01-6857de56e2e4","resourceVersion":"109671119","creationTimestamp":"2025-07-11T06:29:50Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:ConnectionStrings__DocumentDb":{},"f:ConnectionStrings__ServiceBus":{}},"f:type":{}}}]},"data":{"ConnectionStrings__DocumentDb":"bW9uZ29kYjovL3Jvb3Q6RzJNNWNrMzlCWDY3SDdMMkRvQjVMcVJGeHZQMTJ2SUxKVnc2V05aUkBtb25nb2RiLTAubW9uZ29kYi1oZWFkbGVzcy5tb25nb2RiLnN2Yy5jbHVzdGVyLmxvY2FsOjI3MDE3LG1vbmdvZGItMS5tb25nb2RiLWhlYWRsZXNzLm1vbmdvZGIuc3ZjLmNsdXN0ZXIubG9jYWw6MjcwMTcsbW9uZ29kYi0yLm1vbmdvZGItaGVhZGxlc3MubW9uZ29kYi5zdmMuY2x1c3Rlci5sb2NhbDoyNzAxNy9hZG1pbj9yZXBsaWNhU2V0PXJzMCZhdXRoU291cmNlPWFkbWlu","ConnectionStrings__ServiceBus":"cmFiYml0bXE6Ly91c2VyOlFBM1VObUVHb3Z5YktjVDQxNUs2QHJhYmJpdG1xLWhlYWRsZXNzLnJhYmJpdG1xLnN2Yy5jbHVzdGVyLmxvY2FsOjU2NzIv"},"type":"Opaque"} + tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes tf_http_trans_id=d94a1adf-dfdc-3b6d-c39c-e97a78ae6d3a timestamp="2025-07-11T08:58:28.584+0200" +2025-07-11T08:58:28.585+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:28 [INFO] Received secret: v1.ObjectMeta{Name:"connection-strings", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"47f6eb88-7be7-4756-ac01-6857de56e2e4", ResourceVersion:"109671119", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 50, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 50, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000a18138), Subresource:""}}} +2025-07-11T08:58:28.588+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.kubernetes_secret.connection_strings, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .type: planned value cty.StringVal("Opaque") for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:58:28.719+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:58:28 [DEBUG] ({365zon2 on false { + "Version": "2012-10-17", + "Statement": [ + { + "Effect": "Allow", + "Action": [ + "s3:ListBucket" + ], + "Resource": [ + "arn:aws:s3:::365zon2" + ] + }, + { + "Effect": "Allow", + "Action": [ + "s3:DeleteObject", + "s3:GetObject", + "s3:PutObject" + ], + "Resource": [ + "arn:aws:s3:::365zon2/*" + ] + } + ] +} }): timestamp="2025-07-11T08:58:28.719+0200" +2025-07-11T08:58:28.721+0200 [WARN] Provider "registry.terraform.io/aminueza/minio" produced an invalid plan for module.tenant-365zon.module.minio.minio_iam_service_account.overlay, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .description: planned value cty.StringVal("") for a non-computed attribute + - .disable_user: planned value cty.False for a non-computed attribute + - .expiration: planned value cty.StringVal("1970-01-01T00:00:00Z") for a non-computed attribute + - .name: planned value cty.StringVal("") for a non-computed attribute + - .update_secret: planned value cty.False for a non-computed attribute +2025-07-11T08:58:28.722+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:28.722+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.storage" references: [] +2025-07-11T08:58:28.723+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=973075 +2025-07-11T08:58:28.723+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:28.725+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:28 [INFO] Checking secret storage +2025-07-11T08:58:28.725+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @module=kubernetes.Kubernetes tf_http_req_version=HTTP/1.1 Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/storage Accept="application/json, */*" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_body="" tf_http_req_method=GET tf_http_trans_id=b8b8b720-eaa2-ea93-ee24-0304f8660964 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 User-Agent="HashiCorp/1.0 Terraform/1.12.1" timestamp="2025-07-11T08:58:28.725+0200" +2025-07-11T08:58:28.910+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_res_version=HTTP/2.0 Audit-Id=8aad467a-5646-49bb-ac0f-b6f2f01d5f41 X-Api-Cattle-Auth=true tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" Content-Length=764 Content-Type=application/json Date="Fri, 11 Jul 2025 06:58:28 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Content-Type-Options=nosniff new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=b8b8b720-eaa2-ea93-ee24-0304f8660964 @module=kubernetes.Kubernetes + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"storage","namespace":"365zon","uid":"ef14e016-33d3-4f6d-8de9-1120ea8c2fd0","resourceVersion":"109677334","creationTimestamp":"2025-07-11T06:46:34Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:46:34Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:Storage__AccountKey":{},"f:Storage__AccountName":{},"f:Storage__BlobUri":{},"f:Storage__S3BucketName":{}},"f:type":{}}}]},"data":{"Storage__AccountKey":"RFJzblhXNm5ZVklWN2w4RlVtb2dkeDN5VU9XY2JmWjM0VUVkK0cyag==","Storage__AccountName":"RUFHVDNTMzY1SzlITElMQlcwTTU=","Storage__BlobUri":"aHR0cHM6Ly9zdG9yYWdlLjM2NXpvbi5mb3VybGlnaHRzLmRldg==","Storage__S3BucketName":"MzY1em9uMg=="},"type":"Opaque"} + timestamp="2025-07-11T08:58:28.909+0200" +2025-07-11T08:58:28.910+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:28 [INFO] Reading secret storage +2025-07-11T08:58:28.910+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/storage tf_http_req_version=HTTP/1.1 tf_http_trans_id=47ccbecf-f696-f474-3c23-9814193bbca8 Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" @module=kubernetes.Kubernetes User-Agent="HashiCorp/1.0 Terraform/1.12.1" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_req_method=GET timestamp="2025-07-11T08:58:28.910+0200" +2025-07-11T08:58:29.011+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Api-Cattle-Auth=true tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 tf_http_trans_id=47ccbecf-f696-f474-3c23-9814193bbca8 Audit-Id=b5750c59-f0ad-4848-8148-13416759f0f2 Content-Length=764 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Content-Type-Options=nosniff + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"storage","namespace":"365zon","uid":"ef14e016-33d3-4f6d-8de9-1120ea8c2fd0","resourceVersion":"109677334","creationTimestamp":"2025-07-11T06:46:34Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:46:34Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:Storage__AccountKey":{},"f:Storage__AccountName":{},"f:Storage__BlobUri":{},"f:Storage__S3BucketName":{}},"f:type":{}}}]},"data":{"Storage__AccountKey":"RFJzblhXNm5ZVklWN2w4RlVtb2dkeDN5VU9XY2JmWjM0VUVkK0cyag==","Storage__AccountName":"RUFHVDNTMzY1SzlITElMQlcwTTU=","Storage__BlobUri":"aHR0cHM6Ly9zdG9yYWdlLjM2NXpvbi5mb3VybGlnaHRzLmRldg==","Storage__S3BucketName":"MzY1em9uMg=="},"type":"Opaque"} + Content-Type=application/json Date="Fri, 11 Jul 2025 06:58:28 GMT" X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_code=200 timestamp="2025-07-11T08:58:29.011+0200" +2025-07-11T08:58:29.011+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:29 [INFO] Received secret: v1.ObjectMeta{Name:"storage", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"ef14e016-33d3-4f6d-8de9-1120ea8c2fd0", ResourceVersion:"109677334", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 46, 34, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 46, 34, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001246120), Subresource:""}}} +2025-07-11T08:58:29.014+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.kubernetes_secret.storage, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .type: planned value cty.StringVal("Opaque") for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:58:29.841+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: mongodb] Got chart: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=959752a1-e8e4-9ab0-156c-c79376007fef timestamp="2025-07-11T08:58:29.841+0200" +2025-07-11T08:58:29.841+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=959752a1-e8e4-9ab0-156c-c79376007fef tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:29.841+0200" +2025-07-11T08:58:29.842+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: mongodb] Release validated: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_req_id=959752a1-e8e4-9ab0-156c-c79376007fef timestamp="2025-07-11T08:58:29.841+0200" +2025-07-11T08:58:29.842+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: mongodb] Done: tf_req_id=959752a1-e8e4-9ab0-156c-c79376007fef tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:29.841+0200" +2025-07-11T08:58:29.844+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:29.847+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=972969 +2025-07-11T08:58:29.847+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:29.985+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: rabbitmq] Got chart: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 tf_req_id=96423073-bcc4-d598-e526-50088b8b8669 tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:29.985+0200" +2025-07-11T08:58:29.985+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=96423073-bcc4-d598-e526-50088b8b8669 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:29.985+0200" +2025-07-11T08:58:29.985+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: rabbitmq] Release validated: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=96423073-bcc4-d598-e526-50088b8b8669 tf_rpc=PlanResourceChange @module=helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:29.985+0200" +2025-07-11T08:58:29.985+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: rabbitmq] Done: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=96423073-bcc4-d598-e526-50088b8b8669 timestamp="2025-07-11T08:58:29.985+0200" +2025-07-11T08:58:29.987+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:29.990+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=972774 +2025-07-11T08:58:29.990+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:32.411+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: redis] Got chart: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 @module=helm tf_req_id=b521a9b0-95db-98ce-23ed-eee2e8960502 timestamp="2025-07-11T08:58:32.411+0200" +2025-07-11T08:58:32.411+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b521a9b0-95db-98ce-23ed-eee2e8960502 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 timestamp="2025-07-11T08:58:32.411+0200" +2025-07-11T08:58:32.411+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: redis] Release validated: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_req_id=b521a9b0-95db-98ce-23ed-eee2e8960502 timestamp="2025-07-11T08:58:32.411+0200" +2025-07-11T08:58:32.411+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: redis] Done: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b521a9b0-95db-98ce-23ed-eee2e8960502 tf_rpc=PlanResourceChange tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 timestamp="2025-07-11T08:58:32.411+0200" +2025-07-11T08:58:32.413+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:32.418+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=972871 +2025-07-11T08:58:32.418+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:32.773+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: postgresql] Got chart: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @module=helm tf_req_id=e5ef3dd3-ea4a-6a58-2862-fc1c9945e001 tf_resource_type=helm_release timestamp="2025-07-11T08:58:32.773+0200" +2025-07-11T08:58:32.773+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @module=helm tf_req_id=e5ef3dd3-ea4a-6a58-2862-fc1c9945e001 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 timestamp="2025-07-11T08:58:32.773+0200" +2025-07-11T08:58:32.773+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: postgresql] Release validated: tf_req_id=e5ef3dd3-ea4a-6a58-2862-fc1c9945e001 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 @module=helm tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:32.773+0200" +2025-07-11T08:58:32.773+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: postgresql] Done: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e5ef3dd3-ea4a-6a58-2862-fc1c9945e001 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:32.773+0200" +2025-07-11T08:58:32.775+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:32.776+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.kubernetes_job.create-tenant[0]" references: [] +2025-07-11T08:58:32.784+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=973002 +2025-07-11T08:58:32.784+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:32.793+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:32 [INFO] Checking job create-tenant-zitadel +2025-07-11T08:58:32.794+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Accept="application/json, */*" Host=rancher.bridge.fourlights.dev tf_http_req_body="" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/apis/batch/v1/namespaces/postgresql/jobs/create-tenant-zitadel tf_http_req_version=HTTP/1.1 tf_http_trans_id=d4e55271-5669-4bb4-fd01-4d6d0c8ccbe4 Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_method=GET timestamp="2025-07-11T08:58:32.794+0200" +2025-07-11T08:58:32.937+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_res_status_reason="200 OK" Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json Date="Fri, 11 Jul 2025 06:58:32 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_code=200 tf_http_trans_id=d4e55271-5669-4bb4-fd01-4d6d0c8ccbe4 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Audit-Id=572b88a5-ad5c-4f6e-a27e-067b3e9035cb X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff + tf_http_res_body= + | {"kind":"Job","apiVersion":"batch/v1","metadata":{"name":"create-tenant-zitadel","namespace":"postgresql","uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","resourceVersion":"109671658","generation":1,"creationTimestamp":"2025-07-11T06:30:35Z","labels":{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","batch.kubernetes.io/job-name":"create-tenant-zitadel","controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","job-name":"create-tenant-zitadel"},"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"batch/v1","time":"2025-07-11T06:30:35Z","fieldsType":"FieldsV1","fieldsV1":{"f:spec":{"f:backoffLimit":{},"f:completionMode":{},"f:completions":{},"f:manualSelector":{},"f:parallelism":{},"f:podReplacementPolicy":{},"f:suspend":{},"f:template":{"f:spec":{"f:automountServiceAccountToken":{},"f:containers":{"k:{\"name\":\"create-db-user\"}":{".":{},"f:args":{},"f:command":{},"f:env":{".":{},"k:{\"name\":\"DB_NAME\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"DB_PASSWORD\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"DB_USER\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"POSTGRES_HOST\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"ROOT_DATABASE\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"ROOT_PASSWORD\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"ROOT_USERNAME\"}":{".":{},"f:name":{},"f:value":{}}},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:shareProcessNamespace":{},"f:terminationGracePeriodSeconds":{}}}}}},{"manager":"kube-controller-manager","operation":"Update","apiVersion":"batch/v1","time":"2025-07-11T06:30:48Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:completionTime":{},"f:conditions":{},"f:ready":{},"f:startTime":{},"f:succeeded":{},"f:terminating":{},"f:uncountedTerminatedPods":{}}},"subresource":"status"}]},"spec":{"parallelism":1,"completions":1,"backoffLimit":6,"selector":{"matchLabels":{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6"}},"manualSelector":false,"template":{"metadata":{"creationTimestamp":null,"labels":{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","batch.kubernetes.io/job-name":"create-tenant-zitadel","controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","job-name":"create-tenant-zitadel"}},"spec":{"containers":[{"name":"create-db-user","image":"postgres:17-alpine","command":["/bin/sh","-c"],"args":["# Wait for postgres to be ready\nuntil PGPASSWORD=$ROOT_PASSWORD psql -h $POSTGRES_HOST -U $ROOT_USERNAME -d $ROOT_DATABASE -c '\\l'; do\n echo \"Waiting for postgres...\"\n sleep 2\ndone\n\n# Create user and database\nPGPASSWORD=$ROOT_PASSWORD psql -v ON_ERROR_STOP=1 -h $POSTGRES_HOST -U $ROOT_USERNAME -d $ROOT_DATABASE \u003c\u003c-EOSQL\n CREATE USER $DB_USER WITH PASSWORD '$DB_PASSWORD';\n CREATE DATABASE $DB_NAME OWNER $DB_USER;\n GRANT ALL PRIVILEGES ON DATABASE $DB_NAME TO $DB_USER;\nEOSQL\n"],"env":[{"name":"POSTGRES_HOST","value":"postgresql-hl.postgresql.svc.cluster.local"},{"name":"ROOT_USERNAME","value":"postgres"},{"name":"ROOT_PASSWORD","value":"PvwMI{LznVaS\u003cq_[(rXD0p]c\u003e_W-112$IZfdAH2Q"},{"name":"ROOT_DATABASE","value":"postgres"},{"name":"DB_NAME","value":"zitadel"},{"name":"DB_USER","value":"zitadel"},{"name":"DB_PASSWORD","value":"LW+70S#T8*TcfX]HQ*w12\u003eB\u0026"}],"resources":{},"terminationMessagePath":"/dev/termination-log","terminationMessagePolicy":"File","imagePullPolicy":"IfNotPresent"}],"restartPolicy":"Never","terminationGracePeriodSeconds":30,"dnsPolicy":"ClusterFirst","automountServiceAccountToken":true,"shareProcessNamespace":false,"securityContext":{},"schedulerName":"default-scheduler","enableServiceLinks":true}},"completionMode":"NonIndexed","suspend":false,"podReplacementPolicy":"TerminatingOrFailed"},"status":{"conditions":[{"type":"Complete","status":"True","lastProbeTime":"2025-07-11T06:30:48Z","lastTransitionTime":"2025-07-11T06:30:48Z"}],"startTime":"2025-07-11T06:30:35Z","completionTime":"2025-07-11T06:30:48Z","succeeded":1,"terminating":0,"uncountedTerminatedPods":{},"ready":0}} + timestamp="2025-07-11T08:58:32.936+0200" +2025-07-11T08:58:32.938+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:32 [INFO] Reading job create-tenant-zitadel +2025-07-11T08:58:32.938+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept-Encoding=gzip tf_http_req_body="" tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/apis/batch/v1/namespaces/postgresql/jobs/create-tenant-zitadel tf_http_trans_id=99230be8-801a-ab3b-2931-4fb8dc917de4 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET timestamp="2025-07-11T08:58:32.938+0200" +2025-07-11T08:58:32.985+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_res_status_code=200 tf_http_trans_id=99230be8-801a-ab3b-2931-4fb8dc917de4 Content-Type=application/json X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes X-Content-Type-Options=nosniff @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=21b9364f-33d7-40d5-a316-7704edd59be7 Date="Fri, 11 Jul 2025 06:58:32 GMT" X-Api-Cattle-Auth=true tf_http_res_status_reason="200 OK" Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] tf_http_op_type=response + tf_http_res_body= + | {"kind":"Job","apiVersion":"batch/v1","metadata":{"name":"create-tenant-zitadel","namespace":"postgresql","uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","resourceVersion":"109671658","generation":1,"creationTimestamp":"2025-07-11T06:30:35Z","labels":{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","batch.kubernetes.io/job-name":"create-tenant-zitadel","controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","job-name":"create-tenant-zitadel"},"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"batch/v1","time":"2025-07-11T06:30:35Z","fieldsType":"FieldsV1","fieldsV1":{"f:spec":{"f:backoffLimit":{},"f:completionMode":{},"f:completions":{},"f:manualSelector":{},"f:parallelism":{},"f:podReplacementPolicy":{},"f:suspend":{},"f:template":{"f:spec":{"f:automountServiceAccountToken":{},"f:containers":{"k:{\"name\":\"create-db-user\"}":{".":{},"f:args":{},"f:command":{},"f:env":{".":{},"k:{\"name\":\"DB_NAME\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"DB_PASSWORD\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"DB_USER\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"POSTGRES_HOST\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"ROOT_DATABASE\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"ROOT_PASSWORD\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"ROOT_USERNAME\"}":{".":{},"f:name":{},"f:value":{}}},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:shareProcessNamespace":{},"f:terminationGracePeriodSeconds":{}}}}}},{"manager":"kube-controller-manager","operation":"Update","apiVersion":"batch/v1","time":"2025-07-11T06:30:48Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:completionTime":{},"f:conditions":{},"f:ready":{},"f:startTime":{},"f:succeeded":{},"f:terminating":{},"f:uncountedTerminatedPods":{}}},"subresource":"status"}]},"spec":{"parallelism":1,"completions":1,"backoffLimit":6,"selector":{"matchLabels":{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6"}},"manualSelector":false,"template":{"metadata":{"creationTimestamp":null,"labels":{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","batch.kubernetes.io/job-name":"create-tenant-zitadel","controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","job-name":"create-tenant-zitadel"}},"spec":{"containers":[{"name":"create-db-user","image":"postgres:17-alpine","command":["/bin/sh","-c"],"args":["# Wait for postgres to be ready\nuntil PGPASSWORD=$ROOT_PASSWORD psql -h $POSTGRES_HOST -U $ROOT_USERNAME -d $ROOT_DATABASE -c '\\l'; do\n echo \"Waiting for postgres...\"\n sleep 2\ndone\n\n# Create user and database\nPGPASSWORD=$ROOT_PASSWORD psql -v ON_ERROR_STOP=1 -h $POSTGRES_HOST -U $ROOT_USERNAME -d $ROOT_DATABASE \u003c\u003c-EOSQL\n CREATE USER $DB_USER WITH PASSWORD '$DB_PASSWORD';\n CREATE DATABASE $DB_NAME OWNER $DB_USER;\n GRANT ALL PRIVILEGES ON DATABASE $DB_NAME TO $DB_USER;\nEOSQL\n"],"env":[{"name":"POSTGRES_HOST","value":"postgresql-hl.postgresql.svc.cluster.local"},{"name":"ROOT_USERNAME","value":"postgres"},{"name":"ROOT_PASSWORD","value":"PvwMI{LznVaS\u003cq_[(rXD0p]c\u003e_W-112$IZfdAH2Q"},{"name":"ROOT_DATABASE","value":"postgres"},{"name":"DB_NAME","value":"zitadel"},{"name":"DB_USER","value":"zitadel"},{"name":"DB_PASSWORD","value":"LW+70S#T8*TcfX]HQ*w12\u003eB\u0026"}],"resources":{},"terminationMessagePath":"/dev/termination-log","terminationMessagePolicy":"File","imagePullPolicy":"IfNotPresent"}],"restartPolicy":"Never","terminationGracePeriodSeconds":30,"dnsPolicy":"ClusterFirst","automountServiceAccountToken":true,"shareProcessNamespace":false,"securityContext":{},"schedulerName":"default-scheduler","enableServiceLinks":true}},"completionMode":"NonIndexed","suspend":false,"podReplacementPolicy":"TerminatingOrFailed"},"status":{"conditions":[{"type":"Complete","status":"True","lastProbeTime":"2025-07-11T06:30:48Z","lastTransitionTime":"2025-07-11T06:30:48Z"}],"startTime":"2025-07-11T06:30:35Z","completionTime":"2025-07-11T06:30:48Z","succeeded":1,"terminating":0,"uncountedTerminatedPods":{},"ready":0}} + timestamp="2025-07-11T08:58:32.985+0200" +2025-07-11T08:58:32.985+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:32 [INFO] Received job: &v1.Job{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"create-tenant-zitadel", GenerateName:"", Namespace:"postgresql", SelfLink:"", UID:"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6", ResourceVersion:"109671658", Generation:1, CreationTimestamp:time.Date(2025, time.July, 11, 8, 30, 35, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6", "batch.kubernetes.io/job-name":"create-tenant-zitadel", "controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6", "job-name":"create-tenant-zitadel"}, Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"batch/v1", Time:time.Date(2025, time.July, 11, 8, 30, 35, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001393da0), Subresource:""}, v1.ManagedFieldsEntry{Manager:"kube-controller-manager", Operation:"Update", APIVersion:"batch/v1", Time:time.Date(2025, time.July, 11, 8, 30, 48, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001393dd0), Subresource:"status"}}}, Spec:v1.JobSpec{Parallelism:(*int32)(0xc0014f1a50), Completions:(*int32)(0xc0014f1a54), ActiveDeadlineSeconds:(*int64)(nil), PodFailurePolicy:(*v1.PodFailurePolicy)(nil), BackoffLimit:(*int32)(0xc0014f1a58), BackoffLimitPerIndex:(*int32)(nil), MaxFailedIndexes:(*int32)(nil), Selector:(*v1.LabelSelector)(0xc00016aaa0), ManualSelector:(*bool)(0xc0014f1a5c), Template:v1.PodTemplateSpec{ObjectMeta:v1.ObjectMeta{Name:"", GenerateName:"", Namespace:"", SelfLink:"", UID:"", ResourceVersion:"", Generation:0, CreationTimestamp:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6", "batch.kubernetes.io/job-name":"create-tenant-zitadel", "controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6", "job-name":"create-tenant-zitadel"}, Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry(nil)}, Spec:v1.PodSpec{Volumes:[]v1.Volume(nil), InitContainers:[]v1.Container(nil), Containers:[]v1.Container{v1.Container{Name:"create-db-user", Image:"postgres:17-alpine", Command:[]string{"/bin/sh", "-c"}, Args:[]string{"# Wait for postgres to be ready\nuntil PGPASSWORD=$ROOT_PASSWORD psql -h $POSTGRES_HOST -U $ROOT_USERNAME -d $ROOT_DATABASE -c '\\l'; do\n echo \"Waiting for postgres...\"\n sleep 2\ndone\n\n# Create user and database\nPGPASSWORD=$ROOT_PASSWORD psql -v ON_ERROR_STOP=1 -h $POSTGRES_HOST -U $ROOT_USERNAME -d $ROOT_DATABASE <<-EOSQL\n CREATE USER $DB_USER WITH PASSWORD '$DB_PASSWORD';\n CREATE DATABASE $DB_NAME OWNER $DB_USER;\n GRANT ALL PRIVILEGES ON DATABASE $DB_NAME TO $DB_USER;\nEOSQL\n"}, WorkingDir:"", Ports:[]v1.ContainerPort(nil), EnvFrom:[]v1.EnvFromSource(nil), Env:[]v1.EnvVar{v1.EnvVar{Name:"POSTGRES_HOST", Value:"postgresql-hl.postgresql.svc.cluster.local", ValueFrom:(*v1.EnvVarSource)(nil)}, v1.EnvVar{Name:"ROOT_USERNAME", Value:"postgres", ValueFrom:(*v1.EnvVarSource)(nil)}, v1.EnvVar{Name:"ROOT_PASSWORD", Value:"PvwMI{LznVaS_W-112$IZfdAH2Q", ValueFrom:(*v1.EnvVarSource)(nil)}, v1.EnvVar{Name:"ROOT_DATABASE", Value:"postgres", ValueFrom:(*v1.EnvVarSource)(nil)}, v1.EnvVar{Name:"DB_NAME", Value:"zitadel", ValueFrom:(*v1.EnvVarSource)(nil)}, v1.EnvVar{Name:"DB_USER", Value:"zitadel", ValueFrom:(*v1.EnvVarSource)(nil)}, v1.EnvVar{Name:"DB_PASSWORD", Value:"LW+70S#T8*TcfX]HQ*w12>B&", ValueFrom:(*v1.EnvVarSource)(nil)}}, Resources:v1.ResourceRequirements{Limits:v1.ResourceList(nil), Requests:v1.ResourceList(nil), Claims:[]v1.ResourceClaim(nil)}, ResizePolicy:[]v1.ContainerResizePolicy(nil), RestartPolicy:(*v1.ContainerRestartPolicy)(nil), VolumeMounts:[]v1.VolumeMount(nil), VolumeDevices:[]v1.VolumeDevice(nil), LivenessProbe:(*v1.Probe)(nil), ReadinessProbe:(*v1.Probe)(nil), StartupProbe:(*v1.Probe)(nil), Lifecycle:(*v1.Lifecycle)(nil), TerminationMessagePath:"/dev/termination-log", TerminationMessagePolicy:"File", ImagePullPolicy:"IfNotPresent", SecurityContext:(*v1.SecurityContext)(nil), Stdin:false, StdinOnce:false, TTY:false}}, EphemeralContainers:[]v1.EphemeralContainer(nil), RestartPolicy:"Never", TerminationGracePeriodSeconds:(*int64)(0xc0014f1b48), ActiveDeadlineSeconds:(*int64)(nil), DNSPolicy:"ClusterFirst", NodeSelector:map[string]string(nil), ServiceAccountName:"", DeprecatedServiceAccount:"", AutomountServiceAccountToken:(*bool)(0xc0014f1b60), NodeName:"", HostNetwork:false, HostPID:false, HostIPC:false, ShareProcessNamespace:(*bool)(0xc0014f1b61), SecurityContext:(*v1.PodSecurityContext)(0xc000270cb0), ImagePullSecrets:[]v1.LocalObjectReference(nil), Hostname:"", Subdomain:"", Affinity:(*v1.Affinity)(nil), SchedulerName:"default-scheduler", Tolerations:[]v1.Toleration(nil), HostAliases:[]v1.HostAlias(nil), PriorityClassName:"", Priority:(*int32)(nil), DNSConfig:(*v1.PodDNSConfig)(nil), ReadinessGates:[]v1.PodReadinessGate(nil), RuntimeClassName:(*string)(nil), EnableServiceLinks:(*bool)(0xc0014f1b62), PreemptionPolicy:(*v1.PreemptionPolicy)(nil), Overhead:v1.ResourceList(nil), TopologySpreadConstraints:[]v1.TopologySpreadConstraint(nil), SetHostnameAsFQDN:(*bool)(nil), OS:(*v1.PodOS)(nil), HostUsers:(*bool)(nil), SchedulingGates:[]v1.PodSchedulingGate(nil), ResourceClaims:[]v1.PodResourceClaim(nil)}}, TTLSecondsAfterFinished:(*int32)(nil), CompletionMode:(*v1.CompletionMode)(0xc000e05950), Suspend:(*bool)(0xc0014f1b6e), PodReplacementPolicy:(*v1.PodReplacementPolicy)(0xc000e05960)}, Status:v1.JobStatus{Conditions:[]v1.JobCondition{v1.JobCondition{Type:"Complete", Status:"True", LastProbeTime:time.Date(2025, time.July, 11, 8, 30, 48, 0, time.Local), LastTransitionTime:time.Date(2025, time.July, 11, 8, 30, 48, 0, time.Local), Reason:"", Message:""}}, StartTime:time.Date(2025, time.July, 11, 8, 30, 35, 0, time.Local), CompletionTime:time.Date(2025, time.July, 11, 8, 30, 48, 0, time.Local), Active:0, Succeeded:1, Failed:0, Terminating:(*int32)(0xc0014f1b7c), CompletedIndexes:"", FailedIndexes:(*string)(nil), UncountedTerminatedPods:(*v1.UncountedTerminatedPods)(0xc000240360), Ready:(*int32)(0xc0014f1b80)}} +2025-07-11T08:58:33.002+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.zitadel-db.kubernetes_job.create-tenant[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_completion: planned value cty.True for a non-computed attribute + - .spec[0].parallelism: planned value cty.NumberIntVal(1) for a non-computed attribute + - .spec[0].ttl_seconds_after_finished: planned value cty.StringVal("") for a non-computed attribute + - .spec[0].active_deadline_seconds: planned value cty.NumberIntVal(0) for a non-computed attribute + - .spec[0].backoff_limit: planned value cty.NumberIntVal(6) for a non-computed attribute + - .spec[0].completions: planned value cty.NumberIntVal(1) for a non-computed attribute + - .spec[0].manual_selector: planned value cty.False for a non-computed attribute + - .spec[0].selector: block count in plan (1) disagrees with count in config (0) + - .spec[0].template[0].metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .spec[0].template[0].metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .spec[0].template[0].metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .spec[0].template[0].spec[0].node_selector: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .spec[0].template[0].spec[0].host_ipc: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].active_deadline_seconds: planned value cty.NumberIntVal(0) for a non-computed attribute + - .spec[0].template[0].spec[0].automount_service_account_token: planned value cty.True for a non-computed attribute + - .spec[0].template[0].spec[0].dns_policy: planned value cty.StringVal("ClusterFirst") for a non-computed attribute + - .spec[0].template[0].spec[0].enable_service_links: planned value cty.True for a non-computed attribute + - .spec[0].template[0].spec[0].host_pid: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].runtime_class_name: planned value cty.StringVal("") for a non-computed attribute + - .spec[0].template[0].spec[0].share_process_namespace: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].host_network: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].priority_class_name: planned value cty.StringVal("") for a non-computed attribute + - .spec[0].template[0].spec[0].restart_policy: planned value cty.StringVal("Never") for a non-computed attribute + - .spec[0].template[0].spec[0].subdomain: planned value cty.StringVal("") for a non-computed attribute + - .spec[0].template[0].spec[0].termination_grace_period_seconds: planned value cty.NumberIntVal(30) for a non-computed attribute + - .spec[0].template[0].spec[0].container[0].stdin: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].container[0].stdin_once: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].container[0].termination_message_path: planned value cty.StringVal("/dev/termination-log") for a non-computed attribute + - .spec[0].template[0].spec[0].container[0].tty: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].container[0].working_dir: planned value cty.StringVal("") for a non-computed attribute + - .spec[0].template[0].spec[0].container[0].resources: block count in plan (1) disagrees with count in config (0) + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute +2025-07-11T08:58:33.005+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:33.007+0200 [DEBUG] ReferenceTransformer: "module.zitadel.helm_release.zitadel[0]" references: [] +2025-07-11T08:58:33.009+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=972934 +2025-07-11T08:58:33.009+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:33.012+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc00079e2a0 Settings:0xc0007a5440 RegistryClient:0xc000881780 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c @module=helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 timestamp="2025-07-11T08:58:33.012+0200" +2025-07-11T08:58:33.013+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"zitadel" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"zitadel" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"v2.67.2","chart":"zitadel","first_deployed":1752215453,"last_deployed":1752215453,"name":"zitadel","namespace":"zitadel","notes":"Thank you for installing zitadel.\nExtract your service account key for authenticating at the ZITADEL API's:\n\n $ kubectl -n zitadel get secret zitadel-admin-sa -o jsonpath='{ .data.zitadel-admin-sa\\.json }' | base64 -D","revision":1,"values":"{\"ingress\":{\"annotations\":{\"cert-manager.io/cluster-issuer\":\"letsencrypt\",\"gethomepage.dev/description\":\"Identity and Access Management\",\"gethomepage.dev/enabled\":\"true\",\"gethomepage.dev/group\":\"Tools\",\"gethomepage.dev/icon\":\"zitadel.png\",\"gethomepage.dev/name\":\"Zitadel\",\"kubernetes.io/ingress.class\":\"nginx\"},\"className\":\"nginx\",\"enabled\":true,\"hosts\":[{\"host\":\"zitadel.365zon.fourlights.dev\",\"paths\":[{\"path\":\"/\",\"pathType\":\"Prefix\"}]}]},\"readinessProbe\":{\"failureThreshold\":10,\"initialDelaySeconds\":5,\"periodSeconds\":5},\"service\":{\"annotations\":{\"traefik.ingress.kubernetes.io/service.serversscheme\":\"h2c\"}},\"startupProbe\":{\"failureThreshold\":30,\"periodSeconds\":5},\"zitadel\":{\"configmapConfig\":{\"Database\":{\"Postgres\":{\"Admin\":{\"Password\":\"PvwMI{LznVaS\\u003cq_[(rXD0p]c\\u003e_W-112$IZfdAH2Q\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"postgres\"},\"Database\":\"zitadel\",\"Host\":\"postgresql-hl.postgresql.svc.cluster.local\",\"MaxConnIdleTime\":\"5m\",\"MaxConnLifetime\":\"30m\",\"MaxIdleConns\":10,\"MaxOpenConns\":20,\"Port\":5432,\"User\":{\"Password\":\"LW+70S#T8*TcfX]HQ*w12\\u003eB\\u0026\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"zitadel\"}}},\"ExternalDomain\":\"zitadel.365zon.fourlights.dev\",\"ExternalPort\":443,\"ExternalSecure\":true,\"FirstInstance\":{\"Org\":{\"Machine\":{\"Machine\":{\"Name\":\"Admin\",\"Username\":\"zitadel-admin-sa\"},\"MachineKey\":{\"ExpirationDate\":\"2026-01-01T00:00:00Z\",\"Type\":1}}}},\"Log\":{\"Level\":\"info\"},\"LogStore\":{\"Access\":{\"Stdout\":{\"Enabled\":true}}},\"TLS\":{\"Enabled\":false}},\"masterkeySecretName\":\"zitadel\"}}","version":"8.12.0"} Name:"zitadel" Namespace:"zitadel" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.zitadel.com" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["zitadel:\n masterkeySecretName: \"zitadel\"\n configmapConfig:\n Log:\n Level: 'info'\n LogStore:\n Access:\n Stdout:\n Enabled: true\n ExternalSecure: true\n ExternalDomain: zitadel.365zon.fourlights.dev\n ExternalPort: 443\n TLS:\n Enabled: false\n FirstInstance:\n Org:\n Machine:\n Machine:\n Username: zitadel-admin-sa\n Name: Admin\n MachineKey:\n ExpirationDate: \"2026-01-01T00:00:00Z\"\n Type: 1\n Database:\n Postgres:\n Host: postgresql-hl.postgresql.svc.cluster.local\n Port: 5432\n Database: zitadel\n MaxOpenConns: 20\n MaxIdleConns: 10\n MaxConnLifetime: 30m\n MaxConnIdleTime: 5m\n User:\n Username: zitadel\n Password: \"LW+70S#T8*TcfX]HQ*w12>B&\"\n SSL:\n Mode: disable\n Admin:\n Username: postgres\n Password: \"PvwMI{LznVaS_W-112$IZfdAH2Q\"\n SSL:\n Mode: disable\n \n\nreadinessProbe:\n initialDelaySeconds: 5\n periodSeconds: 5\n failureThreshold: 10\n\nstartupProbe:\n periodSeconds: 5\n failureThreshold: 30\n\nservice:\n annotations:\n traefik.ingress.kubernetes.io/service.serversscheme: h2c\n\ningress:\n enabled: true\n className: nginx\n annotations:\n kubernetes.io/ingress.class: nginx\n cert-manager.io/cluster-issuer: letsencrypt\n \n gethomepage.dev/enabled: \"true\"\n gethomepage.dev/name: \"Zitadel\"\n gethomepage.dev/description: \"Identity and Access Management\"\n gethomepage.dev/group: \"Tools\"\n gethomepage.dev/icon: \"zitadel.png\"\n \n hosts:\n - host: zitadel.365zon.fourlights.dev\n paths:\n - path: /\n pathType: Prefix\n\n"] Verify:false Version:"8.12.0" Wait:true WaitForJobs:true}: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_rpc=ReadResource timestamp="2025-07-11T08:58:33.013+0200" +2025-07-11T08:58:33.013+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: zitadel] Start: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_rpc=ReadResource @module=helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:33.013+0200" +2025-07-11T08:58:33.013+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm KubernetesData=map[] tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:33.013+0200" +2025-07-11T08:58:33.013+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @module=helm configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release timestamp="2025-07-11T08:58:33.013+0200" +2025-07-11T08:58:33.013+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_rpc=ReadResource timestamp="2025-07-11T08:58:33.013+0200" +2025-07-11T08:58:33.013+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: zitadel getRelease post action created: tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_rpc=ReadResource tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:33.013+0200" +2025-07-11T08:58:33.235+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: zitadel getRelease post run: tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 @module=helm timestamp="2025-07-11T08:58:33.235+0200" +2025-07-11T08:58:33.235+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: zitadel getRelease completed: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c @module=helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:33.235+0200" +2025-07-11T08:58:33.235+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: zitadel] Done: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 @module=helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:33.235+0200" +2025-07-11T08:58:33.235+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: zitadel] Started: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release tf_rpc=ReadResource @module=helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 timestamp="2025-07-11T08:58:33.235+0200" +2025-07-11T08:58:33.235+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 timestamp="2025-07-11T08:58:33.235+0200" +2025-07-11T08:58:33.235+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 configPaths=[] tf_resource_type=helm_release @module=helm timestamp="2025-07-11T08:58:33.235+0200" +2025-07-11T08:58:33.235+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:33.235+0200" +2025-07-11T08:58:33.235+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: zitadel getRelease post action created: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c timestamp="2025-07-11T08:58:33.235+0200" +2025-07-11T08:58:33.368+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: zitadel getRelease post run: tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c timestamp="2025-07-11T08:58:33.368+0200" +2025-07-11T08:58:33.368+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: zitadel getRelease completed: tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release timestamp="2025-07-11T08:58:33.368+0200" +2025-07-11T08:58:33.368+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"v2.67.2","chart":"zitadel","first_deployed":1752215453,"last_deployed":1752215453,"name":"zitadel","namespace":"zitadel","notes":"Thank you for installing zitadel.\nExtract your service account key for authenticating at the ZITADEL API's:\n\n $ kubectl -n zitadel get secret zitadel-admin-sa -o jsonpath='{ .data.zitadel-admin-sa\\.json }' | base64 -D","revision":1,"values":"{\"ingress\":{\"annotations\":{\"cert-manager.io/cluster-issuer\":\"letsencrypt\",\"gethomepage.dev/description\":\"Identity and Access Management\",\"gethomepage.dev/enabled\":\"true\",\"gethomepage.dev/group\":\"Tools\",\"gethomepage.dev/icon\":\"zitadel.png\",\"gethomepage.dev/name\":\"Zitadel\",\"kubernetes.io/ingress.class\":\"nginx\"},\"className\":\"nginx\",\"enabled\":true,\"hosts\":[{\"host\":\"zitadel.365zon.fourlights.dev\",\"paths\":[{\"path\":\"/\",\"pathType\":\"Prefix\"}]}]},\"readinessProbe\":{\"failureThreshold\":10,\"initialDelaySeconds\":5,\"periodSeconds\":5},\"service\":{\"annotations\":{\"traefik.ingress.kubernetes.io/service.serversscheme\":\"h2c\"}},\"startupProbe\":{\"failureThreshold\":30,\"periodSeconds\":5},\"zitadel\":{\"configmapConfig\":{\"Database\":{\"Postgres\":{\"Admin\":{\"Password\":\"PvwMI{LznVaS\\u003cq_[(rXD0p]c\\u003e_W-112$IZfdAH2Q\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"postgres\"},\"Database\":\"zitadel\",\"Host\":\"postgresql-hl.postgresql.svc.cluster.local\",\"MaxConnIdleTime\":\"5m\",\"MaxConnLifetime\":\"30m\",\"MaxIdleConns\":10,\"MaxOpenConns\":20,\"Port\":5432,\"User\":{\"Password\":\"LW+70S#T8*TcfX]HQ*w12\\u003eB\\u0026\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"zitadel\"}}},\"ExternalDomain\":\"zitadel.365zon.fourlights.dev\",\"ExternalPort\":443,\"ExternalSecure\":true,\"FirstInstance\":{\"Org\":{\"Machine\":{\"Machine\":{\"Name\":\"Admin\",\"Username\":\"zitadel-admin-sa\"},\"MachineKey\":{\"ExpirationDate\":\"2026-01-01T00:00:00Z\",\"Type\":1}}}},\"Log\":{\"Level\":\"info\"},\"LogStore\":{\"Access\":{\"Stdout\":{\"Enabled\":true}}},\"TLS\":{\"Enabled\":false}},\"masterkeySecretName\":\"zitadel\"}}","version":"8.12.0"}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 tf_rpc=ReadResource timestamp="2025-07-11T08:58:33.368+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=reuse_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource timestamp="2025-07-11T08:58:33.368+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=disable_webhooks tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=metadata.namespace tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.chart tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.revision timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release tf_attribute_path=metadata.notes tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_rpc=ReadResource tf_attribute_path=metadata.app_version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.first_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.name tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_rpc=ReadResource timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource tf_attribute_path=metadata.values tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.last_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=sdk.framework tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=recreate_pods tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=values[0] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_rpc=ReadResource timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c @module=sdk.framework tf_attribute_path=values tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_rpc=ReadResource tf_attribute_path=replace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=skip_crds @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=dependency_update tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=wait_for_jobs tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=repository tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_rpc=ReadResource timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=status tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=reset_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_rpc=ReadResource @module=sdk.framework tf_resource_type=helm_release timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=wait tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=render_subchart_notes tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=disable_crd_hooks tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release tf_attribute_path=name tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=id tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_rpc=ReadResource @module=sdk.framework tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=lint tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=version tf_rpc=ReadResource timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=atomic tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=cleanup_on_fail @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=timeout tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=verify tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=chart tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=pass_credentials @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=create_namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_rpc=ReadResource timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=force_update tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=max_history tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.369+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=disable_openapi_validation tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2dc81b34-8cc7-5b7b-0eb0-32ef4b5c140c @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:58:33.369+0200" +2025-07-11T08:58:33.371+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:33.372+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc00079e2a0 Settings:0xc0007a5440 RegistryClient:0xc000881780 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_req_id=3d9265e2-0799-4310-1c74-cd9cc3c8f96f tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ValidateResourceConfig timestamp="2025-07-11T08:58:33.372+0200" +2025-07-11T08:58:33.374+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc00079e2a0 Settings:0xc0007a5440 RegistryClient:0xc000881780 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_rpc=PlanResourceChange @module=helm timestamp="2025-07-11T08:58:33.374+0200" +2025-07-11T08:58:33.377+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Detected value change between proposed new state and prior state: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:241 @module=sdk.framework tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_attribute_path=values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:33.377+0200" +2025-07-11T08:58:33.377+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Marking Computed attributes with null configuration values as unknown (known after apply) in the plan to prevent potential Terraform errors: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:250 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=sdk.framework tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 timestamp="2025-07-11T08:58:33.377+0200" +2025-07-11T08:58:33.377+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_attribute_path="AttributeName(\"metadata\").AttributeName(\"version\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:33.377+0200" +2025-07-11T08:58:33.377+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_attribute_path="AttributeName(\"metadata\").AttributeName(\"app_version\")" tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:33.377+0200" +2025-07-11T08:58:33.377+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_attribute_path="AttributeName(\"metadata\").AttributeName(\"first_deployed\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_resource_type=helm_release timestamp="2025-07-11T08:58:33.377+0200" +2025-07-11T08:58:33.377+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_attribute_path="AttributeName(\"metadata\").AttributeName(\"namespace\")" tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 timestamp="2025-07-11T08:58:33.377+0200" +2025-07-11T08:58:33.377+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_resource_type=helm_release tf_attribute_path="AttributeName(\"metadata\").AttributeName(\"last_deployed\")" tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework timestamp="2025-07-11T08:58:33.377+0200" +2025-07-11T08:58:33.377+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_attribute_path="AttributeName(\"metadata\").AttributeName(\"revision\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 @module=sdk.framework tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:33.377+0200" +2025-07-11T08:58:33.377+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_rpc=PlanResourceChange @module=sdk.framework tf_attribute_path="AttributeName(\"metadata\").AttributeName(\"chart\")" timestamp="2025-07-11T08:58:33.377+0200" +2025-07-11T08:58:33.377+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_attribute_path="AttributeName(\"metadata\").AttributeName(\"values\")" tf_rpc=PlanResourceChange @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_resource_type=helm_release timestamp="2025-07-11T08:58:33.377+0200" +2025-07-11T08:58:33.377+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_attribute_path="AttributeName(\"metadata\").AttributeName(\"name\")" tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:33.377+0200" +2025-07-11T08:58:33.377+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_resource_type=helm_release tf_attribute_path="AttributeName(\"metadata\").AttributeName(\"notes\")" timestamp="2025-07-11T08:58:33.377+0200" +2025-07-11T08:58:33.377+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_attribute_path="AttributeName(\"metadata\")" tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:33.377+0200" +2025-07-11T08:58:33.377+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_attribute_path="AttributeName(\"manifest\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=sdk.framework tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 timestamp="2025-07-11T08:58:33.377+0200" +2025-07-11T08:58:33.377+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_attribute_path="AttributeName(\"id\")" tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 timestamp="2025-07-11T08:58:33.377+0200" +2025-07-11T08:58:33.377+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_attribute_path="AttributeName(\"status\")" tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:33.377+0200" +2025-07-11T08:58:33.380+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"zitadel" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID: Keyring: Lint:false Manifest: MaxHistory:0 Metadata: Name:"zitadel" Namespace:"zitadel" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.zitadel.com" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status: Timeout:300 Values:["zitadel:\n masterkeySecretName: \"zitadel\"\n configmapConfig:\n Log:\n Level: 'info'\n LogStore:\n Access:\n Stdout:\n Enabled: true\n ExternalSecure: true\n ExternalDomain: zitadel.365zon.fourlights.dev\n ExternalPort: 443\n TLS:\n Enabled: false\n FirstInstance:\n Org:\n Machine:\n Machine:\n Username: zitadel-admin-sa\n Name: Admin\n MachineKey:\n ExpirationDate: \"2026-01-01T00:00:00Z\"\n Type: 1\n Database:\n Postgres:\n Host: postgresql-hl.postgresql.svc.cluster.local\n Port: 5432\n Database: zitadel\n MaxOpenConns: 20\n MaxIdleConns: 10\n MaxConnLifetime: 30m\n MaxConnIdleTime: 5m\n User:\n Username: zitadel\n Password: \"LW+70S#T8*TcfX]HQ*w12>B&\"\n SSL:\n Mode: disable\n Admin:\n Username: postgres\n Password: \"PvwMI{LznVaS_W-112$IZfdAH2Q\"\n SSL:\n Mode: disable\n \n\nreadinessProbe:\n initialDelaySeconds: 5\n periodSeconds: 5\n failureThreshold: 10\n\nstartupProbe:\n periodSeconds: 5\n failureThreshold: 30\n\nservice:\n annotations:\n traefik.ingress.kubernetes.io/service.serversscheme: h2c\n\ningress:\n enabled: true\n className: nginx\n annotations:\n kubernetes.io/ingress.class: nginx\n cert-manager.io/cluster-issuer: letsencrypt\n \n nginx.ingress.kubernetes.io/backend-protocol: \"GRPC\"\n nginx.ingress.kubernetes.io/grpc-backend: \"true\"\n \n gethomepage.dev/enabled: \"true\"\n gethomepage.dev/name: \"Zitadel\"\n gethomepage.dev/description: \"Identity and Access Management\"\n gethomepage.dev/group: \"Tools\"\n gethomepage.dev/icon: \"zitadel.png\"\n \n hosts:\n - host: zitadel.365zon.fourlights.dev\n paths:\n - path: /\n pathType: Prefix\n\n"] Verify:false Version:"8.12.0" Wait:true WaitForJobs:true}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm timestamp="2025-07-11T08:58:33.380+0200" +2025-07-11T08:58:33.380+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"zitadel" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"zitadel" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"v2.67.2","chart":"zitadel","first_deployed":1752215453,"last_deployed":1752215453,"name":"zitadel","namespace":"zitadel","notes":"Thank you for installing zitadel.\nExtract your service account key for authenticating at the ZITADEL API's:\n\n $ kubectl -n zitadel get secret zitadel-admin-sa -o jsonpath='{ .data.zitadel-admin-sa\\.json }' | base64 -D","revision":1,"values":"{\"ingress\":{\"annotations\":{\"cert-manager.io/cluster-issuer\":\"letsencrypt\",\"gethomepage.dev/description\":\"Identity and Access Management\",\"gethomepage.dev/enabled\":\"true\",\"gethomepage.dev/group\":\"Tools\",\"gethomepage.dev/icon\":\"zitadel.png\",\"gethomepage.dev/name\":\"Zitadel\",\"kubernetes.io/ingress.class\":\"nginx\"},\"className\":\"nginx\",\"enabled\":true,\"hosts\":[{\"host\":\"zitadel.365zon.fourlights.dev\",\"paths\":[{\"path\":\"/\",\"pathType\":\"Prefix\"}]}]},\"readinessProbe\":{\"failureThreshold\":10,\"initialDelaySeconds\":5,\"periodSeconds\":5},\"service\":{\"annotations\":{\"traefik.ingress.kubernetes.io/service.serversscheme\":\"h2c\"}},\"startupProbe\":{\"failureThreshold\":30,\"periodSeconds\":5},\"zitadel\":{\"configmapConfig\":{\"Database\":{\"Postgres\":{\"Admin\":{\"Password\":\"PvwMI{LznVaS\\u003cq_[(rXD0p]c\\u003e_W-112$IZfdAH2Q\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"postgres\"},\"Database\":\"zitadel\",\"Host\":\"postgresql-hl.postgresql.svc.cluster.local\",\"MaxConnIdleTime\":\"5m\",\"MaxConnLifetime\":\"30m\",\"MaxIdleConns\":10,\"MaxOpenConns\":20,\"Port\":5432,\"User\":{\"Password\":\"LW+70S#T8*TcfX]HQ*w12\\u003eB\\u0026\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"zitadel\"}}},\"ExternalDomain\":\"zitadel.365zon.fourlights.dev\",\"ExternalPort\":443,\"ExternalSecure\":true,\"FirstInstance\":{\"Org\":{\"Machine\":{\"Machine\":{\"Name\":\"Admin\",\"Username\":\"zitadel-admin-sa\"},\"MachineKey\":{\"ExpirationDate\":\"2026-01-01T00:00:00Z\",\"Type\":1}}}},\"Log\":{\"Level\":\"info\"},\"LogStore\":{\"Access\":{\"Stdout\":{\"Enabled\":true}}},\"TLS\":{\"Enabled\":false}},\"masterkeySecretName\":\"zitadel\"}}","version":"8.12.0"} Name:"zitadel" Namespace:"zitadel" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.zitadel.com" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["zitadel:\n masterkeySecretName: \"zitadel\"\n configmapConfig:\n Log:\n Level: 'info'\n LogStore:\n Access:\n Stdout:\n Enabled: true\n ExternalSecure: true\n ExternalDomain: zitadel.365zon.fourlights.dev\n ExternalPort: 443\n TLS:\n Enabled: false\n FirstInstance:\n Org:\n Machine:\n Machine:\n Username: zitadel-admin-sa\n Name: Admin\n MachineKey:\n ExpirationDate: \"2026-01-01T00:00:00Z\"\n Type: 1\n Database:\n Postgres:\n Host: postgresql-hl.postgresql.svc.cluster.local\n Port: 5432\n Database: zitadel\n MaxOpenConns: 20\n MaxIdleConns: 10\n MaxConnLifetime: 30m\n MaxConnIdleTime: 5m\n User:\n Username: zitadel\n Password: \"LW+70S#T8*TcfX]HQ*w12>B&\"\n SSL:\n Mode: disable\n Admin:\n Username: postgres\n Password: \"PvwMI{LznVaS_W-112$IZfdAH2Q\"\n SSL:\n Mode: disable\n \n\nreadinessProbe:\n initialDelaySeconds: 5\n periodSeconds: 5\n failureThreshold: 10\n\nstartupProbe:\n periodSeconds: 5\n failureThreshold: 30\n\nservice:\n annotations:\n traefik.ingress.kubernetes.io/service.serversscheme: h2c\n\ningress:\n enabled: true\n className: nginx\n annotations:\n kubernetes.io/ingress.class: nginx\n cert-manager.io/cluster-issuer: letsencrypt\n \n gethomepage.dev/enabled: \"true\"\n gethomepage.dev/name: \"Zitadel\"\n gethomepage.dev/description: \"Identity and Access Management\"\n gethomepage.dev/group: \"Tools\"\n gethomepage.dev/icon: \"zitadel.png\"\n \n hosts:\n - host: zitadel.365zon.fourlights.dev\n paths:\n - path: /\n pathType: Prefix\n\n"] Verify:false Version:"8.12.0" Wait:true WaitForJobs:true}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:33.380+0200" +2025-07-11T08:58:33.380+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Start: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 timestamp="2025-07-11T08:58:33.380+0200" +2025-07-11T08:58:33.380+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm KubernetesData=map[] tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:33.380+0200" +2025-07-11T08:58:33.380+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @module=helm configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:33.380+0200" +2025-07-11T08:58:33.380+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:33.380+0200" +2025-07-11T08:58:33.380+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Initial Values: Name=zitadel, Namespace=zitadel, Repository=https://charts.zitadel.com, Repository_Username=, Repository_Password=, Chart=zitadel: tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm timestamp="2025-07-11T08:58:33.380+0200" +2025-07-11T08:58:33.380+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Metadata has changes, setting to unknown: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1799 tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 timestamp="2025-07-11T08:58:33.380+0200" +2025-07-11T08:58:33.380+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc0007a5560 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_rpc=PlanResourceChange tf_resource_type=helm_release timestamp="2025-07-11T08:58:33.380+0200" +2025-07-11T08:58:34.562+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Got chart: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_rpc=PlanResourceChange tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 @module=helm timestamp="2025-07-11T08:58:34.562+0200" +2025-07-11T08:58:34.562+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: tf_rpc=PlanResourceChange @module=helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_resource_type=helm_release timestamp="2025-07-11T08:58:34.562+0200" +2025-07-11T08:58:34.562+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Release validated: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 timestamp="2025-07-11T08:58:34.562+0200" +2025-07-11T08:58:34.562+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Done: @module=helm tf_req_id=37e0f305-2077-1f26-f889-a64eb52f4da5 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:34.562+0200" +2025-07-11T08:58:34.564+0200 [DEBUG] ReferenceTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin" references: [] +2025-07-11T08:58:34.564+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:34.566+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=972904 +2025-07-11T08:58:34.566+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:34.567+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file" references: [] +2025-07-11T08:58:34.567+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:34.569+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=972886 +2025-07-11T08:58:34.569+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:34.571+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=content_sha1 tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=53595a94-09ef-2348-ac40-217b76e24f12 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=local_file tf_rpc=ReadResource timestamp="2025-07-11T08:58:34.571+0200" +2025-07-11T08:58:34.571+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/local tf_rpc=ReadResource tf_attribute_path=id tf_req_id=53595a94-09ef-2348-ac40-217b76e24f12 tf_resource_type=local_file @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:34.571+0200" +2025-07-11T08:58:34.571+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=content tf_provider_addr=registry.terraform.io/hashicorp/local tf_resource_type=local_file tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=53595a94-09ef-2348-ac40-217b76e24f12 timestamp="2025-07-11T08:58:34.571+0200" +2025-07-11T08:58:34.571+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=content_sha512 tf_req_id=53595a94-09ef-2348-ac40-217b76e24f12 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/local tf_resource_type=local_file timestamp="2025-07-11T08:58:34.571+0200" +2025-07-11T08:58:34.571+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=content_md5 tf_provider_addr=registry.terraform.io/hashicorp/local tf_resource_type=local_file tf_rpc=ReadResource @module=sdk.framework tf_req_id=53595a94-09ef-2348-ac40-217b76e24f12 timestamp="2025-07-11T08:58:34.571+0200" +2025-07-11T08:58:34.571+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=filename tf_req_id=53595a94-09ef-2348-ac40-217b76e24f12 tf_resource_type=local_file @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/local tf_rpc=ReadResource timestamp="2025-07-11T08:58:34.571+0200" +2025-07-11T08:58:34.571+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: tf_req_id=53595a94-09ef-2348-ac40-217b76e24f12 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=directory_permission tf_provider_addr=registry.terraform.io/hashicorp/local tf_resource_type=local_file timestamp="2025-07-11T08:58:34.571+0200" +2025-07-11T08:58:34.571+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=content_sha256 tf_provider_addr=registry.terraform.io/hashicorp/local tf_resource_type=local_file tf_req_id=53595a94-09ef-2348-ac40-217b76e24f12 timestamp="2025-07-11T08:58:34.571+0200" +2025-07-11T08:58:34.571+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=file_permission tf_req_id=53595a94-09ef-2348-ac40-217b76e24f12 tf_resource_type=local_file tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/local timestamp="2025-07-11T08:58:34.571+0200" +2025-07-11T08:58:34.571+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/local tf_rpc=ReadResource tf_attribute_path=content_base64sha256 tf_req_id=53595a94-09ef-2348-ac40-217b76e24f12 tf_resource_type=local_file @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:58:34.571+0200" +2025-07-11T08:58:34.571+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/local tf_rpc=ReadResource tf_attribute_path=content_base64sha512 tf_req_id=53595a94-09ef-2348-ac40-217b76e24f12 tf_resource_type=local_file timestamp="2025-07-11T08:58:34.571+0200" +2025-07-11T08:58:34.573+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Detected value change between proposed new state and prior state: tf_req_id=9daf7b81-26f5-da75-3d81-61fcd567627d tf_rpc=PlanResourceChange tf_resource_type=local_file @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:220 @module=sdk.framework tf_attribute_path=content tf_provider_addr=registry.terraform.io/hashicorp/local timestamp="2025-07-11T08:58:34.573+0200" +2025-07-11T08:58:34.573+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Marking Computed attributes with null configuration values as unknown (known after apply) in the plan to prevent potential Terraform errors: tf_provider_addr=registry.terraform.io/hashicorp/local tf_resource_type=local_file @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:229 @module=sdk.framework tf_req_id=9daf7b81-26f5-da75-3d81-61fcd567627d tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:34.573+0200" +2025-07-11T08:58:34.573+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=9daf7b81-26f5-da75-3d81-61fcd567627d tf_resource_type=local_file tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 tf_attribute_path="AttributeName(\"content_base64sha256\")" timestamp="2025-07-11T08:58:34.573+0200" +2025-07-11T08:58:34.573+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: tf_provider_addr=registry.terraform.io/hashicorp/local tf_resource_type=local_file tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 tf_attribute_path="AttributeName(\"content_md5\")" tf_req_id=9daf7b81-26f5-da75-3d81-61fcd567627d @module=sdk.framework timestamp="2025-07-11T08:58:34.573+0200" +2025-07-11T08:58:34.574+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: tf_rpc=PlanResourceChange @module=sdk.framework tf_attribute_path="AttributeName(\"content_sha1\")" tf_resource_type=local_file @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=9daf7b81-26f5-da75-3d81-61fcd567627d timestamp="2025-07-11T08:58:34.574+0200" +2025-07-11T08:58:34.574+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: tf_attribute_path="AttributeName(\"content_sha256\")" tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=9daf7b81-26f5-da75-3d81-61fcd567627d tf_resource_type=local_file @module=sdk.framework tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 timestamp="2025-07-11T08:58:34.574+0200" +2025-07-11T08:58:34.574+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: tf_provider_addr=registry.terraform.io/hashicorp/local tf_resource_type=local_file tf_rpc=PlanResourceChange tf_attribute_path="AttributeName(\"content_base64sha512\")" tf_req_id=9daf7b81-26f5-da75-3d81-61fcd567627d @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 @module=sdk.framework timestamp="2025-07-11T08:58:34.574+0200" +2025-07-11T08:58:34.574+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: tf_resource_type=local_file tf_attribute_path="AttributeName(\"id\")" tf_req_id=9daf7b81-26f5-da75-3d81-61fcd567627d tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/local timestamp="2025-07-11T08:58:34.574+0200" +2025-07-11T08:58:34.574+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: tf_attribute_path="AttributeName(\"content_sha512\")" tf_provider_addr=registry.terraform.io/hashicorp/local tf_rpc=PlanResourceChange tf_req_id=9daf7b81-26f5-da75-3d81-61fcd567627d tf_resource_type=local_file @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 @module=sdk.framework timestamp="2025-07-11T08:58:34.574+0200" +2025-07-11T08:58:34.575+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Marking Computed attributes with null configuration values as unknown (known after apply) in the plan to prevent potential Terraform errors: @module=sdk.framework tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:229 tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=552b9a7c-70bc-9f66-4444-e68201bf17d3 tf_resource_type=local_file timestamp="2025-07-11T08:58:34.575+0200" +2025-07-11T08:58:34.575+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/local tf_resource_type=local_file tf_attribute_path="AttributeName(\"content_sha256\")" tf_req_id=552b9a7c-70bc-9f66-4444-e68201bf17d3 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:34.575+0200" +2025-07-11T08:58:34.575+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: tf_req_id=552b9a7c-70bc-9f66-4444-e68201bf17d3 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/local tf_resource_type=local_file tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 tf_attribute_path="AttributeName(\"content_md5\")" timestamp="2025-07-11T08:58:34.575+0200" +2025-07-11T08:58:34.575+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/local tf_attribute_path="AttributeName(\"content_sha512\")" tf_req_id=552b9a7c-70bc-9f66-4444-e68201bf17d3 tf_resource_type=local_file tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 timestamp="2025-07-11T08:58:34.575+0200" +2025-07-11T08:58:34.576+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: @module=sdk.framework tf_attribute_path="AttributeName(\"content_sha1\")" tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=552b9a7c-70bc-9f66-4444-e68201bf17d3 tf_resource_type=local_file tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 timestamp="2025-07-11T08:58:34.575+0200" +2025-07-11T08:58:34.576+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/local tf_resource_type=local_file tf_attribute_path="AttributeName(\"id\")" tf_req_id=552b9a7c-70bc-9f66-4444-e68201bf17d3 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:34.576+0200" +2025-07-11T08:58:34.576+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 tf_attribute_path="AttributeName(\"content_base64sha512\")" tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=552b9a7c-70bc-9f66-4444-e68201bf17d3 tf_resource_type=local_file tf_rpc=PlanResourceChange @module=sdk.framework timestamp="2025-07-11T08:58:34.576+0200" +2025-07-11T08:58:34.576+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: @module=sdk.framework tf_attribute_path="AttributeName(\"content_base64sha256\")" tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=552b9a7c-70bc-9f66-4444-e68201bf17d3 tf_resource_type=local_file @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 timestamp="2025-07-11T08:58:34.576+0200" +2025-07-11T08:58:34.577+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:34.578+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 id=972709 +2025-07-11T08:58:34.578+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:34.578+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:34.578+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:34.582+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:58:34.582+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=973275 +2025-07-11T08:58:34.582+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:58:34.590+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:34.590+0200" +2025-07-11T08:58:34.604+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:34.604+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin497433807 network=unix timestamp="2025-07-11T08:58:34.604+0200" +2025-07-11T08:58:34.613+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:34.613+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:34.618+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:58:34.618+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_req_id=7e2c3c24-88ad-13c7-d0c8-9d7490656eee tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:58:34.618+0200" +2025-07-11T08:58:34.618+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_req_id=7e2c3c24-88ad-13c7-d0c8-9d7490656eee @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=token tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:34.618+0200" +2025-07-11T08:58:34.618+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=sdk.framework tf_attribute_path=jwt_profile_file tf_req_id=7e2c3c24-88ad-13c7-d0c8-9d7490656eee tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:34.618+0200" +2025-07-11T08:58:34.618+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_req_id=7e2c3c24-88ad-13c7-d0c8-9d7490656eee @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=jwt_profile_file timestamp="2025-07-11T08:58:34.618+0200" +2025-07-11T08:58:34.618+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_mux_provider="*proto6server.Server" tf_req_id=7e2c3c24-88ad-13c7-d0c8-9d7490656eee @module=sdk.framework tf_attribute_path=jwt_profile_json tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:58:34.618+0200" +2025-07-11T08:58:34.618+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=jwt_profile_json tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_mux_provider="*proto6server.Server" tf_req_id=7e2c3c24-88ad-13c7-d0c8-9d7490656eee tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:34.618+0200" +2025-07-11T08:58:34.618+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=973291 +2025-07-11T08:58:34.618+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_rpc=ValidateProviderConfig tf_req_id=7e2c3c24-88ad-13c7-d0c8-9d7490656eee @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:58:34.618+0200" +2025-07-11T08:58:34.618+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:58:34.618+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=7e2c3c24-88ad-13c7-d0c8-9d7490656eee tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 timestamp="2025-07-11T08:58:34.618+0200" +2025-07-11T08:58:34.618+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=sdk.framework tf_attribute_path=domain tf_req_id=7e2c3c24-88ad-13c7-d0c8-9d7490656eee tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:34.618+0200" +2025-07-11T08:58:34.618+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=7e2c3c24-88ad-13c7-d0c8-9d7490656eee tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework timestamp="2025-07-11T08:58:34.618+0200" +2025-07-11T08:58:34.618+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" tf_req_id=7e2c3c24-88ad-13c7-d0c8-9d7490656eee @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T08:58:34.618+0200" +2025-07-11T08:58:34.618+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=7e2c3c24-88ad-13c7-d0c8-9d7490656eee tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework timestamp="2025-07-11T08:58:34.618+0200" +2025-07-11T08:58:34.625+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:34.625+0200" +2025-07-11T08:58:34.637+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:34.637+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin1307581239 network=unix timestamp="2025-07-11T08:58:34.637+0200" +2025-07-11T08:58:34.645+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:34.645+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:34.645+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Provider Configure: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:12 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=8e9bbc65-9111-d10b-1698-3c63a12803a8 tf_rpc=ConfigureProvider tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:58:34.645+0200" +2025-07-11T08:58:34.645+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Provider Configure: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:20 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=8e9bbc65-9111-d10b-1698-3c63a12803a8 tf_rpc=ConfigureProvider timestamp="2025-07-11T08:58:34.645+0200" +2025-07-11T08:58:34.649+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:58:34.649+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=973303 +2025-07-11T08:58:34.649+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:58:34.657+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:34.656+0200" +2025-07-11T08:58:34.668+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:34.668+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin604241760 network=unix timestamp="2025-07-11T08:58:34.668+0200" +2025-07-11T08:58:34.682+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=38d0ab82-e6f6-9b69-404f-06a30ce558ec @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=jwt_profile_file timestamp="2025-07-11T08:58:34.682+0200" +2025-07-11T08:58:34.682+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_rpc=ValidateProviderConfig tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=38d0ab82-e6f6-9b69-404f-06a30ce558ec timestamp="2025-07-11T08:58:34.682+0200" +2025-07-11T08:58:34.682+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_mux_provider="*proto6server.Server" @module=sdk.framework tf_attribute_path=jwt_profile_json tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=38d0ab82-e6f6-9b69-404f-06a30ce558ec tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T08:58:34.682+0200" +2025-07-11T08:58:34.682+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=38d0ab82-e6f6-9b69-404f-06a30ce558ec tf_attribute_path=jwt_profile_json tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:58:34.682+0200" +2025-07-11T08:58:34.682+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=insecure tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=b1d4c2c7-2646-9253-4ff4-1d6c180ce1c1 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T08:58:34.682+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_req_id=38d0ab82-e6f6-9b69-404f-06a30ce558ec tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:34.682+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=38d0ab82-e6f6-9b69-404f-06a30ce558ec tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:34.682+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=insecure tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=b1d4c2c7-2646-9253-4ff4-1d6c180ce1c1 @module=sdk.framework tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:58:34.682+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=38d0ab82-e6f6-9b69-404f-06a30ce558ec @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:34.682+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_req_id=38d0ab82-e6f6-9b69-404f-06a30ce558ec tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:58:34.682+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=insecure tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_mux_provider="*proto6server.Server" tf_req_id=38d0ab82-e6f6-9b69-404f-06a30ce558ec timestamp="2025-07-11T08:58:34.683+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=38d0ab82-e6f6-9b69-404f-06a30ce558ec tf_rpc=ValidateProviderConfig @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 timestamp="2025-07-11T08:58:34.683+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=38d0ab82-e6f6-9b69-404f-06a30ce558ec @module=sdk.framework tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:34.683+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @module=sdk.framework tf_req_id=38d0ab82-e6f6-9b69-404f-06a30ce558ec timestamp="2025-07-11T08:58:34.683+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=token @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=b1d4c2c7-2646-9253-4ff4-1d6c180ce1c1 tf_rpc=ValidateProviderConfig @module=sdk.framework timestamp="2025-07-11T08:58:34.682+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=b1d4c2c7-2646-9253-4ff4-1d6c180ce1c1 @module=sdk.framework tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:34.682+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=jwt_profile_file tf_req_id=b1d4c2c7-2646-9253-4ff4-1d6c180ce1c1 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T08:58:34.682+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_req_id=b1d4c2c7-2646-9253-4ff4-1d6c180ce1c1 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:34.682+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=jwt_profile_json tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=b1d4c2c7-2646-9253-4ff4-1d6c180ce1c1 tf_rpc=ValidateProviderConfig @module=sdk.framework timestamp="2025-07-11T08:58:34.682+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=jwt_profile_json tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_mux_provider="*proto6server.Server" tf_req_id=b1d4c2c7-2646-9253-4ff4-1d6c180ce1c1 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:58:34.682+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=b1d4c2c7-2646-9253-4ff4-1d6c180ce1c1 tf_rpc=ValidateProviderConfig tf_attribute_path=port tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:58:34.683+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig tf_attribute_path=port tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=b1d4c2c7-2646-9253-4ff4-1d6c180ce1c1 timestamp="2025-07-11T08:58:34.683+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=b1d4c2c7-2646-9253-4ff4-1d6c180ce1c1 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=domain timestamp="2025-07-11T08:58:34.683+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=b1d4c2c7-2646-9253-4ff4-1d6c180ce1c1 tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=domain tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:58:34.683+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Provider Configure: tf_req_id=5a8e1987-afb9-6b84-3317-191ef639e185 tf_rpc=ConfigureProvider @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:12 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:58:34.683+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Provider Configure: tf_req_id=56bbb8b0-af79-16f6-3e9e-e1ec30275211 tf_rpc=ConfigureProvider @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:12 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:58:34.683+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Provider Configure: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=5a8e1987-afb9-6b84-3317-191ef639e185 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:20 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_rpc=ConfigureProvider timestamp="2025-07-11T08:58:34.683+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Provider Configure: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=56bbb8b0-af79-16f6-3e9e-e1ec30275211 tf_rpc=ConfigureProvider @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:20 @module=sdk.framework tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:58:34.683+0200" +2025-07-11T08:58:34.683+0200 [DEBUG] Resource instance state not found for node "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default", instance module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default +2025-07-11T08:58:34.683+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default" references: [] +2025-07-11T08:58:34.683+0200 [DEBUG] refresh: module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default: no state, so not refreshing +2025-07-11T08:58:34.685+0200 [DEBUG] Resource instance state not found for node "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default", instance module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default +2025-07-11T08:58:34.685+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default" references: [] +2025-07-11T08:58:34.685+0200 [DEBUG] Resource instance state not found for node "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default", instance module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default +2025-07-11T08:58:34.685+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default" references: [] +2025-07-11T08:58:34.685+0200 [DEBUG] refresh: module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default: no state, so not refreshing +2025-07-11T08:58:34.685+0200 [DEBUG] Resource instance state not found for node "module.zitadel-argocd.zitadel_action.groups-claim", instance module.zitadel-argocd.zitadel_action.groups-claim +2025-07-11T08:58:34.685+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_action.groups-claim" references: [] +2025-07-11T08:58:34.686+0200 [DEBUG] refresh: module.zitadel-argocd.zitadel_action.groups-claim: no state, so not refreshing +2025-07-11T08:58:34.686+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default +2025-07-11T08:58:34.686+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default" references: [] +2025-07-11T08:58:34.686+0200 [DEBUG] refresh: module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default: no state, so not refreshing +2025-07-11T08:58:34.686+0200 [DEBUG] Resource instance state not found for node "module.zitadel-argocd.module.zitadel_project.zitadel_project.default", instance module.zitadel-argocd.module.zitadel_project.zitadel_project.default +2025-07-11T08:58:34.686+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default" references: [] +2025-07-11T08:58:34.686+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default: no state, so not refreshing +2025-07-11T08:58:34.686+0200 [DEBUG] refresh: module.zitadel-argocd.module.zitadel_project.zitadel_project.default: no state, so not refreshing +2025-07-11T08:58:34.687+0200 [DEBUG] Resource instance state not found for node "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token", instance module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token +2025-07-11T08:58:34.687+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token" references: [] +2025-07-11T08:58:34.687+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .gender: planned value cty.StringVal("GENDER_UNSPECIFIED") for a non-computed attribute + - .preferred_language: planned value cty.StringVal("und") for a non-computed attribute +2025-07-11T08:58:34.688+0200 [DEBUG] Resource instance state not found for node "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info", instance module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info +2025-07-11T08:58:34.688+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info" references: [] +2025-07-11T08:58:34.688+0200 [DEBUG] refresh: module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token: no state, so not refreshing +2025-07-11T08:58:34.688+0200 [DEBUG] refresh: module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info: no state, so not refreshing +2025-07-11T08:58:34.688+0200 [DEBUG] Resource instance state not found for node "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default", instance module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default +2025-07-11T08:58:34.688+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default" references: [] +2025-07-11T08:58:34.688+0200 [DEBUG] refresh: module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default: no state, so not refreshing +2025-07-11T08:58:34.689+0200 [DEBUG] Resource instance state not found for node "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default", instance module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default +2025-07-11T08:58:34.689+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default" references: [] +2025-07-11T08:58:34.689+0200 [DEBUG] Resource instance state not found for node "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0]", instance module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0] +2025-07-11T08:58:34.689+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0]" references: [] +2025-07-11T08:58:34.689+0200 [DEBUG] refresh: module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default: no state, so not refreshing +2025-07-11T08:58:34.689+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .action_ids: planned value cty.UnknownVal(cty.Set(cty.String)) does not match config value cty.SetVal([]cty.Value{cty.UnknownVal(cty.String)}) +2025-07-11T08:58:34.689+0200 [DEBUG] Resource instance state not found for node "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]", instance module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0] +2025-07-11T08:58:34.689+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]" references: [] +2025-07-11T08:58:34.689+0200 [DEBUG] Resource instance state not found for node "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default", instance module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default +2025-07-11T08:58:34.689+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default" references: [] +2025-07-11T08:58:34.690+0200 [DEBUG] refresh: module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0]: no state, so not refreshing +2025-07-11T08:58:34.690+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .action_ids: planned value cty.UnknownVal(cty.Set(cty.String)) does not match config value cty.SetVal([]cty.Value{cty.UnknownVal(cty.String)}) +2025-07-11T08:58:34.690+0200 [DEBUG] refresh: module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]: no state, so not refreshing +2025-07-11T08:58:34.690+0200 [DEBUG] Resource instance state not found for node "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default", instance module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default +2025-07-11T08:58:34.690+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [] +2025-07-11T08:58:34.690+0200 [DEBUG] refresh: module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default: no state, so not refreshing +2025-07-11T08:58:34.690+0200 [DEBUG] Resource instance state not found for node "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]", instance module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0] +2025-07-11T08:58:34.690+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .idps: planned value cty.UnknownVal(cty.Set(cty.String)) does not match config value cty.SetVal([]cty.Value{cty.UnknownVal(cty.String)}) +2025-07-11T08:58:34.690+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]" references: [] +2025-07-11T08:58:34.690+0200 [DEBUG] refresh: module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default: no state, so not refreshing +2025-07-11T08:58:34.690+0200 [DEBUG] refresh: module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]: no state, so not refreshing +2025-07-11T08:58:34.691+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0] +2025-07-11T08:58:34.691+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]" references: [] +2025-07-11T08:58:34.691+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]: no state, so not refreshing +2025-07-11T08:58:34.691+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:34.691+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .version: planned value cty.StringVal("OIDC_VERSION_1_0") for a non-computed attribute + - .clock_skew: planned value cty.StringVal("0s") for a non-computed attribute +2025-07-11T08:58:34.692+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=973303 +2025-07-11T08:58:34.693+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:34.693+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:34.694+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7] +2025-07-11T08:58:34.694+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0] +2025-07-11T08:58:34.694+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1] +2025-07-11T08:58:34.694+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2] +2025-07-11T08:58:34.694+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3] +2025-07-11T08:58:34.694+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4] +2025-07-11T08:58:34.694+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5] +2025-07-11T08:58:34.694+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6] +2025-07-11T08:58:34.694+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]" references: [] +2025-07-11T08:58:34.694+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1]" references: [] +2025-07-11T08:58:34.694+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=973275 +2025-07-11T08:58:34.694+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2]" references: [] +2025-07-11T08:58:34.694+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:34.694+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3]" references: [] +2025-07-11T08:58:34.694+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4]" references: [] +2025-07-11T08:58:34.694+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]" references: [] +2025-07-11T08:58:34.694+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]" references: [] +2025-07-11T08:58:34.694+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7]" references: [] +2025-07-11T08:58:34.694+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7]: no state, so not refreshing +2025-07-11T08:58:34.694+0200 [DEBUG] Resource instance state not found for node "module.argocd.data.external.processed_values", instance module.argocd.data.external.processed_values +2025-07-11T08:58:34.694+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.external.processed_values" references: [] +2025-07-11T08:58:34.694+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4]: no state, so not refreshing +2025-07-11T08:58:34.694+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]: no state, so not refreshing +2025-07-11T08:58:34.694+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2]: no state, so not refreshing +2025-07-11T08:58:34.694+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]: no state, so not refreshing +2025-07-11T08:58:34.694+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]: no state, so not refreshing +2025-07-11T08:58:34.694+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1]: no state, so not refreshing +2025-07-11T08:58:34.694+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3]: no state, so not refreshing +2025-07-11T08:58:34.695+0200 [DEBUG] Resource instance state not found for node "module.argocd.helm_release.argocd", instance module.argocd.helm_release.argocd +2025-07-11T08:58:34.695+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd" references: [] +2025-07-11T08:58:34.695+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:34.696+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 id=972681 +2025-07-11T08:58:34.696+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:34.696+0200 [DEBUG] refresh: module.argocd.helm_release.argocd: no state, so not refreshing +2025-07-11T08:58:34.696+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:34.697+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0008621c0 Settings:0xc000868120 RegistryClient:0xc000828580 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a05c528b-81d8-078d-acb1-b36e9cf664c2 tf_resource_type=helm_release tf_rpc=ValidateResourceConfig @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm timestamp="2025-07-11T08:58:34.697+0200" +2025-07-11T08:58:34.697+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0] +2025-07-11T08:58:34.697+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]" references: [] +2025-07-11T08:58:34.697+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]: no state, so not refreshing +2025-07-11T08:58:34.699+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0] +2025-07-11T08:58:34.699+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1] +2025-07-11T08:58:34.699+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0]" references: [] +2025-07-11T08:58:34.699+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]" references: [] +2025-07-11T08:58:34.699+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0]: no state, so not refreshing +2025-07-11T08:58:34.699+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]: no state, so not refreshing +2025-07-11T08:58:34.699+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0008621c0 Settings:0xc000868120 RegistryClient:0xc000828580 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_req_id=a52c29ac-34a5-f074-b61a-909a296f7ef5 tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:34.699+0200" +2025-07-11T08:58:34.700+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default +2025-07-11T08:58:34.700+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [] +2025-07-11T08:58:34.700+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default: no state, so not refreshing +2025-07-11T08:58:34.700+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Marking Computed attributes with null configuration values as unknown (known after apply) in the plan to prevent potential Terraform errors: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:250 tf_req_id=a52c29ac-34a5-f074-b61a-909a296f7ef5 timestamp="2025-07-11T08:58:34.700+0200" +2025-07-11T08:58:34.701+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a52c29ac-34a5-f074-b61a-909a296f7ef5 tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_attribute_path="AttributeName(\"id\")" timestamp="2025-07-11T08:58:34.700+0200" +2025-07-11T08:58:34.701+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_attribute_path="AttributeName(\"metadata\")" tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a52c29ac-34a5-f074-b61a-909a296f7ef5 tf_resource_type=helm_release @module=sdk.framework timestamp="2025-07-11T08:58:34.701+0200" +2025-07-11T08:58:34.701+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @module=sdk.framework tf_req_id=a52c29ac-34a5-f074-b61a-909a296f7ef5 tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_attribute_path="AttributeName(\"manifest\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:34.701+0200" +2025-07-11T08:58:34.701+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @module=sdk.framework tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_attribute_path="AttributeName(\"status\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a52c29ac-34a5-f074-b61a-909a296f7ef5 timestamp="2025-07-11T08:58:34.701+0200" +2025-07-11T08:58:34.703+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:58:34.703+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default" references: [] +2025-07-11T08:58:34.703+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default: no state, so not refreshing +2025-07-11T08:58:34.704+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"argo-cd" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID: Keyring: Lint:false Manifest: MaxHistory:0 Metadata: Name:"argocd" Namespace:"argocd" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive:[{"name":"config.secret.argocdServerAdminPassword","type":,"value":"3w=tr!042qbxD7d?22Ayj(WFW6qRi@N)yRUJ8KQ:eEDAStFZ"}] SkipCrds:false Status: Timeout:300 Values:[] Verify:false Version:"7.0.20" Wait:true WaitForJobs:true}: @module=helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a52c29ac-34a5-f074-b61a-909a296f7ef5 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:34.704+0200" +2025-07-11T08:58:34.704+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: : tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a52c29ac-34a5-f074-b61a-909a296f7ef5 timestamp="2025-07-11T08:58:34.704+0200" +2025-07-11T08:58:34.704+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Start: tf_req_id=a52c29ac-34a5-f074-b61a-909a296f7ef5 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:34.704+0200" +2025-07-11T08:58:34.704+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a52c29ac-34a5-f074-b61a-909a296f7ef5 tf_rpc=PlanResourceChange @module=helm KubernetesData=map[] tf_resource_type=helm_release timestamp="2025-07-11T08:58:34.704+0200" +2025-07-11T08:58:34.704+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api +2025-07-11T08:58:34.705+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api" references: [] +2025-07-11T08:58:34.705+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api: no state, so not refreshing +2025-07-11T08:58:34.705+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm tf_req_id=a52c29ac-34a5-f074-b61a-909a296f7ef5 timestamp="2025-07-11T08:58:34.705+0200" +2025-07-11T08:58:34.705+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_rpc=PlanResourceChange tf_req_id=a52c29ac-34a5-f074-b61a-909a296f7ef5 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:34.705+0200" +2025-07-11T08:58:34.705+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Initial Values: Name=argocd, Namespace=argocd, Repository=https://charts.bitnami.com/bitnami, Repository_Username=, Repository_Password=, Chart=argo-cd: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 tf_req_id=a52c29ac-34a5-f074-b61a-909a296f7ef5 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:34.705+0200" +2025-07-11T08:58:34.705+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Metadata has changes, setting to unknown: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1799 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a52c29ac-34a5-f074-b61a-909a296f7ef5 tf_resource_type=helm_release @module=helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:34.705+0200" +2025-07-11T08:58:34.705+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:58:34.705+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc000868240 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a52c29ac-34a5-f074-b61a-909a296f7ef5 tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 @module=helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:34.705+0200" +2025-07-11T08:58:34.705+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [] +2025-07-11T08:58:34.705+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default: no state, so not refreshing +2025-07-11T08:58:34.707+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:58:34.707+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default" references: [] +2025-07-11T08:58:34.707+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default: no state, so not refreshing +2025-07-11T08:58:34.707+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .version: planned value cty.StringVal("OIDC_VERSION_1_0") for a non-computed attribute + - .clock_skew: planned value cty.StringVal("0s") for a non-computed attribute +2025-07-11T08:58:34.708+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent +2025-07-11T08:58:34.708+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent" references: [] +2025-07-11T08:58:34.708+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent: no state, so not refreshing +2025-07-11T08:58:34.708+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .data: sensitive planned value does not match config value + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:58:34.709+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api +2025-07-11T08:58:34.709+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api" references: [] +2025-07-11T08:58:34.709+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:58:34.709+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default" references: [] +2025-07-11T08:58:34.709+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api: no state, so not refreshing +2025-07-11T08:58:34.709+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:58:34.709+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [] +2025-07-11T08:58:34.709+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default: no state, so not refreshing +2025-07-11T08:58:34.709+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default: no state, so not refreshing +2025-07-11T08:58:34.710+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .data: sensitive planned value does not match config value + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:58:34.711+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .version: planned value cty.StringVal("OIDC_VERSION_1_0") for a non-computed attribute + - .clock_skew: planned value cty.StringVal("0s") for a non-computed attribute +2025-07-11T08:58:34.712+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .data: sensitive planned value does not match config value +2025-07-11T08:58:34.712+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0] +2025-07-11T08:58:34.712+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]" references: [] +2025-07-11T08:58:34.712+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent +2025-07-11T08:58:34.712+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent" references: [] +2025-07-11T08:58:34.712+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]: no state, so not refreshing +2025-07-11T08:58:34.712+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:58:34.712+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [] +2025-07-11T08:58:34.712+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent: no state, so not refreshing +2025-07-11T08:58:34.713+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default: no state, so not refreshing +2025-07-11T08:58:34.714+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .data: sensitive planned value does not match config value + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:58:34.714+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .data: sensitive planned value does not match config value + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:58:34.715+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:58:34.715+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default" references: [] +2025-07-11T08:58:34.715+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default: no state, so not refreshing +2025-07-11T08:58:34.716+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api +2025-07-11T08:58:34.716+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api" references: [] +2025-07-11T08:58:34.716+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:58:34.716+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default" references: [] +2025-07-11T08:58:34.716+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api: no state, so not refreshing +2025-07-11T08:58:34.716+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:58:34.716+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [] +2025-07-11T08:58:34.716+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default: no state, so not refreshing +2025-07-11T08:58:34.716+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default: no state, so not refreshing +2025-07-11T08:58:34.718+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:58:34.718+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [] +2025-07-11T08:58:34.718+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0] +2025-07-11T08:58:34.718+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .clock_skew: planned value cty.StringVal("0s") for a non-computed attribute + - .version: planned value cty.StringVal("OIDC_VERSION_1_0") for a non-computed attribute +2025-07-11T08:58:34.718+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]" references: [] +2025-07-11T08:58:34.718+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default: no state, so not refreshing +2025-07-11T08:58:34.718+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .data: sensitive planned value does not match config value +2025-07-11T08:58:34.718+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]: no state, so not refreshing +2025-07-11T08:58:34.719+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent +2025-07-11T08:58:34.719+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent" references: [] +2025-07-11T08:58:34.719+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent: no state, so not refreshing +2025-07-11T08:58:34.720+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .data: sensitive planned value does not match config value +2025-07-11T08:58:34.720+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .data: sensitive planned value does not match config value + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:58:34.721+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:58:34.721+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default" references: [] +2025-07-11T08:58:34.721+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default: no state, so not refreshing +2025-07-11T08:58:34.722+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api +2025-07-11T08:58:34.722+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api" references: [] +2025-07-11T08:58:34.722+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:58:34.722+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [] +2025-07-11T08:58:34.722+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:58:34.722+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default" references: [] +2025-07-11T08:58:34.722+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api: no state, so not refreshing +2025-07-11T08:58:34.723+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default: no state, so not refreshing +2025-07-11T08:58:34.723+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default: no state, so not refreshing +2025-07-11T08:58:34.724+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .data: sensitive planned value does not match config value +2025-07-11T08:58:34.724+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .clock_skew: planned value cty.StringVal("0s") for a non-computed attribute + - .version: planned value cty.StringVal("OIDC_VERSION_1_0") for a non-computed attribute +2025-07-11T08:58:34.724+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0] +2025-07-11T08:58:34.724+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]" references: [] +2025-07-11T08:58:34.724+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]: no state, so not refreshing +2025-07-11T08:58:34.724+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:58:34.724+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [] +2025-07-11T08:58:34.724+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default: no state, so not refreshing +2025-07-11T08:58:34.725+0200 [DEBUG] Resource instance state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent +2025-07-11T08:58:34.725+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent" references: [] +2025-07-11T08:58:34.725+0200 [DEBUG] refresh: module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent: no state, so not refreshing +2025-07-11T08:58:34.726+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .data: sensitive planned value does not match config value + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:58:34.726+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:34.726+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .data: sensitive planned value does not match config value + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:58:34.727+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=973291 +2025-07-11T08:58:34.727+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:34.728+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:34.730+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=972804 +2025-07-11T08:58:34.730+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:39.912+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Got chart: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 @module=helm tf_req_id=a52c29ac-34a5-f074-b61a-909a296f7ef5 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:39.911+0200" +2025-07-11T08:58:39.912+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: @module=helm tf_req_id=a52c29ac-34a5-f074-b61a-909a296f7ef5 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 timestamp="2025-07-11T08:58:39.911+0200" +2025-07-11T08:58:39.912+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Release validated: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 tf_req_id=a52c29ac-34a5-f074-b61a-909a296f7ef5 timestamp="2025-07-11T08:58:39.911+0200" +2025-07-11T08:58:39.912+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Done: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=a52c29ac-34a5-f074-b61a-909a296f7ef5 tf_rpc=PlanResourceChange @module=helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 timestamp="2025-07-11T08:58:39.911+0200" +2025-07-11T08:58:39.913+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:39.913+0200 [DEBUG] Resource instance state not found for node "module.monitoring.helm_release.kube_prometheus_stack", instance module.monitoring.helm_release.kube_prometheus_stack +2025-07-11T08:58:39.914+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack" references: [] +2025-07-11T08:58:39.919+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=972756 +2025-07-11T08:58:39.919+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:39.919+0200 [DEBUG] refresh: module.monitoring.helm_release.kube_prometheus_stack: no state, so not refreshing +2025-07-11T08:58:39.919+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:39.921+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000710380 Settings:0xc000757440 RegistryClient:0xc000762500 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_req_id=9383f748-419b-58d4-1672-4fdc642f11b3 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ValidateResourceConfig timestamp="2025-07-11T08:58:39.921+0200" +2025-07-11T08:58:39.922+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000710380 Settings:0xc000757440 RegistryClient:0xc000762500 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_req_id=8f68cd8e-e5ae-a3d4-8d10-c78cd06a6483 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:39.922+0200" +2025-07-11T08:58:39.923+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Marking Computed attributes with null configuration values as unknown (known after apply) in the plan to prevent potential Terraform errors: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:250 tf_req_id=8f68cd8e-e5ae-a3d4-8d10-c78cd06a6483 tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:39.923+0200" +2025-07-11T08:58:39.923+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_attribute_path="AttributeName(\"id\")" tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_req_id=8f68cd8e-e5ae-a3d4-8d10-c78cd06a6483 timestamp="2025-07-11T08:58:39.923+0200" +2025-07-11T08:58:39.923+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_attribute_path="AttributeName(\"metadata\")" tf_req_id=8f68cd8e-e5ae-a3d4-8d10-c78cd06a6483 tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:39.923+0200" +2025-07-11T08:58:39.924+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @module=sdk.framework tf_attribute_path="AttributeName(\"status\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8f68cd8e-e5ae-a3d4-8d10-c78cd06a6483 tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_resource_type=helm_release timestamp="2025-07-11T08:58:39.924+0200" +2025-07-11T08:58:39.924+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_attribute_path="AttributeName(\"manifest\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_req_id=8f68cd8e-e5ae-a3d4-8d10-c78cd06a6483 tf_resource_type=helm_release timestamp="2025-07-11T08:58:39.924+0200" +2025-07-11T08:58:39.927+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"kube-prometheus-stack" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID: Keyring: Lint:false Manifest: MaxHistory:0 Metadata: Name:"monitoring" Namespace:"monitoring" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://prometheus-community.github.io/helm-charts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status: Timeout:300 Values:["additionalPrometheusRulesMap:\n custom-app-rules:\n groups:\n - name: aspnetcore\n interval: 30s\n rules:\n - alert: HighRequestLatency\n expr: histogram_quantile(0.95, http_request_duration_seconds_bucket) > 0.5\n for: 5m\n labels:\n severity: warning\n annotations:\n summary: \"High request latency on {{ $labels.instance }}\"\n description: \"95th percentile latency is above 500ms (current value: {{ $value }}s)\"\n - alert: HighErrorRate\n expr: 'rate(http_requests_total{status=~\"5..\"}[5m]) > 0.05'\n for: 5m\n labels:\n severity: critical\n annotations:\n summary: \"High error rate on {{ $labels.instance }}\"\n description: \"Error rate is above 5% (current value: {{ $value }})\"\n \nprometheus:\n prometheusSpec:\n retention: 24h\n retentionSize: 10GB\n\n resources:\n requests:\n memory: 200Mi\n cpu: 100m\n limits:\n memory: 500Mi\n cpu: 500m\n\n # Remote write to VictoriaMetrics\n remoteWrite:\n - url: https://metrics.binarysunset.dev/api/v1/write\n basicAuth:\n username:\n name: prometheus-remote-write-auth\n key: username\n password:\n name: prometheus-remote-write-auth\n key: password\n writeRelabelConfigs:\n - sourceLabels: [\"__name__\"]\n regex: \"(up|kube_.*|container_.*|node_.*|http_.*|process_.*)\"\n action: keep\n\n # Remote read from VictoriaMetrics for old data\n remoteRead:\n - url: https://metrics.binarysunset.dev/api/v1/read\n basicAuth:\n username:\n name: prometheus-remote-write-auth\n key: username\n password:\n name: prometheus-remote-write-auth\n key: password\n readRecent: false # Only read data older than local retention\n\nalertmanager:\n enabled: true\n alertmanagerSpec:\n replicas: 1\n resources:\n requests:\n memory: 50Mi\n cpu: 10m\n limits:\n memory: 150Mi\n cpu: 100m\n retention: 24h\n\ngrafana:\n resources:\n requests:\n memory: 100Mi\n cpu: 50m\n limits:\n memory: 300Mi\n cpu: 200m\n persistence:\n enabled: true\n size: 1Gi\n adminUser: admin\n adminPassword: acf0vJ0XUVECnChUTU1u6WCBUeXXJVKB2qwpsWQH\n\nkubeStateMetrics:\n resources:\n requests:\n memory: 50Mi\n cpu: 10m\n limits:\n memory: 150Mi\n cpu: 100m\n\nnodeExporter:\n resources:\n requests:\n memory: 30Mi\n cpu: 10m\n limits:\n memory: 100Mi\n cpu: 100m\n\nprometheusOperator:\n resources:\n requests:\n memory: 100Mi\n cpu: 50m\n limits:\n memory: 300Mi\n cpu: 200m\n\ndefaultRules:\n create: true\n rules:\n alertmanager: true\n etcd: false\n general: true\n k8s: true\n kubernetesApps: true\n kubernetesResources: true\n kubernetesStorage: true\n kubernetesSystem: true\n node: true\n prometheus: true"] Verify:false Version:"75.9.0" Wait:true WaitForJobs:false}: tf_req_id=8f68cd8e-e5ae-a3d4-8d10-c78cd06a6483 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:39.927+0200" +2025-07-11T08:58:39.927+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: : tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 tf_req_id=8f68cd8e-e5ae-a3d4-8d10-c78cd06a6483 tf_rpc=PlanResourceChange @module=helm timestamp="2025-07-11T08:58:39.927+0200" +2025-07-11T08:58:39.927+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Start: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 tf_req_id=8f68cd8e-e5ae-a3d4-8d10-c78cd06a6483 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:39.927+0200" +2025-07-11T08:58:39.927+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 KubernetesData=map[] tf_req_id=8f68cd8e-e5ae-a3d4-8d10-c78cd06a6483 tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:39.927+0200" +2025-07-11T08:58:39.927+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange tf_req_id=8f68cd8e-e5ae-a3d4-8d10-c78cd06a6483 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm configPaths=[] timestamp="2025-07-11T08:58:39.927+0200" +2025-07-11T08:58:39.927+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8f68cd8e-e5ae-a3d4-8d10-c78cd06a6483 tf_rpc=PlanResourceChange @module=helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:39.927+0200" +2025-07-11T08:58:39.927+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Initial Values: Name=monitoring, Namespace=monitoring, Repository=https://prometheus-community.github.io/helm-charts, Repository_Username=, Repository_Password=, Chart=kube-prometheus-stack: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8f68cd8e-e5ae-a3d4-8d10-c78cd06a6483 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm timestamp="2025-07-11T08:58:39.927+0200" +2025-07-11T08:58:39.927+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Metadata has changes, setting to unknown: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1799 @module=helm tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8f68cd8e-e5ae-a3d4-8d10-c78cd06a6483 timestamp="2025-07-11T08:58:39.927+0200" +2025-07-11T08:58:39.927+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc000757560 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=8f68cd8e-e5ae-a3d4-8d10-c78cd06a6483 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:39.927+0200" +2025-07-11T08:58:44.526+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Got chart: tf_req_id=8f68cd8e-e5ae-a3d4-8d10-c78cd06a6483 tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 timestamp="2025-07-11T08:58:44.526+0200" +2025-07-11T08:58:44.526+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8f68cd8e-e5ae-a3d4-8d10-c78cd06a6483 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 @module=helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:44.526+0200" +2025-07-11T08:58:44.526+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Release validated: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8f68cd8e-e5ae-a3d4-8d10-c78cd06a6483 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 @module=helm timestamp="2025-07-11T08:58:44.526+0200" +2025-07-11T08:58:44.526+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Done: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 @module=helm tf_req_id=8f68cd8e-e5ae-a3d4-8d10-c78cd06a6483 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:44.526+0200" +2025-07-11T08:58:44.528+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:44.531+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=972822 +2025-07-11T08:58:44.531+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:44.532+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:44.533+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 id=972697 +2025-07-11T08:58:44.533+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:44.544+0200 [DEBUG] building apply graph to check for errors +2025-07-11T08:58:44.549+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0] +2025-07-11T08:58:44.549+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:58:44.549+0200 [DEBUG] Resource state not found for node "module.monitoring.helm_release.kube_prometheus_stack", instance module.monitoring.helm_release.kube_prometheus_stack +2025-07-11T08:58:44.549+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:58:44.549+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:58:44.549+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0] +2025-07-11T08:58:44.549+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.zitadel_action.groups-claim", instance module.zitadel-argocd.zitadel_action.groups-claim +2025-07-11T08:58:44.549+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default +2025-07-11T08:58:44.549+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent +2025-07-11T08:58:44.549+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token", instance module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token +2025-07-11T08:58:44.549+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:58:44.549+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5] +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.zitadel.data.kubernetes_secret.zitadel_admin", instance module.zitadel.data.kubernetes_secret.zitadel_admin +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default", instance module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.argocd.helm_release.argocd", instance module.argocd.helm_release.argocd +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default", instance module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0] +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0] +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]", instance module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0] +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default", instance module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0]", instance module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0] +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default", instance module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.argocd.data.external.processed_values", instance module.argocd.data.external.processed_values +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0] +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6] +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default", instance module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project.zitadel_project.default", instance module.zitadel-argocd.module.zitadel_project.zitadel_project.default +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3] +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0] +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default", instance module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2] +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1] +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1] +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]", instance module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0] +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0] +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info", instance module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default", instance module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4] +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7] +2025-07-11T08:58:44.550+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api +2025-07-11T08:58:44.556+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/local"], implied first by module.zitadel.local_file.zitadel_jwt_profile_file (expand) +2025-07-11T08:58:44.556+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/zitadel/zitadel"], implied first by module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:58:44.556+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/random"], implied first by module.postgresql.random_password.postgresql_user_password (expand) +2025-07-11T08:58:44.556+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/external"], implied first by module.argocd.data.external.processed_values +2025-07-11T08:58:44.556+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/null"], implied first by module.tenant-365zon.module.minio.null_resource.health_check (expand) +2025-07-11T08:58:44.557+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.557+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.557+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.557+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_replica_set_key (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:44.557+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.557+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.557+0200 [DEBUG] ProviderTransformer: "module.monitoring.random_password.grafana_admin_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:44.557+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.557+0200 [DEBUG] ProviderTransformer: "module.argocd.random_password.admin_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:44.557+0200 [DEBUG] ProviderTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn (expand)" (*terraform.nodeExpandApplyableResource) needs module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:44.557+0200 [DEBUG] ProviderTransformer: "module.zitadel.helm_release.zitadel (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:44.557+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.minio.helm_release.minio (expand)" (*terraform.nodeExpandApplyableResource) needs module.minio.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin" (*terraform.NodeApplyableResourceInstance) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.zitadel.random_password.zitadel_masterkey (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_user_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_action.groups-claim" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.random_password.password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/hashicorp/local"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_namespace.argocd (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.redis.random_password.redis (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "data.minio_s3_object.k8s_yaml (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_namespace.mongodb (expand)" (*terraform.nodeExpandApplyableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_secret.argocd-tls (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.zitadel.helm_release.zitadel[0]" (*terraform.NodeApplyableResourceInstance) needs module.zitadel.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_secret.postgresql_auth (expand)" (*terraform.nodeExpandApplyableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_namespace.monitoring" (*terraform.NodeApplyableResourceInstance) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_secret.redis (expand)" (*terraform.nodeExpandApplyableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.argocd.helm_release.argocd (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_secret.mongodb_auth (expand)" (*terraform.nodeExpandApplyableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.random_password.tenant (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.null_resource.health_check (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/null"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.argocd.data.external.processed_values (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/external"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.558+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_access_key (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/local"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.postgresql.helm_release.postgresql (expand)" (*terraform.nodeExpandApplyableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_root_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_namespace.postgresql (expand)" (*terraform.nodeExpandApplyableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.redis.helm_release.redis (expand)" (*terraform.nodeExpandApplyableResource) needs module.redis.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.monitoring.helm_release.kube_prometheus_stack" (*terraform.NodeApplyableResourceInstance) needs module.monitoring.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.argocd.data.external.processed_values" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/hashicorp/external"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)" (*terraform.nodeExpandApplyableResource) needs module.cluster-init.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.kubernetes_job.create-tenant (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-db.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.argocd.helm_release.argocd" (*terraform.NodeApplyableResourceInstance) needs module.argocd.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.storage (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.mongodb.helm_release.mongodb (expand)" (*terraform.nodeExpandApplyableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_root_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.helm_release.rabbitmq (expand)" (*terraform.nodeExpandApplyableResource) needs module.rabbitmq.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.argocd.data.kubernetes_secret.bridge-tls (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_secret.zitadel (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_action.groups-claim (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.monitoring.helm_release.kube_prometheus_stack (expand)" (*terraform.nodeExpandApplyableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_namespace.monitoring (expand)" (*terraform.nodeExpandApplyableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider["registry.terraform.io/hashicorp/local"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.559+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_namespace.redis (expand)" (*terraform.nodeExpandApplyableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_namespace.zitadel (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand)" (*terraform.nodeExpandApplyableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_secret_key (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_namespace.tenant (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.560+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.561+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:44.561+0200 [DEBUG] pruning unused module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.561+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/vault"] +2025-07-11T08:58:44.561+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:44.561+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.561+0200 [DEBUG] pruning unused module.tenant-365zon.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:44.561+0200 [DEBUG] pruning unused module.rabbitmq.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.561+0200 [DEBUG] pruning unused module.minio.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.561+0200 [DEBUG] pruning unused provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:44.561+0200 [DEBUG] pruning unused module.mongodb.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:58:44.561+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:44.561+0200 [DEBUG] pruning unused module.argocd.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:58:44.561+0200 [DEBUG] pruning unused module.postgresql.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:58:44.561+0200 [DEBUG] pruning unused module.cluster-init.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:44.561+0200 [DEBUG] pruning unused module.zitadel-db.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand) module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_server (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (expand)" references: [] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_auth (expand)" references: [module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file" references: [module.zitadel.data.kubernetes_secret.zitadel_admin (expand) module.zitadel.data.kubernetes_secret.zitadel_admin module.zitadel.data.kubernetes_secret.zitadel_admin] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (close)" references: [] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand)" references: [] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)" references: [] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.email (expand)" references: [] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_auth (expand)" references: [module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_auth (expand)" references: [module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.database (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (expand)" references: [] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "local.bridge_dns (expand)" references: [local.tld (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "local.k8s_config (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.uri (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (expand)" references: [] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file (expand)" references: [module.zitadel.data.kubernetes_secret.zitadel_admin (expand) module.zitadel.data.kubernetes_secret.zitadel_admin module.zitadel.data.kubernetes_secret.zitadel_admin] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_secret_key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.namespace (expand)" references: [] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.storage (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand) module.tenant-365zon.module.minio.output.secret_key (expand) module.tenant-365zon.var.minio_api_uri (expand) module.tenant-365zon.module.minio.output.bucket (expand) module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "var.vault_token" references: [] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_issuer (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand)" references: [] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_auth (expand)" references: [module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.email (expand) module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.wait_on (expand)" references: [module.argocd.output.installed (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_config (expand)" references: [module.zitadel.var.k8s_config_yaml (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default" references: [module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (close)" references: [] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_user_password (expand)" references: [] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.zitadel.random_password.zitadel_masterkey (expand)" references: [] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_auth (expand)" references: [module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:58:44.575+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_config (expand)" references: [module.argocd.var.k8s_config_yaml (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_config (expand)" references: [module.zitadel-bootstrap.var.k8s_config_yaml (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_secret.argocd-tls (expand)" references: [module.argocd.data.kubernetes_secret.bridge-tls (expand) module.argocd.data.kubernetes_secret.bridge-tls (expand) module.argocd.kubernetes_namespace.argocd (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.name (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_host (expand)" references: [module.mongodb.local.k8s_config (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_host (expand)" references: [module.monitoring.local.k8s_config (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_password (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.minio.output.installed (expand)" references: [module.minio.helm_release.minio (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.minio.output.secret_key (expand)" references: [module.minio.random_password.minio_secret_key (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.service_name (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.minio.var.ingressClass (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_redirect_uri (expand)" references: [module.zitadel.output.server (expand) module.zitadel-argocd.output.logoutSuffix (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.namespace (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.minio.var.storageSize (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_auth (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.tenant-365zon.var.jwt_profile_file (expand) module.tenant-365zon.var.domain (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_host (expand)" references: [module.postgresql.local.k8s_config (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/local\"]" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.enabled (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.minio.local.service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]" references: [module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand) module.zitadel-argocd.module.zitadel_project.var.owners (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.minio.var.displayOnHomepage (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.access_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "output.minio-root-secret-key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (close)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.enabled (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.bucket (expand)" references: [module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.postgresql (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (close)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "local.cluster_shortname (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0]" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.service_uri (expand)" references: [module.rabbitmq.var.service_name (expand) module.rabbitmq.var.server_dns (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (close)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.mongodb (close)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)" references: [] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.installed (expand)" references: [module.postgresql.helm_release.postgresql (expand)] +2025-07-11T08:58:44.576+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (expand)" references: [] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.tls (expand)" references: [] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_host (expand)" references: [module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_config (expand)" references: [module.tenant-365zon.var.k8s_config_yaml (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_username (expand)" references: [] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_secret_key (expand)" references: [module.minio.random_password.minio_secret_key (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.installed (expand)" references: [module.rabbitmq.helm_release.rabbitmq (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.scopes (expand)" references: [] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.logoutSuffix (expand)" references: [] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.redis.output.installed (expand)" references: [module.redis.helm_release.redis (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_host (expand)" references: [module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.password (expand)" references: [module.postgresql.random_password.postgresql_user_password (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.secret_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.admin_password (expand)" references: [module.argocd.random_password.admin_password (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/aminueza/minio\"]" references: [var.region var.secret_key var.access_key var.minio_server] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.ingressClass (expand)" references: [] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_host (expand)" references: [module.zitadel.local.k8s_config (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_auth (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_auth (expand)" references: [module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_config (expand)" references: [module.redis.var.k8s_config_yaml (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.zitadel (expand)" references: [] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (expand)" references: [] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.zitadel.helm_release.zitadel (expand)" references: [module.zitadel.var.wait_on (expand) module.zitadel.kubernetes_secret.zitadel (expand) module.zitadel.var.enabled (expand) module.zitadel.local.service_uri (expand) module.zitadel.var.database (expand) module.zitadel.var.database_username (expand) module.zitadel.var.database_password (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.database_root_username (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.display_on_homepage (expand) module.zitadel.var.ingressClass (expand) module.zitadel.kubernetes_namespace.zitadel (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "var.bucket" references: [] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.mongodb_connection_string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.wait_on (expand)" references: [module.minio.output.installed (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.ingressClass (expand)" references: [] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.admin (expand)" references: [] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default" references: [module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.external.processed_values" references: [module.argocd.local.service_uri (expand) module.argocd.var.server_dns (expand) module.argocd.local.grpc_service_uri (expand) module.argocd.var.redis_db_start_index (expand) module.argocd.var.redis_password (expand) module.argocd.var.oauth_uri (expand) module.argocd.var.oauth_issuer (expand) module.argocd.var.oauth_client_id (expand) module.argocd.var.oauth_client_secret (expand) module.argocd.var.oauth_redirect_uri (expand) module.argocd.var.tls (expand) module.argocd.var.ingressClass (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)" references: [] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring (expand)" references: [] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.minio.var.service_name (expand)" references: [] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (expand)" references: [] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.grafana_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (expand)" references: [] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (expand)" references: [] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/external\"]" references: [] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)] +2025-07-11T08:58:44.577+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (expand)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_secret_key (expand)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_username (expand)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_host (expand)" references: [module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default" references: [module.zitadel-argocd.module.zitadel_project.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project.var.name (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.helm_release.rabbitmq (expand)" references: [module.rabbitmq.random_password.password (expand) module.rabbitmq.var.wait_on (expand) module.rabbitmq.random_password.password (expand) module.rabbitmq.var.replicas (expand) module.rabbitmq.local.service_uri (expand) module.rabbitmq.var.admin (expand) module.rabbitmq.var.tls (expand) module.rabbitmq.var.ingressClass (expand) module.rabbitmq.var.namespace (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.replicas (expand)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (close)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (expand)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (expand)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.name (expand)" references: [module.zitadel-argocd.var.name (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.ingressClass (expand)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.org_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand) module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.redis_db_next_start_index (expand)" references: [module.argocd.var.redis_db_start_index (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default" references: [module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.ingressClass (expand)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.server (expand)" references: [module.tenant-365zon.var.minio_server (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.redis.output.password (expand)" references: [module.redis.random_password.redis (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_host (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.postgresql (close)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (close)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_auth (expand)" references: [module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (close)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.jwt_profile_file (expand)" references: [module.zitadel.local_file.zitadel_jwt_profile_file module.zitadel.local_file.zitadel_jwt_profile_file module.zitadel.local_file.zitadel_jwt_profile_file (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.service_uri (expand)" references: [module.monitoring.var.service_name (expand) module.monitoring.var.server_dns (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.tenant-365zon.local.k8s_host (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.postgresql.helm_release.postgresql (expand)" references: [module.postgresql.var.wait_on (expand) module.postgresql.kubernetes_secret.postgresql_auth (expand) module.postgresql.var.enabled (expand) module.postgresql.var.username (expand) module.postgresql.kubernetes_namespace.postgresql (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_config (expand)" references: [module.postgresql.var.k8s_config_yaml (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)" references: [module.zitadel-bootstrap.var.domain (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.argocd (expand)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.minio.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (validation)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.name (expand)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.admin_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand)] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand)" references: [] +2025-07-11T08:58:44.578+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.namespace (expand)" references: [] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_auth (expand)" references: [module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (close)" references: [] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_namespace.redis (expand)" references: [module.redis.var.namespace (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_db_start_index (expand)" references: [] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand)" references: [] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.service_uri (expand)" references: [module.zitadel.var.service_name (expand) module.zitadel.var.server_dns (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "var.access_key" references: [] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "local.k8s_auth (expand)" references: [local.k8s_config (expand) local.k8s_config (expand) local.k8s_config (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_config (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.prometheus_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (close)" references: [] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_namespace.tenant (expand)" references: [module.tenant-365zon.var.wait_on (expand) module.tenant-365zon.local.name (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_url (expand)" references: [] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_api_uri (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_password (expand)" references: [module.redis.output.password (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand)" references: [] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.connection_string (expand)" references: [module.rabbitmq.random_password.password (expand) module.rabbitmq.var.namespace (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (close)" references: [] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-bootstrap.var.jwt_profile_file (expand) module.zitadel-bootstrap.var.domain (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.rabbitmq.local.k8s_host (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.null_resource.health_check (expand)" references: [module.tenant-365zon.module.minio.var.wait_on (expand) module.tenant-365zon.module.minio.var.server (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)" references: [] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.host (expand)" references: [] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_host (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.alertmanager_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_namespace.zitadel (expand)" references: [module.zitadel.var.enabled (expand) module.zitadel.var.namespace (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.namespace (expand)" references: [] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.wait_on (expand)" references: [module.cluster-init.var.wait_on (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default" references: [module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.email (expand) module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel-db.local.k8s_host (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (expand)" references: [] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_access_key (expand)" references: [module.minio.random_password.minio_access_key (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_secret_key (expand)" references: [module.tenant-365zon.module.minio.output.secret_key (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring" references: [] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_root_password (expand)" references: [] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)" references: [module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim (expand) module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:58:44.579+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin (expand)" references: [module.zitadel.helm_release.zitadel (expand) module.zitadel.helm_release.zitadel[0] module.zitadel.var.namespace (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_read_url (expand)" references: [] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_replica_set_key (expand)" references: [] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)" references: [] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand) module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0] module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (close)" references: [] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd (expand)" references: [module.argocd.var.wait_on (expand) module.argocd.kubernetes_secret.argocd-tls (expand) module.argocd.data.external.processed_values module.argocd.data.external.processed_values module.argocd.data.external.processed_values (expand) module.argocd.random_password.admin_password (expand) module.argocd.kubernetes_namespace.argocd (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_host (expand)" references: [module.redis.local.k8s_config (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.installed (expand)" references: [module.zitadel-db.kubernetes_job.create-tenant (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.minio.var.mode (expand)" references: [] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_server (expand)" references: [module.minio.output.minio_server (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.display_on_homepage (expand)" references: [] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.idp_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)" references: [module.zitadel-argocd.module.zitadel_project.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project.var.name (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_secret (expand)" references: [module.zitadel-argocd.output.client_secret (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "local.cluster_dns (expand)" references: [local.cluster_shortname (expand) local.tld (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "output.minio-access-key (expand)" references: [module.tenant-365zon.output.minio_access_key (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.mongodb (expand)" references: [] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.argocd_service_domain (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_uri (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.external.processed_values (expand)" references: [module.argocd.local.service_uri (expand) module.argocd.var.server_dns (expand) module.argocd.local.grpc_service_uri (expand) module.argocd.var.redis_db_start_index (expand) module.argocd.var.redis_password (expand) module.argocd.var.oauth_uri (expand) module.argocd.var.oauth_issuer (expand) module.argocd.var.oauth_client_id (expand) module.argocd.var.oauth_client_secret (expand) module.argocd.var.oauth_redirect_uri (expand) module.argocd.var.tls (expand) module.argocd.var.ingressClass (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_api_uri (expand)" references: [module.minio.output.minio_api_uri (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.replicas (expand)" references: [local.node_count (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand) module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.minio.helm_release.minio (expand)" references: [module.minio.var.mode (expand) module.minio.var.replicas (expand) module.minio.var.replicas (expand) module.minio.var.storageSize (expand) module.minio.local.service_uri (expand) module.minio.local.admin_service_uri (expand) module.minio.var.admin (expand) module.minio.var.mode (expand) module.minio.var.tls (expand) module.minio.var.ingressClass (expand) module.minio.var.displayOnHomepage (expand) module.minio.random_password.minio_access_key (expand) module.minio.random_password.minio_secret_key (expand) module.minio.var.namespace (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_namespace.argocd (expand)" references: [module.argocd.var.namespace (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.kubernetes_secret.bridge-tls (expand)" references: [] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand)" references: [] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:58:44.580+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (expand)" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.minio (expand)" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.redis.random_password.redis (expand)" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings (expand)" references: [module.tenant-365zon.var.mongodb_connection_string (expand) module.tenant-365zon.var.rabbitmq_connection_string (expand) module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand) module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_username (expand)" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.wait_on (expand)" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_auth (expand)" references: [module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.redis.helm_release.redis (expand)" references: [module.redis.var.wait_on (expand) module.redis.var.architecture (expand) module.redis.var.architecture (validation) module.redis.kubernetes_namespace.redis (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "var.secret_key" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "var.region" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.secret_key (expand)" references: [module.tenant-365zon.var.minio_secret_key (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.server (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "output.minio-secret-key (expand)" references: [module.tenant-365zon.output.minio_secret_key (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack" references: [module.monitoring.var.wait_on (expand) module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand) module.monitoring.var.remote_write_url (expand) module.monitoring.var.remote_read_url (expand) module.monitoring.random_password.grafana_admin_password (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_secret.zitadel (expand)" references: [module.zitadel.var.enabled (expand) module.zitadel.random_password.zitadel_masterkey (expand) module.zitadel.kubernetes_namespace.zitadel (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_access_key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_config (expand)" references: [module.monitoring.var.k8s_config_yaml (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (expand)" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (close)" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.installed (expand)" references: [module.mongodb.helm_release.mongodb (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (close)" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_access_key (expand)" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "output.minio-root-access-key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_namespace.mongodb (expand)" references: [module.mongodb.var.namespace (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.wait_on (expand)" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.minio.local.admin_service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.admin_server_dns (expand) module.minio.var.admin_server_dns (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.connection_string (expand)" references: [module.mongodb.random_password.mongodb_root_password (expand) module.mongodb.var.replicas (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0] module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.enabled (expand)" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.output.installed (expand)" references: [module.cluster-init.module.longhorn.helm_release.longhorn (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.output.installed (expand)" references: [module.cluster-init.module.longhorn.output.installed (expand) module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.provider[\"registry.terraform.io/aminueza/minio\"]" references: [module.tenant-365zon.module.minio.var.secret_key (expand) module.tenant-365zon.module.minio.var.access_key (expand) module.tenant-365zon.module.minio.var.server (expand) module.tenant-365zon.module.minio.var.region (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.zitadel (close)" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (expand)" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (close)" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_namespace.postgresql (expand)" references: [module.postgresql.var.enabled (expand) module.postgresql.var.namespace (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand)" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_password (expand)" references: [module.zitadel-db.output.password (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.service_name (expand)" references: [] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_admin_uri (expand)" references: [module.minio.local.admin_service_uri (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_action.groups-claim" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.cluster-init.module.longhorn.local.k8s_host (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand)] +2025-07-11T08:58:44.581+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (close)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.name (expand)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0] module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (close)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (close)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (expand)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_secret.mongodb_auth (expand)" references: [module.mongodb.var.wait_on (expand) module.mongodb.random_password.mongodb_root_password (expand) module.mongodb.random_password.mongodb_replica_set_key (expand) module.mongodb.kubernetes_namespace.mongodb (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.server_dns (expand)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_auth (expand)" references: [module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0] module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_action.groups-claim (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.local.argocd_uri (expand)" references: [module.zitadel-argocd.var.argocd_service_domain (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.minio.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (close)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.tls (expand)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_config (expand)" references: [module.mongodb.var.k8s_config_yaml (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand) module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)" references: [module.tenant-365zon.var.org_id (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.wait_on (expand)" references: [module.postgresql.output.installed (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "output.mongodb-connection-string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (close)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.mongodb.helm_release.mongodb (expand)" references: [module.mongodb.var.wait_on (expand) module.mongodb.kubernetes_secret.mongodb_auth (expand) module.mongodb.var.usernames (expand) module.mongodb.var.databases (expand) module.mongodb.var.replicas (expand) module.mongodb.kubernetes_namespace.mongodb (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.enabled (expand)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (close)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (expand)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (expand)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.owners (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.minio.var.tls (expand)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_access_key (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.minio (close)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)" references: [module.tenant-365zon.var.user_id (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.redis.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.minio.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.minio.local.k8s_host (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (expand)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_username (expand)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin_server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.password (expand)" references: [module.zitadel-db.random_password.tenant (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "output.argocd-root-password (expand)" references: [module.argocd.output.admin_password (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (close)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.random_password.password (expand)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_database (expand)" references: [] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0] module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)] +2025-07-11T08:58:44.582+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_secret.redis (expand)" references: [module.redis.random_password.redis (expand) module.redis.kubernetes_namespace.redis (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.random_password.tenant (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)" references: [module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.minio.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.job_name (expand)" references: [module.zitadel-db.var.enabled (expand) module.zitadel-db.kubernetes_job.create-tenant (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.access_key (expand)" references: [module.tenant-365zon.var.minio_access_key (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.username (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.service_name (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand)" references: [module.monitoring.var.remote_write_username (expand) module.monitoring.var.remote_write_password (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "local.k8s_config_yaml (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.installed (expand)" references: [module.argocd.helm_release.argocd (expand) module.argocd.helm_release.argocd module.argocd.helm_release.argocd] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_auth (expand)" references: [module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)" references: [module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "var.minio_server" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.username (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "local.k8s_host (expand)" references: [local.k8s_config (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand) module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "data.minio_s3_object.k8s_yaml (expand)" references: [var.bucket] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.wait_on (expand)" references: [module.zitadel-db.output.installed (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.namespace (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "local.tld (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (close)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.minio.var.namespace (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_config (expand)" references: [module.minio.var.k8s_config_yaml (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_config (expand)" references: [module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.installed (expand)" references: [module.zitadel.helm_release.zitadel (expand) module.zitadel.helm_release.zitadel[0] module.zitadel.local_file.zitadel_jwt_profile_file module.zitadel.local_file.zitadel_jwt_profile_file module.zitadel.local_file.zitadel_jwt_profile_file (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_host (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.argocd (close)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.monitoring.random_password.grafana_admin_password (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel.helm_release.zitadel[0]" references: [module.zitadel.var.wait_on (expand) module.zitadel.kubernetes_secret.zitadel (expand) module.zitadel.var.enabled (expand) module.zitadel.local.service_uri (expand) module.zitadel.var.database (expand) module.zitadel.var.database_username (expand) module.zitadel.var.database_password (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.database_root_username (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.display_on_homepage (expand) module.zitadel.var.ingressClass (expand) module.zitadel.kubernetes_namespace.zitadel (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_id (expand)" references: [module.zitadel-argocd.output.client_id (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_host (expand)" references: [module.minio.local.k8s_config (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_bucket (expand)" references: [module.tenant-365zon.module.minio.output.bucket (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.application_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "output.monitoring (expand)" references: [module.monitoring.output.access_instructions (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.argocd.random_password.admin_password (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.region (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.minio.var.replicas (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin" references: [module.zitadel.helm_release.zitadel (expand) module.zitadel.helm_release.zitadel[0] module.zitadel.var.namespace (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:58:44.583+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.wait_on (expand)" references: [module.zitadel-argocd.output.installed (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.wait_on (expand)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (expand)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.rabbitmq_connection_string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.redis.var.wait_on (expand)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_config (expand)" references: [module.rabbitmq.var.k8s_config_yaml (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_host (expand)" references: [module.argocd.local.k8s_config (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)" references: [module.tenant-365zon.module.minio.null_resource.health_check (expand) module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)" references: [module.tenant-365zon.local.name (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.namespace (expand)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.databases (expand)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.tld (expand)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_host (expand)" references: [module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default" references: [module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.redis (close)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.kubernetes_job.create-tenant (expand)" references: [module.zitadel-db.var.wait_on (expand) module.zitadel-db.var.enabled (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.namespace (expand) module.zitadel-db.var.host (expand) module.zitadel-db.var.root_username (expand) module.zitadel-db.var.root_password (expand) module.zitadel-db.var.root_database (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.name (expand) module.zitadel-db.random_password.tenant (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/null\"]" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack (expand)" references: [module.monitoring.var.wait_on (expand) module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand) module.monitoring.var.remote_write_url (expand) module.monitoring.var.remote_read_url (expand) module.monitoring.random_password.grafana_admin_password (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_host (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_config (expand)" references: [module.zitadel-db.var.k8s_config_yaml (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.root_password (expand)" references: [module.postgresql.random_password.postgresql_root_password (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.name (expand)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.namespace (expand)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "local.node_count (expand)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.user_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.access_instructions (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.random_password.grafana_admin_password (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "var.vault_addr" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd" references: [module.argocd.var.wait_on (expand) module.argocd.kubernetes_secret.argocd-tls (expand) module.argocd.random_password.admin_password (expand) module.argocd.kubernetes_namespace.argocd (expand) module.argocd.data.external.processed_values module.argocd.data.external.processed_values module.argocd.data.external.processed_values (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_secret.postgresql_auth (expand)" references: [module.postgresql.var.wait_on (expand) module.postgresql.var.enabled (expand) module.postgresql.random_password.postgresql_user_password (expand) module.postgresql.random_password.postgresql_root_password (expand) module.postgresql.kubernetes_namespace.postgresql (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (close)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (close)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (expand)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.minio.output.access_key (expand)" references: [module.minio.random_password.minio_access_key (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.monitoring (expand)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "var.endpoints" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.monitoring (close)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.service_name (expand)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "output.rabbitmq-connection-string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)" references: [module.tenant-365zon.module.minio.null_resource.health_check (expand) module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)" references: [] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.grpc_service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-argocd.var.domain (expand) module.zitadel-argocd.var.jwt_profile_file (expand)] +2025-07-11T08:58:44.584+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn (expand)" references: [module.cluster-init.module.longhorn.var.wait_on (expand) module.cluster-init.module.longhorn.var.namespace (expand)] +2025-07-11T08:58:44.585+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)] +2025-07-11T08:58:44.585+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)] +2025-07-11T08:58:44.585+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)" references: [] +2025-07-11T08:58:44.585+0200 [DEBUG] ReferenceTransformer: "module.redis (expand)" references: [] +2025-07-11T08:58:44.585+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:58:44.585+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_root_password (expand)" references: [] +2025-07-11T08:58:44.585+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:58:44.585+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand)" references: [] +2025-07-11T08:58:44.585+0200 [DEBUG] ReferenceTransformer: "module.redis.var.namespace (expand)" references: [] +2025-07-11T08:58:44.585+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:58:44.585+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.usernames (expand)" references: [] +2025-07-11T08:58:44.585+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.namespace (expand)" references: [] +2025-07-11T08:58:44.632+0200 [DEBUG] DestroyEdgeTransformer2: module.zitadel.data.kubernetes_secret.zitadel_admin has stored dependency of module.zitadel.local_file.zitadel_jwt_profile_file (destroy) +2025-07-11T08:58:44.632+0200 [DEBUG] DestroyEdgeTransformer2: module.zitadel.helm_release.zitadel[0] has stored dependency of module.zitadel.local_file.zitadel_jwt_profile_file (destroy) +2025-07-11T08:58:44.714+0200 [DEBUG] command: asking for input: "\nDo you want to perform these actions?" +2025-07-11T08:58:47.042+0200 [INFO] backend/local: apply calling Apply +2025-07-11T08:58:47.042+0200 [DEBUG] Building and walking apply graph for NormalMode plan +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.zitadel_action.groups-claim", instance module.zitadel-argocd.zitadel_action.groups-claim +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1] +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project.zitadel_project.default", instance module.zitadel-argocd.module.zitadel_project.zitadel_project.default +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0] +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]", instance module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0] +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0] +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0] +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default", instance module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default", instance module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default", instance module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default", instance module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4] +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6] +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default", instance module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7] +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]", instance module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0] +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.argocd.data.external.processed_values", instance module.argocd.data.external.processed_values +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default", instance module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info", instance module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0] +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent +2025-07-11T08:58:47.048+0200 [DEBUG] Resource state not found for node "module.monitoring.helm_release.kube_prometheus_stack", instance module.monitoring.helm_release.kube_prometheus_stack +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.zitadel.data.kubernetes_secret.zitadel_admin", instance module.zitadel.data.kubernetes_secret.zitadel_admin +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2] +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0] +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token", instance module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1] +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default", instance module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.argocd.helm_release.argocd", instance module.argocd.helm_release.argocd +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3] +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0] +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5] +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]", instance module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0] +2025-07-11T08:58:47.049+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0]", instance module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0] +2025-07-11T08:58:47.054+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/zitadel/zitadel"], implied first by module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) +2025-07-11T08:58:47.054+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/random"], implied first by module.argocd.random_password.admin_password (expand) +2025-07-11T08:58:47.054+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/null"], implied first by module.tenant-365zon.module.minio.null_resource.health_check (expand) +2025-07-11T08:58:47.054+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/local"], implied first by module.zitadel.local_file.zitadel_jwt_profile_file (expand) +2025-07-11T08:58:47.054+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/external"], implied first by module.argocd.data.external.processed_values (expand) +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.zitadel.helm_release.zitadel[0]" (*terraform.NodeApplyableResourceInstance) needs module.zitadel.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_action.groups-claim (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn (expand)" (*terraform.nodeExpandApplyableResource) needs module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_root_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_replica_set_key (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.argocd.random_password.admin_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_root_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_namespace.monitoring (expand)" (*terraform.nodeExpandApplyableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.zitadel.random_password.zitadel_masterkey (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.random_password.password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_action.groups-claim" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_secret.redis (expand)" (*terraform.nodeExpandApplyableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.monitoring.random_password.grafana_admin_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:47.056+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.minio.helm_release.minio (expand)" (*terraform.nodeExpandApplyableResource) needs module.minio.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.zitadel.helm_release.zitadel (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin" (*terraform.NodeApplyableResourceInstance) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_namespace.zitadel (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_namespace.redis (expand)" (*terraform.nodeExpandApplyableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.null_resource.health_check (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/null"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.storage (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.monitoring.helm_release.kube_prometheus_stack (expand)" (*terraform.nodeExpandApplyableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_namespace.postgresql (expand)" (*terraform.nodeExpandApplyableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_secret_key (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_namespace.mongodb (expand)" (*terraform.nodeExpandApplyableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider["registry.terraform.io/hashicorp/local"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "data.minio_s3_object.k8s_yaml (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.argocd.helm_release.argocd (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.argocd.data.kubernetes_secret.bridge-tls (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_secret.argocd-tls (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_user_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_secret.zitadel (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)" (*terraform.nodeExpandApplyableResource) needs module.cluster-init.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.random_password.tenant (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.redis.random_password.redis (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.057+0200 [DEBUG] ProviderTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_secret.mongodb_auth (expand)" (*terraform.nodeExpandApplyableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.argocd.data.external.processed_values (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/external"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_access_key (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.argocd.data.external.processed_values" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/hashicorp/external"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.kubernetes_job.create-tenant (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-db.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.redis.helm_release.redis (expand)" (*terraform.nodeExpandApplyableResource) needs module.redis.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_namespace.argocd (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/hashicorp/local"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.mongodb.helm_release.mongodb (expand)" (*terraform.nodeExpandApplyableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.postgresql.helm_release.postgresql (expand)" (*terraform.nodeExpandApplyableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.helm_release.rabbitmq (expand)" (*terraform.nodeExpandApplyableResource) needs module.rabbitmq.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand)" (*terraform.nodeExpandApplyableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_secret.postgresql_auth (expand)" (*terraform.nodeExpandApplyableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default" (*terraform.NodeApplyableResourceInstance) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_namespace.tenant (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/local"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_namespace.monitoring" (*terraform.NodeApplyableResourceInstance) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.monitoring.helm_release.kube_prometheus_stack" (*terraform.NodeApplyableResourceInstance) needs module.monitoring.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.argocd.helm_release.argocd" (*terraform.NodeApplyableResourceInstance) needs module.argocd.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:47.058+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.059+0200 [DEBUG] pruning unused module.tenant-365zon.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:47.059+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/vault"] +2025-07-11T08:58:47.059+0200 [DEBUG] pruning unused module.postgresql.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:58:47.059+0200 [DEBUG] pruning unused provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:58:47.059+0200 [DEBUG] pruning unused module.minio.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.059+0200 [DEBUG] pruning unused module.rabbitmq.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.059+0200 [DEBUG] pruning unused module.zitadel-db.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:47.059+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.059+0200 [DEBUG] pruning unused module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.059+0200 [DEBUG] pruning unused module.cluster-init.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:47.059+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:47.059+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:58:47.059+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:58:47.060+0200 [DEBUG] pruning unused module.argocd.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:58:47.060+0200 [DEBUG] pruning unused module.mongodb.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:58:47.074+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_secret.mongodb_auth (expand)" references: [module.mongodb.var.wait_on (expand) module.mongodb.random_password.mongodb_root_password (expand) module.mongodb.random_password.mongodb_replica_set_key (expand) module.mongodb.kubernetes_namespace.mongodb (expand)] +2025-07-11T08:58:47.074+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.ingressClass (expand)" references: [] +2025-07-11T08:58:47.074+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_config (expand)" references: [module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)] +2025-07-11T08:58:47.074+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:58:47.074+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T08:58:47.074+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (close)" references: [] +2025-07-11T08:58:47.074+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:47.074+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (expand)" references: [] +2025-07-11T08:58:47.074+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:58:47.074+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:58:47.074+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:58:47.074+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:47.074+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:47.074+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)] +2025-07-11T08:58:47.074+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (close)" references: [] +2025-07-11T08:58:47.074+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (expand)" references: [] +2025-07-11T08:58:47.074+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.namespace (expand)" references: [] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.access_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)" references: [] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_issuer (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "output.minio-root-secret-key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.minio.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.ingressClass (expand)" references: [] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)" references: [] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.wait_on (expand)" references: [module.zitadel-db.output.installed (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default" references: [module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.redis.var.namespace (expand)" references: [] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand)" references: [] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file (expand)" references: [module.zitadel.data.kubernetes_secret.zitadel_admin module.zitadel.data.kubernetes_secret.zitadel_admin module.zitadel.data.kubernetes_secret.zitadel_admin (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.enabled (expand)" references: [] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_host (expand)" references: [module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (close)" references: [] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.argocd (expand)" references: [] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_secret.argocd-tls (expand)" references: [module.argocd.data.kubernetes_secret.bridge-tls (expand) module.argocd.data.kubernetes_secret.bridge-tls (expand) module.argocd.kubernetes_namespace.argocd (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.redis.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand)" references: [] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.org_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close)" references: [] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.namespace (expand)" references: [] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (expand)" references: [] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.minio.helm_release.minio (expand)" references: [module.minio.local.service_uri (expand) module.minio.local.admin_service_uri (expand) module.minio.var.admin (expand) module.minio.var.mode (expand) module.minio.var.tls (expand) module.minio.var.ingressClass (expand) module.minio.var.displayOnHomepage (expand) module.minio.var.namespace (expand) module.minio.random_password.minio_access_key (expand) module.minio.random_password.minio_secret_key (expand) module.minio.var.mode (expand) module.minio.var.replicas (expand) module.minio.var.replicas (expand) module.minio.var.storageSize (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand) module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand) module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "var.vault_addr" references: [] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.minio.var.ingressClass (expand)" references: [] +2025-07-11T08:58:47.075+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file" references: [module.zitadel.data.kubernetes_secret.zitadel_admin module.zitadel.data.kubernetes_secret.zitadel_admin module.zitadel.data.kubernetes_secret.zitadel_admin (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default" references: [module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.minio.var.service_name (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default" references: [module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.email (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (close)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.namespace (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (close)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (close)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_config (expand)" references: [module.tenant-365zon.var.k8s_config_yaml (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.namespace (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (close)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.wait_on (expand)" references: [module.argocd.output.installed (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_database (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_secret_key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "local.tld (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.bucket (expand)" references: [module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_secret.redis (expand)" references: [module.redis.random_password.redis (expand) module.redis.kubernetes_namespace.redis (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.access_key (expand)" references: [module.tenant-365zon.var.minio_access_key (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.ingressClass (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.minio.local.service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.replicas (expand)" references: [local.node_count (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.wait_on (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.minio.output.access_key (expand)" references: [module.minio.random_password.minio_access_key (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "output.argocd-root-password (expand)" references: [module.argocd.output.admin_password (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.username (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_host (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_secret.postgresql_auth (expand)" references: [module.postgresql.var.wait_on (expand) module.postgresql.var.enabled (expand) module.postgresql.random_password.postgresql_user_password (expand) module.postgresql.random_password.postgresql_root_password (expand) module.postgresql.kubernetes_namespace.postgresql (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_password (expand)" references: [module.redis.output.password (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.password (expand)" references: [module.zitadel-db.random_password.tenant (expand)] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.redis.random_password.redis (expand)" references: [] +2025-07-11T08:58:47.076+0200 [DEBUG] ReferenceTransformer: "module.redis.var.wait_on (expand)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.minio.var.tls (expand)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_namespace.mongodb (expand)" references: [module.mongodb.var.namespace (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.minio.var.storageSize (expand)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (expand)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel.helm_release.zitadel (expand)" references: [module.zitadel.var.wait_on (expand) module.zitadel.kubernetes_secret.zitadel (expand) module.zitadel.var.enabled (expand) module.zitadel.local.service_uri (expand) module.zitadel.var.database (expand) module.zitadel.var.database_username (expand) module.zitadel.var.database_password (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.database_root_username (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.display_on_homepage (expand) module.zitadel.var.ingressClass (expand) module.zitadel.kubernetes_namespace.zitadel (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.namespace (expand)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.username (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (expand)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (expand)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_db_start_index (expand)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.secret_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (close)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (expand)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.minio.var.mode (expand)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_config (expand)" references: [module.zitadel-bootstrap.var.k8s_config_yaml (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand) module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_server (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/external\"]" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_auth (expand)" references: [module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.external.processed_values (expand)" references: [module.argocd.local.service_uri (expand) module.argocd.var.server_dns (expand) module.argocd.local.grpc_service_uri (expand) module.argocd.var.redis_db_start_index (expand) module.argocd.var.redis_password (expand) module.argocd.var.oauth_uri (expand) module.argocd.var.oauth_issuer (expand) module.argocd.var.oauth_client_id (expand) module.argocd.var.oauth_client_secret (expand) module.argocd.var.oauth_redirect_uri (expand) module.argocd.var.tls (expand) module.argocd.var.ingressClass (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.email (expand) module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.service_name (expand)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.admin_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim (expand) module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.usernames (expand)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.local.argocd_uri (expand)" references: [module.zitadel-argocd.var.argocd_service_domain (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (close)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel (close)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (close)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.redis (close)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.kubernetes_job.create-tenant (expand)" references: [module.zitadel-db.var.wait_on (expand) module.zitadel-db.var.enabled (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.namespace (expand) module.zitadel-db.var.host (expand) module.zitadel-db.var.root_username (expand) module.zitadel-db.var.root_password (expand) module.zitadel-db.var.root_database (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.name (expand) module.zitadel-db.random_password.tenant (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.owners (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_access_key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_password (expand)" references: [module.zitadel-db.output.password (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.enabled (expand)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.minio.local.admin_service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.admin_server_dns (expand) module.minio.var.admin_server_dns (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.wait_on (expand)" references: [] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_auth (expand)" references: [module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand) module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)] +2025-07-11T08:58:47.077+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.mongodb (close)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_auth (expand)" references: [module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (close)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring (expand)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.enabled (expand)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.rabbitmq.local.k8s_host (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)" references: [module.tenant-365zon.var.org_id (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (expand)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)" references: [module.zitadel-argocd.module.zitadel_project.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand) module.zitadel-argocd.module.zitadel_project.var.name (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_config (expand)" references: [module.argocd.var.k8s_config_yaml (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.connection_string (expand)" references: [module.rabbitmq.random_password.password (expand) module.rabbitmq.var.namespace (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "output.minio-secret-key (expand)" references: [module.tenant-365zon.output.minio_secret_key (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "output.monitoring (expand)" references: [module.monitoring.output.access_instructions (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.minio.output.secret_key (expand)" references: [module.minio.random_password.minio_secret_key (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (expand)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)" references: [module.tenant-365zon.local.name (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.namespace (expand)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.wait_on (expand)" references: [module.cluster-init.var.wait_on (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.access_instructions (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.random_password.grafana_admin_password (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-bootstrap.var.domain (expand) module.zitadel-bootstrap.var.jwt_profile_file (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_access_key (expand)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "local.k8s_host (expand)" references: [local.k8s_config (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_auth (expand)" references: [module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.grafana_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]" references: [module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (close)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_config (expand)" references: [module.mongodb.var.k8s_config_yaml (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "output.minio-root-access-key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.external.processed_values" references: [module.argocd.local.service_uri (expand) module.argocd.var.server_dns (expand) module.argocd.local.grpc_service_uri (expand) module.argocd.var.redis_db_start_index (expand) module.argocd.var.redis_password (expand) module.argocd.var.oauth_uri (expand) module.argocd.var.oauth_issuer (expand) module.argocd.var.oauth_client_id (expand) module.argocd.var.oauth_client_secret (expand) module.argocd.var.oauth_redirect_uri (expand) module.argocd.var.tls (expand) module.argocd.var.ingressClass (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (expand)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn (expand)" references: [module.cluster-init.module.longhorn.var.wait_on (expand) module.cluster-init.module.longhorn.var.namespace (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "var.access_key" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.service_name (expand)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.minio.var.replicas (expand)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_id (expand)" references: [module.zitadel-argocd.output.client_id (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.installed (expand)" references: [module.rabbitmq.helm_release.rabbitmq (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.scopes (expand)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_read_url (expand)" references: [] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_server (expand)" references: [module.minio.output.minio_server (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:47.078+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_bucket (expand)" references: [module.tenant-365zon.module.minio.output.bucket (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.mongodb.helm_release.mongodb (expand)" references: [module.mongodb.var.wait_on (expand) module.mongodb.kubernetes_secret.mongodb_auth (expand) module.mongodb.kubernetes_namespace.mongodb (expand) module.mongodb.var.usernames (expand) module.mongodb.var.databases (expand) module.mongodb.var.replicas (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.random_password.tenant (expand)" references: [] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.application_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "output.mongodb-connection-string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.namespace (expand)" references: [] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "local.k8s_config (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.jwt_profile_file (expand)" references: [module.zitadel.local_file.zitadel_jwt_profile_file (expand) module.zitadel.local_file.zitadel_jwt_profile_file module.zitadel.local_file.zitadel_jwt_profile_file] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.connection_string (expand)" references: [module.mongodb.random_password.mongodb_root_password (expand) module.mongodb.var.replicas (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_config (expand)" references: [module.zitadel.var.k8s_config_yaml (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default" references: [module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.tenant-365zon.var.domain (expand) module.tenant-365zon.var.jwt_profile_file (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_namespace.zitadel (expand)" references: [module.zitadel.var.enabled (expand) module.zitadel.var.namespace (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel.random_password.zitadel_masterkey (expand)" references: [] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.minio.var.namespace (expand)" references: [] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim (expand) module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "var.secret_key" references: [] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand)" references: [] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.installed (expand)" references: [module.argocd.helm_release.argocd (expand) module.argocd.helm_release.argocd module.argocd.helm_release.argocd] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack" references: [module.monitoring.var.wait_on (expand) module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand) module.monitoring.var.remote_write_url (expand) module.monitoring.var.remote_read_url (expand) module.monitoring.random_password.grafana_admin_password (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand)" references: [module.monitoring.var.remote_write_username (expand) module.monitoring.var.remote_write_password (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (close)" references: [] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.display_on_homepage (expand)" references: [] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand)" references: [] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.server_dns (expand)" references: [] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.mongodb (expand)" references: [] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)" references: [module.tenant-365zon.module.minio.null_resource.health_check (expand) module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_auth (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_host (expand)" references: [module.minio.local.k8s_config (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand) module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin" references: [module.zitadel.helm_release.zitadel (expand) module.zitadel.helm_release.zitadel[0] module.zitadel.var.namespace (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand)" references: [] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_host (expand)" references: [module.redis.local.k8s_config (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "var.minio_server" references: [] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_host (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.redis (expand)" references: [] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (expand)" references: [] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (close)" references: [] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (close)" references: [] +2025-07-11T08:58:47.079+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_root_password (expand)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin (expand)" references: [module.zitadel.helm_release.zitadel (expand) module.zitadel.helm_release.zitadel[0] module.zitadel.var.namespace (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.rabbitmq_connection_string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_host (expand)" references: [module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "var.bucket" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_uri (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "local.bridge_dns (expand)" references: [local.tld (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_host (expand)" references: [module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.admin_password (expand)" references: [module.argocd.random_password.admin_password (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.name (expand)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.minio.var.displayOnHomepage (expand)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.argocd (close)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (expand)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.installed (expand)" references: [module.zitadel.helm_release.zitadel (expand) module.zitadel.helm_release.zitadel[0] module.zitadel.local_file.zitadel_jwt_profile_file (expand) module.zitadel.local_file.zitadel_jwt_profile_file module.zitadel.local_file.zitadel_jwt_profile_file] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.installed (expand)" references: [module.zitadel-db.kubernetes_job.create-tenant (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.provider[\"registry.terraform.io/aminueza/minio\"]" references: [module.tenant-365zon.module.minio.var.region (expand) module.tenant-365zon.module.minio.var.secret_key (expand) module.tenant-365zon.module.minio.var.access_key (expand) module.tenant-365zon.module.minio.var.server (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.name (expand)" references: [module.zitadel-argocd.var.name (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_host (expand)" references: [module.zitadel.local.k8s_config (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_host (expand)" references: [module.argocd.local.k8s_config (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/null\"]" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel (expand)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_host (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.minio.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_config (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_secret (expand)" references: [module.zitadel-argocd.output.client_secret (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.job_name (expand)" references: [module.zitadel-db.var.enabled (expand) module.zitadel-db.kubernetes_job.create-tenant (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_replica_set_key (expand)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_user_password (expand)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (validation)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.alertmanager_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "output.rabbitmq-connection-string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)" references: [module.zitadel-bootstrap.var.domain (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.wait_on (expand)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "local.k8s_config_yaml (expand)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "local.node_count (expand)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_secret_key (expand)" references: [module.minio.random_password.minio_secret_key (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.monitoring (expand)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0] module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (expand)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.enabled (expand)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.name (expand)" references: [] +2025-07-11T08:58:47.080+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.service_uri (expand)" references: [module.rabbitmq.var.service_name (expand) module.rabbitmq.var.server_dns (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_config (expand)" references: [module.rabbitmq.var.k8s_config_yaml (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd (expand)" references: [module.argocd.var.wait_on (expand) module.argocd.kubernetes_secret.argocd-tls (expand) module.argocd.data.external.processed_values (expand) module.argocd.data.external.processed_values module.argocd.data.external.processed_values module.argocd.random_password.admin_password (expand) module.argocd.kubernetes_namespace.argocd (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_host (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: [] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (expand)" references: [] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)" references: [] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_auth (expand)" references: [module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "var.region" references: [] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)" references: [] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_auth (expand)" references: [module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_auth (expand)" references: [module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_auth (expand)" references: [module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_host (expand)" references: [module.postgresql.local.k8s_config (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)" references: [] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_username (expand)" references: [] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "local.cluster_shortname (expand)" references: [] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.logoutSuffix (expand)" references: [] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (close)" references: [] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (close)" references: [] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.output.installed (expand)" references: [module.cluster-init.module.longhorn.helm_release.longhorn (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim (expand) module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.minio.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.minio.local.k8s_host (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (close)" references: [] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.postgresql (expand)" references: [] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.argocd.random_password.admin_password (expand)" references: [] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_access_key (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "local.cluster_dns (expand)" references: [local.cluster_shortname (expand) local.tld (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.database (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_host (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "data.minio_s3_object.k8s_yaml (expand)" references: [var.bucket] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_username (expand)" references: [] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_config (expand)" references: [module.monitoring.var.k8s_config_yaml (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:47.081+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default" references: [module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (close)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.databases (expand)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd" references: [module.argocd.var.wait_on (expand) module.argocd.kubernetes_secret.argocd-tls (expand) module.argocd.random_password.admin_password (expand) module.argocd.kubernetes_namespace.argocd (expand) module.argocd.data.external.processed_values (expand) module.argocd.data.external.processed_values module.argocd.data.external.processed_values] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.postgresql (close)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "output.minio-access-key (expand)" references: [module.tenant-365zon.output.minio_access_key (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.storage (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand) module.tenant-365zon.module.minio.output.secret_key (expand) module.tenant-365zon.var.minio_api_uri (expand) module.tenant-365zon.module.minio.output.bucket (expand) module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.grpc_service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.random_password.password (expand)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "var.vault_token" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.wait_on (expand)" references: [module.postgresql.output.installed (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.service_name (expand)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_config (expand)" references: [module.postgresql.var.k8s_config_yaml (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_secret_key (expand)" references: [module.tenant-365zon.module.minio.output.secret_key (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.namespace (expand)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.service_uri (expand)" references: [module.zitadel.var.service_name (expand) module.zitadel.var.server_dns (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.service_uri (expand)" references: [module.monitoring.var.service_name (expand) module.monitoring.var.server_dns (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)" references: [module.tenant-365zon.module.minio.null_resource.health_check (expand) module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_namespace.redis (expand)" references: [module.redis.var.namespace (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.installed (expand)" references: [module.mongodb.helm_release.mongodb (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)" references: [module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.var.owners (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.tld (expand)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_api_uri (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (close)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (close)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_action.groups-claim (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.monitoring.random_password.grafana_admin_password (expand)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack (expand)" references: [module.monitoring.var.wait_on (expand) module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand) module.monitoring.var.remote_write_url (expand) module.monitoring.var.remote_read_url (expand) module.monitoring.random_password.grafana_admin_password (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.ingressClass (expand)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_url (expand)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.region (expand)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.name (expand)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_config (expand)" references: [module.zitadel-db.var.k8s_config_yaml (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_auth (expand)" references: [module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0] module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.redis_db_next_start_index (expand)" references: [module.argocd.var.redis_db_start_index (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:58:47.082+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)" references: [] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_api_uri (expand)" references: [module.minio.output.minio_api_uri (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_host (expand)" references: [module.monitoring.local.k8s_config (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.prometheus_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/local\"]" references: [] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin (expand)" references: [] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)" references: [module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.server (expand)" references: [module.tenant-365zon.var.minio_server (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.idp_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)" references: [] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.user_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_access_key (expand)" references: [module.minio.random_password.minio_access_key (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.minio.output.installed (expand)" references: [module.minio.helm_release.minio (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.root_password (expand)" references: [module.postgresql.random_password.postgresql_root_password (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_host (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_namespace.postgresql (expand)" references: [module.postgresql.var.enabled (expand) module.postgresql.var.namespace (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_root_password (expand)" references: [] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.postgresql.helm_release.postgresql (expand)" references: [module.postgresql.var.wait_on (expand) module.postgresql.kubernetes_secret.postgresql_auth (expand) module.postgresql.var.enabled (expand) module.postgresql.kubernetes_namespace.postgresql (expand) module.postgresql.var.username (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_host (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.null_resource.health_check (expand)" references: [module.tenant-365zon.module.minio.var.wait_on (expand) module.tenant-365zon.module.minio.var.server (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0]" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (close)" references: [] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_username (expand)" references: [] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand)" references: [] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.wait_on (expand)" references: [module.minio.output.installed (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_redirect_uri (expand)" references: [module.zitadel.output.server (expand) module.zitadel-argocd.output.logoutSuffix (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_host (expand)" references: [module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings (expand)" references: [module.tenant-365zon.var.mongodb_connection_string (expand) module.tenant-365zon.var.rabbitmq_connection_string (expand) module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.email (expand)" references: [] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.mongodb_connection_string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_auth (expand)" references: [module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:47.083+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.uri (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.redis.output.installed (expand)" references: [module.redis.helm_release.redis (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-argocd.var.domain (expand) module.zitadel-argocd.var.jwt_profile_file (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_auth (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.server (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_secret_key (expand)" references: [] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_namespace.tenant (expand)" references: [module.tenant-365zon.var.wait_on (expand) module.tenant-365zon.local.name (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.host (expand)" references: [] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.tls (expand)" references: [] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)" references: [] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)" references: [module.tenant-365zon.var.user_id (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_action.groups-claim" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (expand)" references: [] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (close)" references: [] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.secret_key (expand)" references: [module.tenant-365zon.var.minio_secret_key (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)" references: [] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "local.k8s_auth (expand)" references: [local.k8s_config (expand) local.k8s_config (expand) local.k8s_config (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (close)" references: [] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close)" references: [] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin_server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)" references: [] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)" references: [] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_config (expand)" references: [module.minio.var.k8s_config_yaml (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.cluster-init.module.longhorn.local.k8s_host (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (expand)" references: [] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)" references: [] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.wait_on (expand)" references: [module.zitadel-argocd.output.installed (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (expand)" references: [] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.redis.helm_release.redis (expand)" references: [module.redis.var.wait_on (expand) module.redis.var.architecture (expand) module.redis.var.architecture (validation) module.redis.kubernetes_namespace.redis (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:58:47.084+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (expand)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (close)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.minio (close)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_password (expand)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand)" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim (expand) module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.zitadel_action.groups-claim] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.kubernetes_secret.bridge-tls (expand)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default" references: [module.zitadel-argocd.module.zitadel_project.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project.var.name (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (expand)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.name (expand)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (expand)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.helm_release.rabbitmq (expand)" references: [module.rabbitmq.random_password.password (expand) module.rabbitmq.var.wait_on (expand) module.rabbitmq.var.replicas (expand) module.rabbitmq.local.service_uri (expand) module.rabbitmq.var.admin (expand) module.rabbitmq.var.tls (expand) module.rabbitmq.var.ingressClass (expand) module.rabbitmq.random_password.password (expand) module.rabbitmq.var.namespace (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.password (expand)" references: [module.postgresql.random_password.postgresql_user_password (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.argocd_service_domain (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0] module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.monitoring (close)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_username (expand)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_admin_uri (expand)" references: [module.minio.local.admin_service_uri (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.admin (expand)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (expand)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_namespace.argocd (expand)" references: [module.argocd.var.namespace (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_host (expand)" references: [module.mongodb.local.k8s_config (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_secret.zitadel (expand)" references: [module.zitadel.var.enabled (expand) module.zitadel.random_password.zitadel_masterkey (expand) module.zitadel.kubernetes_namespace.zitadel (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_config (expand)" references: [module.redis.var.k8s_config_yaml (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.service_name (expand)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/aminueza/minio\"]" references: [var.secret_key var.access_key var.minio_server var.region] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "var.endpoints" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.minio.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.replicas (expand)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.tls (expand)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.output.installed (expand)" references: [module.cluster-init.module.longhorn.output.installed (expand) module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.redis.output.password (expand)" references: [module.redis.random_password.redis (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)" references: [] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_auth (expand)" references: [module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.installed (expand)" references: [module.postgresql.helm_release.postgresql (expand)] +2025-07-11T08:58:47.085+0200 [DEBUG] ReferenceTransformer: "module.zitadel.helm_release.zitadel[0]" references: [module.zitadel.var.wait_on (expand) module.zitadel.kubernetes_secret.zitadel (expand) module.zitadel.var.enabled (expand) module.zitadel.local.service_uri (expand) module.zitadel.var.database (expand) module.zitadel.var.database_username (expand) module.zitadel.var.database_password (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.database_root_username (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.display_on_homepage (expand) module.zitadel.var.ingressClass (expand) module.zitadel.kubernetes_namespace.zitadel (expand)] +2025-07-11T08:58:47.086+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)] +2025-07-11T08:58:47.086+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)] +2025-07-11T08:58:47.086+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (expand)" references: [] +2025-07-11T08:58:47.086+0200 [DEBUG] ReferenceTransformer: "module.minio (expand)" references: [] +2025-07-11T08:58:47.133+0200 [DEBUG] DestroyEdgeTransformer2: module.zitadel.data.kubernetes_secret.zitadel_admin has stored dependency of module.zitadel.local_file.zitadel_jwt_profile_file (destroy) +2025-07-11T08:58:47.133+0200 [DEBUG] DestroyEdgeTransformer2: module.zitadel.helm_release.zitadel[0] has stored dependency of module.zitadel.local_file.zitadel_jwt_profile_file (destroy) +2025-07-11T08:58:47.196+0200 [DEBUG] Starting graph walk: walkApply +2025-07-11T08:58:47.198+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.198+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.203+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5"] +2025-07-11T08:58:47.203+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 pid=973412 +2025-07-11T08:58:47.203+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 +2025-07-11T08:58:47.207+0200 [INFO] provider.terraform-provider-random_v3.7.2_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.206+0200" +2025-07-11T08:58:47.219+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:47.219+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: plugin address: address=/tmp/plugin1962094272 network=unix timestamp="2025-07-11T08:58:47.219+0200" +2025-07-11T08:58:47.227+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.227+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.231+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5"] +2025-07-11T08:58:47.231+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 pid=973421 +2025-07-11T08:58:47.231+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 +2025-07-11T08:58:47.234+0200 [INFO] provider.terraform-provider-local_v2.5.3_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.234+0200" +2025-07-11T08:58:47.246+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:47.246+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: plugin address: address=/tmp/plugin2678525307 network=unix timestamp="2025-07-11T08:58:47.246+0200" +2025-07-11T08:58:47.253+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.253+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.258+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 args=[".terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1"] +2025-07-11T08:58:47.258+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 pid=973430 +2025-07-11T08:58:47.258+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 +2025-07-11T08:58:47.260+0200 [INFO] provider.terraform-provider-slugify_v0.1.1: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.260+0200" +2025-07-11T08:58:47.272+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:47.272+0200 [DEBUG] provider.terraform-provider-slugify_v0.1.1: plugin address: address=/tmp/plugin4087419832 network=unix timestamp="2025-07-11T08:58:47.272+0200" +2025-07-11T08:58:47.279+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.279+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.284+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5"] +2025-07-11T08:58:47.284+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 pid=973443 +2025-07-11T08:58:47.284+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 +2025-07-11T08:58:47.286+0200 [INFO] provider.terraform-provider-null_v3.2.4_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.286+0200" +2025-07-11T08:58:47.299+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:47.299+0200 [DEBUG] provider.terraform-provider-null_v3.2.4_x5: plugin address: address=/tmp/plugin1551381758 network=unix timestamp="2025-07-11T08:58:47.299+0200" +2025-07-11T08:58:47.307+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.307+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.311+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:58:47.311+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=973451 +2025-07-11T08:58:47.311+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:58:47.318+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.318+0200" +2025-07-11T08:58:47.345+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:47.345+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin3161005574 network=unix timestamp="2025-07-11T08:58:47.345+0200" +2025-07-11T08:58:47.357+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.357+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.361+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5"] +2025-07-11T08:58:47.362+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 pid=973462 +2025-07-11T08:58:47.362+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 +2025-07-11T08:58:47.364+0200 [INFO] provider.terraform-provider-external_v2.3.5_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.364+0200" +2025-07-11T08:58:47.376+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:47.376+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: plugin address: address=/tmp/plugin3164615670 network=unix timestamp="2025-07-11T08:58:47.376+0200" +2025-07-11T08:58:47.384+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.385+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.389+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:47.389+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=973470 +2025-07-11T08:58:47.389+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:47.406+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.405+0200" +2025-07-11T08:58:47.417+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:47.417+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin854257526 network=unix timestamp="2025-07-11T08:58:47.417+0200" +2025-07-11T08:58:47.425+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:47.425+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.425+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.430+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:47.431+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=973485 +2025-07-11T08:58:47.431+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:47.448+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.448+0200" +2025-07-11T08:58:47.457+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1582230565 network=unix timestamp="2025-07-11T08:58:47.457+0200" +2025-07-11T08:58:47.457+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:47.464+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.465+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.465+0200 [WARN] ValidateProviderConfig from "provider[\"registry.terraform.io/aminueza/minio\"]" changed the config value, but that value is unused +2025-07-11T08:58:47.469+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:47.469+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=973501 +2025-07-11T08:58:47.469+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:47.483+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.483+0200" +2025-07-11T08:58:47.495+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:47.495+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin947853521 network=unix timestamp="2025-07-11T08:58:47.495+0200" +2025-07-11T08:58:47.504+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:47.504+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.504+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.508+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:47.508+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=973515 +2025-07-11T08:58:47.508+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:47.527+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.526+0200" +2025-07-11T08:58:47.535+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: network=unix address=/tmp/plugin3400431756 timestamp="2025-07-11T08:58:47.535+0200" +2025-07-11T08:58:47.535+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:47.543+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.543+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.544+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:47 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:58:47.544+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f2f82264-14e9-3f41-b922-7a5ebd4ada47 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 tf_rpc=ConfigureProvider timestamp="2025-07-11T08:58:47.544+0200" +2025-07-11T08:58:47.544+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f2f82264-14e9-3f41-b922-7a5ebd4ada47 @module=helm timestamp="2025-07-11T08:58:47.544+0200" +2025-07-11T08:58:47.544+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=89175c36-9a75-01d1-5ac7-8a9c8177c200 tf_rpc=ConfigureProvider timestamp="2025-07-11T08:58:47.544+0200" +2025-07-11T08:58:47.544+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f2f82264-14e9-3f41-b922-7a5ebd4ada47 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm timestamp="2025-07-11T08:58:47.544+0200" +2025-07-11T08:58:47.544+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=89175c36-9a75-01d1-5ac7-8a9c8177c200 tf_rpc=ConfigureProvider timestamp="2025-07-11T08:58:47.544+0200" +2025-07-11T08:58:47.544+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=89175c36-9a75-01d1-5ac7-8a9c8177c200 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 timestamp="2025-07-11T08:58:47.544+0200" +2025-07-11T08:58:47.545+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:58:47 [DEBUG] MinIO SSL client transport configured successfully: timestamp="2025-07-11T08:58:47.545+0200" +2025-07-11T08:58:47.548+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:47.548+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=973534 +2025-07-11T08:58:47.548+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:47.561+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.561+0200" +2025-07-11T08:58:47.573+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:47.573+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin1680319166 network=unix timestamp="2025-07-11T08:58:47.573+0200" +2025-07-11T08:58:47.580+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.580+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.580+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:47.585+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:47.585+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=973547 +2025-07-11T08:58:47.585+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:47.603+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.603+0200" +2025-07-11T08:58:47.613+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:47.613+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2439905127 network=unix timestamp="2025-07-11T08:58:47.613+0200" +2025-07-11T08:58:47.620+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.620+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.624+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:47.625+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=973565 +2025-07-11T08:58:47.625+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:47.638+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.638+0200" +2025-07-11T08:58:47.650+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:47.650+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin2748421725 network=unix timestamp="2025-07-11T08:58:47.650+0200" +2025-07-11T08:58:47.658+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:47.659+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 id=973412 +2025-07-11T08:58:47.659+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:47.659+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.659+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.659+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:47 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:58:47.660+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9b60728d-c226-fa75-0484-b875e46ffcbd tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 timestamp="2025-07-11T08:58:47.659+0200" +2025-07-11T08:58:47.660+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9b60728d-c226-fa75-0484-b875e46ffcbd @module=helm tf_rpc=ConfigureProvider timestamp="2025-07-11T08:58:47.660+0200" +2025-07-11T08:58:47.660+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9b60728d-c226-fa75-0484-b875e46ffcbd tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 timestamp="2025-07-11T08:58:47.660+0200" +2025-07-11T08:58:47.663+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:47.664+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=973581 +2025-07-11T08:58:47.664+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:47.677+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.676+0200" +2025-07-11T08:58:47.689+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:47.689+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin141421293 network=unix timestamp="2025-07-11T08:58:47.688+0200" +2025-07-11T08:58:47.697+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:47.697+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.697+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.697+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:47.701+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:47.701+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=973595 +2025-07-11T08:58:47.701+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:47.714+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.714+0200" +2025-07-11T08:58:47.726+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin533705101 network=unix timestamp="2025-07-11T08:58:47.726+0200" +2025-07-11T08:58:47.726+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:47.734+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:47.734+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.734+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.738+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:47.738+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=973610 +2025-07-11T08:58:47.738+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:47.756+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.756+0200" +2025-07-11T08:58:47.764+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:47.764+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1275633691 network=unix timestamp="2025-07-11T08:58:47.764+0200" +2025-07-11T08:58:47.771+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.771+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.776+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:47.776+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=973628 +2025-07-11T08:58:47.776+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:47.789+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.789+0200" +2025-07-11T08:58:47.801+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin2227615802 network=unix timestamp="2025-07-11T08:58:47.801+0200" +2025-07-11T08:58:47.801+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:47.809+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.809+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.809+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:47.813+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:47.814+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=973643 +2025-07-11T08:58:47.814+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:47.832+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.831+0200" +2025-07-11T08:58:47.840+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:47.840+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2161151075 network=unix timestamp="2025-07-11T08:58:47.840+0200" +2025-07-11T08:58:47.846+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.846+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.851+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:47.851+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=973661 +2025-07-11T08:58:47.851+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:47.869+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.869+0200" +2025-07-11T08:58:47.878+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:47.878+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2919417726 network=unix timestamp="2025-07-11T08:58:47.878+0200" +2025-07-11T08:58:47.885+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.885+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.886+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:47 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:58:47.886+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:47 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:58:47.886+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:47 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:58:47.886+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: tf_provider_addr=registry.terraform.io/hashicorp/helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_req_id=95d6dde8-a473-fea8-4bcb-1137b84175e7 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm timestamp="2025-07-11T08:58:47.886+0200" +2025-07-11T08:58:47.886+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3383f84c-40ff-94a2-5122-4203fa10bb9d tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm timestamp="2025-07-11T08:58:47.886+0200" +2025-07-11T08:58:47.886+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: tf_req_id=be18ee0b-d6a2-e90f-e460-d0ba1f4dc3ca @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 timestamp="2025-07-11T08:58:47.886+0200" +2025-07-11T08:58:47.886+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: tf_rpc=ConfigureProvider settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm tf_req_id=be18ee0b-d6a2-e90f-e460-d0ba1f4dc3ca timestamp="2025-07-11T08:58:47.886+0200" +2025-07-11T08:58:47.887+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=be18ee0b-d6a2-e90f-e460-d0ba1f4dc3ca tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 timestamp="2025-07-11T08:58:47.887+0200" +2025-07-11T08:58:47.887+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3383f84c-40ff-94a2-5122-4203fa10bb9d tf_rpc=ConfigureProvider timestamp="2025-07-11T08:58:47.886+0200" +2025-07-11T08:58:47.886+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider tf_req_id=95d6dde8-a473-fea8-4bcb-1137b84175e7 timestamp="2025-07-11T08:58:47.886+0200" +2025-07-11T08:58:47.887+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=3383f84c-40ff-94a2-5122-4203fa10bb9d tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 timestamp="2025-07-11T08:58:47.886+0200" +2025-07-11T08:58:47.887+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm tf_rpc=ConfigureProvider config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=4ed04676-1ce6-bebe-4059-a8f6245d23b6 timestamp="2025-07-11T08:58:47.887+0200" +2025-07-11T08:58:47.887+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm tf_req_id=4ed04676-1ce6-bebe-4059-a8f6245d23b6 timestamp="2025-07-11T08:58:47.887+0200" +2025-07-11T08:58:47.887+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_req_id=95d6dde8-a473-fea8-4bcb-1137b84175e7 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:47.887+0200" +2025-07-11T08:58:47.887+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=4ed04676-1ce6-bebe-4059-a8f6245d23b6 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm timestamp="2025-07-11T08:58:47.887+0200" +2025-07-11T08:58:47.891+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:47.891+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=973680 +2025-07-11T08:58:47.891+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:47.908+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.908+0200" +2025-07-11T08:58:47.917+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:47.917+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1016136054 network=unix timestamp="2025-07-11T08:58:47.917+0200" +2025-07-11T08:58:47.924+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.924+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.928+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:47.928+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=973698 +2025-07-11T08:58:47.928+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:47.945+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.945+0200" +2025-07-11T08:58:47.953+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:47.953+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2749057756 network=unix timestamp="2025-07-11T08:58:47.953+0200" +2025-07-11T08:58:47.961+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:47.961+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:47.965+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:58:47.965+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=973715 +2025-07-11T08:58:47.965+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:58:47.985+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:58:47.985+0200" +2025-07-11T08:58:47.994+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin813686370 network=unix timestamp="2025-07-11T08:58:47.994+0200" +2025-07-11T08:58:47.994+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:48.001+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:48.003+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=973485 +2025-07-11T08:58:48.003+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:48.003+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:48.006+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=973501 +2025-07-11T08:58:48.006+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:48.007+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:48.008+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=973451 +2025-07-11T08:58:48.008+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:48.008+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:48.008+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:48.008+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:48 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:58:48.008+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:48 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:58:48.008+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:48 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:58:48.013+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:48.013+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=973732 +2025-07-11T08:58:48.013+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:48.025+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:48.025+0200" +2025-07-11T08:58:48.037+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin3097574580 network=unix timestamp="2025-07-11T08:58:48.037+0200" +2025-07-11T08:58:48.037+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:48.045+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:48.046+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=973628 +2025-07-11T08:58:48.046+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:48.047+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:48.048+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=973610 +2025-07-11T08:58:48.048+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:48.048+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:48.048+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:48.053+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:58:48.053+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=973748 +2025-07-11T08:58:48.053+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:58:48.065+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:58:48.065+0200" +2025-07-11T08:58:48.077+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin1466806855 network=unix timestamp="2025-07-11T08:58:48.077+0200" +2025-07-11T08:58:48.077+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:58:48.086+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:48.087+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=973595 +2025-07-11T08:58:48.087+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:48.088+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:48.090+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=973680 +2025-07-11T08:58:48.090+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:48.091+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:48.092+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 id=973443 +2025-07-11T08:58:48.092+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:48.092+0200 [INFO] Starting apply for module.zitadel.local_file.zitadel_jwt_profile_file +2025-07-11T08:58:48.092+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:48.093+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=973698 +2025-07-11T08:58:48.093+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:48.093+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:58:48.093+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:58:48.098+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:58:48.098+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=973784 +2025-07-11T08:58:48.098+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:58:48.104+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:58:48.104+0200" +2025-07-11T08:58:48.131+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:58:48.131+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin941902043 network=unix timestamp="2025-07-11T08:58:48.131+0200" +2025-07-11T08:58:48.143+0200 [DEBUG] module.zitadel.local_file.zitadel_jwt_profile_file: applying the planned Delete change +2025-07-11T08:58:48.144+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:48.144+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:48.144+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:48 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:58:48.145+0200 [WARN] ValidateProviderConfig from "module.tenant-365zon.module.minio.provider[\"registry.terraform.io/aminueza/minio\"]" changed the config value, but that value is unused +2025-07-11T08:58:48.145+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:58:48 [DEBUG] MinIO SSL client transport configured successfully: timestamp="2025-07-11T08:58:48.145+0200" +2025-07-11T08:58:48.145+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.monitoring.kubernetes_namespace.monitoring, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:58:48.145+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:48.147+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=973715 +2025-07-11T08:58:48.147+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:48.147+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:48.148+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=973784 +2025-07-11T08:58:48.148+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:48.148+0200 [INFO] Starting apply for module.monitoring.kubernetes_namespace.monitoring +2025-07-11T08:58:48.148+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:58:48.148+0200 [DEBUG] module.monitoring.kubernetes_namespace.monitoring: applying the planned Update change +2025-07-11T08:58:48.149+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=aade2bc6-7c4e-abd5-76c1-b0cf17c9ce40 tf_rpc=ConfigureProvider @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 timestamp="2025-07-11T08:58:48.149+0200" +2025-07-11T08:58:48.149+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_req_id=aade2bc6-7c4e-abd5-76c1-b0cf17c9ce40 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:48.149+0200" +2025-07-11T08:58:48.149+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider tf_req_id=572454e0-1a4c-c2ee-678b-4d2ab6aacf32 timestamp="2025-07-11T08:58:48.149+0200" +2025-07-11T08:58:48.149+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=572454e0-1a4c-c2ee-678b-4d2ab6aacf32 tf_rpc=ConfigureProvider timestamp="2025-07-11T08:58:48.149+0200" +2025-07-11T08:58:48.149+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=aade2bc6-7c4e-abd5-76c1-b0cf17c9ce40 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm timestamp="2025-07-11T08:58:48.149+0200" +2025-07-11T08:58:48.149+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=572454e0-1a4c-c2ee-678b-4d2ab6aacf32 tf_rpc=ConfigureProvider timestamp="2025-07-11T08:58:48.149+0200" +2025-07-11T08:58:48.149+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:48 [INFO] Updating namespace: [{"path":"/metadata/annotations/lifecycle.cattle.io~1create.namespace-auth","op":"remove"} {"path":"/metadata/annotations/cattle.io~1status","op":"remove"}] +2025-07-11T08:58:48.149+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:48.149+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Content-Length=156 Host=rancher.bridge.fourlights.dev @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_method=PATCH tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring Content-Type="application/json-patch+json" User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_body="[{\"path\":\"/metadata/annotations/lifecycle.cattle.io~1create.namespace-auth\",\"op\":\"remove\"},{\"path\":\"/metadata/annotations/cattle.io~1status\",\"op\":\"remove\"}]" tf_http_trans_id=45b2ce9b-8de8-f9eb-007b-e969d41eabbc @module=kubernetes.Kubernetes Accept-Encoding=gzip tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T08:58:48.149+0200" +2025-07-11T08:58:48.152+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=973748 +2025-07-11T08:58:48.152+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:48.152+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:48.153+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=973661 +2025-07-11T08:58:48.153+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:48.153+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:48.155+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=973581 +2025-07-11T08:58:48.155+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:48.155+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:48.156+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=973470 +2025-07-11T08:58:48.156+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:48.156+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:48.158+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0007462a0 Settings:0xc00074d440 RegistryClient:0xc000713600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_req_id=bd9ac06b-c1d8-d012-734a-c28d45c4e1f7 tf_resource_type=helm_release tf_rpc=ValidateResourceConfig tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:48.158+0200" +2025-07-11T08:58:48.160+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0007462a0 Settings:0xc00074d440 RegistryClient:0xc000713600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 timestamp="2025-07-11T08:58:48.160+0200" +2025-07-11T08:58:48.162+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Detected value change between proposed new state and prior state: tf_attribute_path=values tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:241 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:48.162+0200" +2025-07-11T08:58:48.162+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Marking Computed attributes with null configuration values as unknown (known after apply) in the plan to prevent potential Terraform errors: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:250 @module=sdk.framework tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:48.162+0200" +2025-07-11T08:58:48.162+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_attribute_path="AttributeName(\"metadata\").AttributeName(\"notes\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_rpc=PlanResourceChange @module=sdk.framework tf_resource_type=helm_release timestamp="2025-07-11T08:58:48.162+0200" +2025-07-11T08:58:48.162+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_attribute_path="AttributeName(\"metadata\").AttributeName(\"app_version\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:48.162+0200" +2025-07-11T08:58:48.162+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_rpc=PlanResourceChange tf_attribute_path="AttributeName(\"metadata\").AttributeName(\"revision\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework timestamp="2025-07-11T08:58:48.162+0200" +2025-07-11T08:58:48.162+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @module=sdk.framework tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_resource_type=helm_release tf_attribute_path="AttributeName(\"metadata\").AttributeName(\"first_deployed\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 timestamp="2025-07-11T08:58:48.162+0200" +2025-07-11T08:58:48.162+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_attribute_path="AttributeName(\"metadata\").AttributeName(\"namespace\")" timestamp="2025-07-11T08:58:48.162+0200" +2025-07-11T08:58:48.162+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_attribute_path="AttributeName(\"metadata\").AttributeName(\"chart\")" tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_resource_type=helm_release timestamp="2025-07-11T08:58:48.162+0200" +2025-07-11T08:58:48.162+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_attribute_path="AttributeName(\"metadata\").AttributeName(\"values\")" timestamp="2025-07-11T08:58:48.162+0200" +2025-07-11T08:58:48.162+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=sdk.framework tf_attribute_path="AttributeName(\"metadata\").AttributeName(\"name\")" tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:48.162+0200" +2025-07-11T08:58:48.162+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_attribute_path="AttributeName(\"metadata\").AttributeName(\"last_deployed\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 @module=sdk.framework timestamp="2025-07-11T08:58:48.162+0200" +2025-07-11T08:58:48.162+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_rpc=PlanResourceChange @module=sdk.framework tf_attribute_path="AttributeName(\"metadata\").AttributeName(\"version\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 timestamp="2025-07-11T08:58:48.162+0200" +2025-07-11T08:58:48.162+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework tf_attribute_path="AttributeName(\"metadata\")" tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:48.162+0200" +2025-07-11T08:58:48.162+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_attribute_path="AttributeName(\"status\")" tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 timestamp="2025-07-11T08:58:48.162+0200" +2025-07-11T08:58:48.162+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_attribute_path="AttributeName(\"manifest\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_rpc=PlanResourceChange @module=sdk.framework timestamp="2025-07-11T08:58:48.162+0200" +2025-07-11T08:58:48.162+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_rpc=PlanResourceChange tf_attribute_path="AttributeName(\"id\")" tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:48.162+0200" +2025-07-11T08:58:48.166+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"zitadel" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID: Keyring: Lint:false Manifest: MaxHistory:0 Metadata: Name:"zitadel" Namespace:"zitadel" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.zitadel.com" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status: Timeout:300 Values:["zitadel:\n masterkeySecretName: \"zitadel\"\n configmapConfig:\n Log:\n Level: 'info'\n LogStore:\n Access:\n Stdout:\n Enabled: true\n ExternalSecure: true\n ExternalDomain: zitadel.365zon.fourlights.dev\n ExternalPort: 443\n TLS:\n Enabled: false\n FirstInstance:\n Org:\n Machine:\n Machine:\n Username: zitadel-admin-sa\n Name: Admin\n MachineKey:\n ExpirationDate: \"2026-01-01T00:00:00Z\"\n Type: 1\n Database:\n Postgres:\n Host: postgresql-hl.postgresql.svc.cluster.local\n Port: 5432\n Database: zitadel\n MaxOpenConns: 20\n MaxIdleConns: 10\n MaxConnLifetime: 30m\n MaxConnIdleTime: 5m\n User:\n Username: zitadel\n Password: \"LW+70S#T8*TcfX]HQ*w12>B&\"\n SSL:\n Mode: disable\n Admin:\n Username: postgres\n Password: \"PvwMI{LznVaS_W-112$IZfdAH2Q\"\n SSL:\n Mode: disable\n \n\nreadinessProbe:\n initialDelaySeconds: 5\n periodSeconds: 5\n failureThreshold: 10\n\nstartupProbe:\n periodSeconds: 5\n failureThreshold: 30\n\nservice:\n annotations:\n traefik.ingress.kubernetes.io/service.serversscheme: h2c\n\ningress:\n enabled: true\n className: nginx\n annotations:\n kubernetes.io/ingress.class: nginx\n cert-manager.io/cluster-issuer: letsencrypt\n \n nginx.ingress.kubernetes.io/backend-protocol: \"GRPC\"\n nginx.ingress.kubernetes.io/grpc-backend: \"true\"\n \n gethomepage.dev/enabled: \"true\"\n gethomepage.dev/name: \"Zitadel\"\n gethomepage.dev/description: \"Identity and Access Management\"\n gethomepage.dev/group: \"Tools\"\n gethomepage.dev/icon: \"zitadel.png\"\n \n hosts:\n - host: zitadel.365zon.fourlights.dev\n paths:\n - path: /\n pathType: Prefix\n\n"] Verify:false Version:"8.12.0" Wait:true WaitForJobs:true}: tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 timestamp="2025-07-11T08:58:48.166+0200" +2025-07-11T08:58:48.166+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"zitadel" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"zitadel" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"v2.67.2","chart":"zitadel","first_deployed":1752215453,"last_deployed":1752215453,"name":"zitadel","namespace":"zitadel","notes":"Thank you for installing zitadel.\nExtract your service account key for authenticating at the ZITADEL API's:\n\n $ kubectl -n zitadel get secret zitadel-admin-sa -o jsonpath='{ .data.zitadel-admin-sa\\.json }' | base64 -D","revision":1,"values":"{\"ingress\":{\"annotations\":{\"cert-manager.io/cluster-issuer\":\"letsencrypt\",\"gethomepage.dev/description\":\"Identity and Access Management\",\"gethomepage.dev/enabled\":\"true\",\"gethomepage.dev/group\":\"Tools\",\"gethomepage.dev/icon\":\"zitadel.png\",\"gethomepage.dev/name\":\"Zitadel\",\"kubernetes.io/ingress.class\":\"nginx\"},\"className\":\"nginx\",\"enabled\":true,\"hosts\":[{\"host\":\"zitadel.365zon.fourlights.dev\",\"paths\":[{\"path\":\"/\",\"pathType\":\"Prefix\"}]}]},\"readinessProbe\":{\"failureThreshold\":10,\"initialDelaySeconds\":5,\"periodSeconds\":5},\"service\":{\"annotations\":{\"traefik.ingress.kubernetes.io/service.serversscheme\":\"h2c\"}},\"startupProbe\":{\"failureThreshold\":30,\"periodSeconds\":5},\"zitadel\":{\"configmapConfig\":{\"Database\":{\"Postgres\":{\"Admin\":{\"Password\":\"PvwMI{LznVaS\\u003cq_[(rXD0p]c\\u003e_W-112$IZfdAH2Q\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"postgres\"},\"Database\":\"zitadel\",\"Host\":\"postgresql-hl.postgresql.svc.cluster.local\",\"MaxConnIdleTime\":\"5m\",\"MaxConnLifetime\":\"30m\",\"MaxIdleConns\":10,\"MaxOpenConns\":20,\"Port\":5432,\"User\":{\"Password\":\"LW+70S#T8*TcfX]HQ*w12\\u003eB\\u0026\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"zitadel\"}}},\"ExternalDomain\":\"zitadel.365zon.fourlights.dev\",\"ExternalPort\":443,\"ExternalSecure\":true,\"FirstInstance\":{\"Org\":{\"Machine\":{\"Machine\":{\"Name\":\"Admin\",\"Username\":\"zitadel-admin-sa\"},\"MachineKey\":{\"ExpirationDate\":\"2026-01-01T00:00:00Z\",\"Type\":1}}}},\"Log\":{\"Level\":\"info\"},\"LogStore\":{\"Access\":{\"Stdout\":{\"Enabled\":true}}},\"TLS\":{\"Enabled\":false}},\"masterkeySecretName\":\"zitadel\"}}","version":"8.12.0"} Name:"zitadel" Namespace:"zitadel" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.zitadel.com" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["zitadel:\n masterkeySecretName: \"zitadel\"\n configmapConfig:\n Log:\n Level: 'info'\n LogStore:\n Access:\n Stdout:\n Enabled: true\n ExternalSecure: true\n ExternalDomain: zitadel.365zon.fourlights.dev\n ExternalPort: 443\n TLS:\n Enabled: false\n FirstInstance:\n Org:\n Machine:\n Machine:\n Username: zitadel-admin-sa\n Name: Admin\n MachineKey:\n ExpirationDate: \"2026-01-01T00:00:00Z\"\n Type: 1\n Database:\n Postgres:\n Host: postgresql-hl.postgresql.svc.cluster.local\n Port: 5432\n Database: zitadel\n MaxOpenConns: 20\n MaxIdleConns: 10\n MaxConnLifetime: 30m\n MaxConnIdleTime: 5m\n User:\n Username: zitadel\n Password: \"LW+70S#T8*TcfX]HQ*w12>B&\"\n SSL:\n Mode: disable\n Admin:\n Username: postgres\n Password: \"PvwMI{LznVaS_W-112$IZfdAH2Q\"\n SSL:\n Mode: disable\n \n\nreadinessProbe:\n initialDelaySeconds: 5\n periodSeconds: 5\n failureThreshold: 10\n\nstartupProbe:\n periodSeconds: 5\n failureThreshold: 30\n\nservice:\n annotations:\n traefik.ingress.kubernetes.io/service.serversscheme: h2c\n\ningress:\n enabled: true\n className: nginx\n annotations:\n kubernetes.io/ingress.class: nginx\n cert-manager.io/cluster-issuer: letsencrypt\n \n gethomepage.dev/enabled: \"true\"\n gethomepage.dev/name: \"Zitadel\"\n gethomepage.dev/description: \"Identity and Access Management\"\n gethomepage.dev/group: \"Tools\"\n gethomepage.dev/icon: \"zitadel.png\"\n \n hosts:\n - host: zitadel.365zon.fourlights.dev\n paths:\n - path: /\n pathType: Prefix\n\n"] Verify:false Version:"8.12.0" Wait:true WaitForJobs:true}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 timestamp="2025-07-11T08:58:48.166+0200" +2025-07-11T08:58:48.166+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Start: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:48.166+0200" +2025-07-11T08:58:48.166+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_rpc=PlanResourceChange @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 tf_resource_type=helm_release timestamp="2025-07-11T08:58:48.166+0200" +2025-07-11T08:58:48.166+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @module=helm configPaths=[] tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_resource_type=helm_release timestamp="2025-07-11T08:58:48.166+0200" +2025-07-11T08:58:48.166+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 timestamp="2025-07-11T08:58:48.166+0200" +2025-07-11T08:58:48.166+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Initial Values: Name=zitadel, Namespace=zitadel, Repository=https://charts.zitadel.com, Repository_Username=, Repository_Password=, Chart=zitadel: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:58:48.166+0200" +2025-07-11T08:58:48.166+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Metadata has changes, setting to unknown: @module=helm tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1799 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:48.166+0200" +2025-07-11T08:58:48.166+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc00074d560 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 @module=helm tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:48.166+0200" +2025-07-11T08:58:48.644+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_op_type=response + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"monitoring","uid":"4e752f54-5f50-4c50-9f26-9b0bc0d1b794","resourceVersion":"109681457","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"monitoring"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:53:05Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 X-Api-Cattle-Auth=true tf_http_res_status_code=200 Content-Type=application/json Date="Fri, 11 Jul 2025 06:58:48 GMT" tf_http_trans_id=45b2ce9b-8de8-f9eb-007b-e969d41eabbc @module=kubernetes.Kubernetes Audit-Id=0db2f4d8-92dc-43d1-8b68-03c4002437a8 X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_reason="200 OK" Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=794 timestamp="2025-07-11T08:58:48.644+0200" +2025-07-11T08:58:48.644+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:48 [INFO] Submitted updated namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"monitoring", GenerateName:"", Namespace:"", SelfLink:"", UID:"4e752f54-5f50-4c50-9f26-9b0bc0d1b794", ResourceVersion:"109681457", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"monitoring"}, Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000c1edb0), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 53, 5, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000c1ede0), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:58:48.644+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:48 [INFO] Checking namespace monitoring +2025-07-11T08:58:48.644+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_body="" tf_http_req_version=HTTP/1.1 tf_http_trans_id=6bcdabcc-db9b-5c28-26c6-05160f45843b @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_op_type=request Accept="application/json, */*" Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring @module=kubernetes.Kubernetes Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" timestamp="2025-07-11T08:58:48.644+0200" +2025-07-11T08:58:48.804+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Content-Type=application/json X-Api-Cattle-Auth=true + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"monitoring","uid":"4e752f54-5f50-4c50-9f26-9b0bc0d1b794","resourceVersion":"109681461","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"monitoring"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:58:49Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:58:49Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:58:48Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=1231 X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_trans_id=6bcdabcc-db9b-5c28-26c6-05160f45843b Date="Fri, 11 Jul 2025 06:58:48 GMT" X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=b78f40ed-9fa5-4184-8a36-88ee44ad7870 @module=kubernetes.Kubernetes timestamp="2025-07-11T08:58:48.803+0200" +2025-07-11T08:58:48.804+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:48 [INFO] Namespace monitoring exists +2025-07-11T08:58:48.804+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:48 [INFO] Reading namespace monitoring +2025-07-11T08:58:48.804+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_body="" tf_http_req_method=GET tf_http_trans_id=4144328b-f1da-385c-ded5-efd26c6c9450 @module=kubernetes.Kubernetes Accept="application/json, */*" tf_http_op_type=request tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept-Encoding=gzip new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev timestamp="2025-07-11T08:58:48.804+0200" +2025-07-11T08:58:48.853+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_res_status_reason="200 OK" @module=kubernetes.Kubernetes Audit-Id=e498f0d3-e9bf-4b46-aa4f-f9a48a1bc040 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json X-Content-Type-Options=nosniff new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"monitoring","uid":"4e752f54-5f50-4c50-9f26-9b0bc0d1b794","resourceVersion":"109681461","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"monitoring"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:58:49Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:58:49Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:58:48Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_version=HTTP/2.0 tf_http_trans_id=4144328b-f1da-385c-ded5-efd26c6c9450 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 Content-Length=1231 Date="Fri, 11 Jul 2025 06:58:48 GMT" X-Api-Cattle-Auth=true tf_http_res_status_code=200 timestamp="2025-07-11T08:58:48.852+0200" +2025-07-11T08:58:48.853+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:58:48 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"monitoring", GenerateName:"", Namespace:"", SelfLink:"", UID:"4e752f54-5f50-4c50-9f26-9b0bc0d1b794", ResourceVersion:"109681461", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"monitoring"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:58:49Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:58:49Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000c1f578), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 58, 48, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000c1f5a8), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:58:48.853+0200 [WARN] Provider "module.monitoring.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" produced an unexpected new value for module.monitoring.kubernetes_namespace.monitoring, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .metadata[0].resource_version: was cty.StringVal("109679530"), but now cty.StringVal("109681461") + - .metadata[0].annotations: new element "cattle.io/status" has appeared + - .metadata[0].annotations: new element "lifecycle.cattle.io/create.namespace-auth" has appeared +2025-07-11T08:58:48.854+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:58:48.854+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:58:48.855+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=973547 +2025-07-11T08:58:48.855+0200 [DEBUG] provider: plugin exited +2025-07-11T08:58:49.226+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Got chart: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_resource_type=helm_release timestamp="2025-07-11T08:58:49.226+0200" +2025-07-11T08:58:49.226+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 @module=helm tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:49.226+0200" +2025-07-11T08:58:49.226+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Release validated: @module=helm tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 timestamp="2025-07-11T08:58:49.226+0200" +2025-07-11T08:58:49.226+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Done: tf_req_id=bbb9aa7b-0305-b2a4-76db-981a2a193f01 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 @module=helm tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:49.226+0200" +2025-07-11T08:58:49.227+0200 [INFO] Starting apply for module.zitadel.helm_release.zitadel[0] +2025-07-11T08:58:49.228+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:58:49.228+0200 [DEBUG] module.zitadel.helm_release.zitadel[0]: applying the planned Update change +2025-07-11T08:58:49.230+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0007462a0 Settings:0xc00074d440 RegistryClient:0xc000713600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ApplyResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 timestamp="2025-07-11T08:58:49.230+0200" +2025-07-11T08:58:49.230+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseUpdate: zitadel] Started: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ApplyResourceChange tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:959 timestamp="2025-07-11T08:58:49.230+0200" +2025-07-11T08:58:49.230+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseUpdate: zitadel] Getting helm configuration for namespace: zitadel: @module=helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_rpc=ApplyResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:963 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:49.230+0200" +2025-07-11T08:58:49.230+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 timestamp="2025-07-11T08:58:49.230+0200" +2025-07-11T08:58:49.230+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_rpc=ApplyResourceChange @module=helm configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:49.230+0200" +2025-07-11T08:58:49.230+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:58:49.230+0200" +2025-07-11T08:58:49.230+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc00074d560 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_rpc=ApplyResourceChange @module=helm tf_resource_type=helm_release timestamp="2025-07-11T08:58:49.230+0200" +2025-07-11T08:58:49.747+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_rpc=ApplyResourceChange tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 @module=helm timestamp="2025-07-11T08:58:49.747+0200" +2025-07-11T08:58:49.747+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Processing Set_list attribute: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1336 @module=helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_rpc=ApplyResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:49.747+0200" +2025-07-11T08:58:49.747+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Final merged values: map[ingress:map[annotations:map[cert-manager.io/cluster-issuer:letsencrypt gethomepage.dev/description:Identity and Access Management gethomepage.dev/enabled:true gethomepage.dev/group:Tools gethomepage.dev/icon:zitadel.png gethomepage.dev/name:Zitadel kubernetes.io/ingress.class:nginx nginx.ingress.kubernetes.io/backend-protocol:GRPC nginx.ingress.kubernetes.io/grpc-backend:true] className:nginx enabled:true hosts:[map[host:zitadel.365zon.fourlights.dev paths:[map[path:/ pathType:Prefix]]]]] readinessProbe:map[failureThreshold:10 initialDelaySeconds:5 periodSeconds:5] service:map[annotations:map[traefik.ingress.kubernetes.io/service.serversscheme:h2c]] startupProbe:map[failureThreshold:30 periodSeconds:5] zitadel:map[configmapConfig:map[Database:map[Postgres:map[Admin:map[Password:PvwMI{LznVaS_W-112$IZfdAH2Q SSL:map[Mode:disable] Username:postgres] Database:zitadel Host:postgresql-hl.postgresql.svc.cluster.local MaxConnIdleTime:5m MaxConnLifetime:30m MaxIdleConns:10 MaxOpenConns:20 Port:5432 User:map[Password:LW+70S#T8*TcfX]HQ*w12>B& SSL:map[Mode:disable] Username:zitadel]]] ExternalDomain:zitadel.365zon.fourlights.dev ExternalPort:443 ExternalSecure:true FirstInstance:map[Org:map[Machine:map[Machine:map[Name:Admin Username:zitadel-admin-sa] MachineKey:map[ExpirationDate:2026-01-01T00:00:00Z Type:1]]]] Log:map[Level:info] LogStore:map[Access:map[Stdout:map[Enabled:true]]] TLS:map[Enabled:false]] masterkeySecretName:zitadel]]: tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1378 @module=helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:58:49.747+0200" +2025-07-11T08:58:49.747+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: ---[ values.yaml ]----------------------------------- +ingress: + annotations: + cert-manager.io/cluster-issuer: letsencrypt + gethomepage.dev/description: Identity and Access Management + gethomepage.dev/enabled: "true" + gethomepage.dev/group: Tools + gethomepage.dev/icon: zitadel.png + gethomepage.dev/name: Zitadel + kubernetes.io/ingress.class: nginx + nginx.ingress.kubernetes.io/backend-protocol: GRPC + nginx.ingress.kubernetes.io/grpc-backend: "true" + className: nginx + enabled: true + hosts: + - host: zitadel.365zon.fourlights.dev + paths: + - path: / + pathType: Prefix +readinessProbe: + failureThreshold: 10 + initialDelaySeconds: 5 + periodSeconds: 5 +service: + annotations: + traefik.ingress.kubernetes.io/service.serversscheme: h2c +startupProbe: + failureThreshold: 30 + periodSeconds: 5 +zitadel: + configmapConfig: + Database: + Postgres: + Admin: + Password: PvwMI{LznVaS_W-112$IZfdAH2Q + SSL: + Mode: disable + Username: postgres + Database: zitadel + Host: postgresql-hl.postgresql.svc.cluster.local + MaxConnIdleTime: 5m + MaxConnLifetime: 30m + MaxIdleConns: 10 + MaxOpenConns: 20 + Port: 5432 + User: + Password: LW+70S#T8*TcfX]HQ*w12>B& + SSL: + Mode: disable + Username: zitadel + ExternalDomain: zitadel.365zon.fourlights.dev + ExternalPort: 443 + ExternalSecure: true + FirstInstance: + Org: + Machine: + Machine: + Name: Admin + Username: zitadel-admin-sa + MachineKey: + ExpirationDate: "2026-01-01T00:00:00Z" + Type: 1 + Log: + Level: info + LogStore: + Access: + Stdout: + Enabled: true + TLS: + Enabled: false + masterkeySecretName: zitadel + +: tf_rpc=ApplyResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1457 @module=helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:58:49.747+0200" +2025-07-11T08:59:12.954+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"v2.67.2","chart":"zitadel","first_deployed":1752215453,"last_deployed":1752217130,"name":"zitadel","namespace":"zitadel","notes":"Thank you for installing zitadel.\nExtract your service account key for authenticating at the ZITADEL API's:\n\n $ kubectl -n zitadel get secret zitadel-admin-sa -o jsonpath='{ .data.zitadel-admin-sa\\.json }' | base64 -D","revision":2,"values":"{\"ingress\":{\"annotations\":{\"cert-manager.io/cluster-issuer\":\"letsencrypt\",\"gethomepage.dev/description\":\"Identity and Access Management\",\"gethomepage.dev/enabled\":\"true\",\"gethomepage.dev/group\":\"Tools\",\"gethomepage.dev/icon\":\"zitadel.png\",\"gethomepage.dev/name\":\"Zitadel\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/backend-protocol\":\"GRPC\",\"nginx.ingress.kubernetes.io/grpc-backend\":\"true\"},\"className\":\"nginx\",\"enabled\":true,\"hosts\":[{\"host\":\"zitadel.365zon.fourlights.dev\",\"paths\":[{\"path\":\"/\",\"pathType\":\"Prefix\"}]}]},\"readinessProbe\":{\"failureThreshold\":10,\"initialDelaySeconds\":5,\"periodSeconds\":5},\"service\":{\"annotations\":{\"traefik.ingress.kubernetes.io/service.serversscheme\":\"h2c\"}},\"startupProbe\":{\"failureThreshold\":30,\"periodSeconds\":5},\"zitadel\":{\"configmapConfig\":{\"Database\":{\"Postgres\":{\"Admin\":{\"Password\":\"PvwMI{LznVaS\\u003cq_[(rXD0p]c\\u003e_W-112$IZfdAH2Q\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"postgres\"},\"Database\":\"zitadel\",\"Host\":\"postgresql-hl.postgresql.svc.cluster.local\",\"MaxConnIdleTime\":\"5m\",\"MaxConnLifetime\":\"30m\",\"MaxIdleConns\":10,\"MaxOpenConns\":20,\"Port\":5432,\"User\":{\"Password\":\"LW+70S#T8*TcfX]HQ*w12\\u003eB\\u0026\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"zitadel\"}}},\"ExternalDomain\":\"zitadel.365zon.fourlights.dev\",\"ExternalPort\":443,\"ExternalSecure\":true,\"FirstInstance\":{\"Org\":{\"Machine\":{\"Machine\":{\"Name\":\"Admin\",\"Username\":\"zitadel-admin-sa\"},\"MachineKey\":{\"ExpirationDate\":\"2026-01-01T00:00:00Z\",\"Type\":1}}}},\"Log\":{\"Level\":\"info\"},\"LogStore\":{\"Access\":{\"Stdout\":{\"Enabled\":true}}},\"TLS\":{\"Enabled\":false}},\"masterkeySecretName\":\"zitadel\"}}","version":"8.12.0"}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 @module=helm tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:12.954+0200" +2025-07-11T08:59:12.954+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=create_namespace tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:12.954+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ApplyResourceChange tf_attribute_path=recreate_pods tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:12.954+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_rpc=ApplyResourceChange tf_attribute_path=reuse_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=wait_for_jobs tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ApplyResourceChange tf_attribute_path=disable_crd_hooks tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=lint tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=reset_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=replace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=atomic tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=force_update tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 @module=sdk.framework tf_attribute_path=timeout tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=chart tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=skip_crds @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=repository @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release tf_rpc=ApplyResourceChange @module=sdk.framework timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=pass_credentials tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=disable_openapi_validation tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=values[0] tf_rpc=ApplyResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_attribute_path=values tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=dependency_update tf_rpc=ApplyResourceChange @module=sdk.framework timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ApplyResourceChange tf_attribute_path=status tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=wait tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release @module=sdk.framework tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=disable_webhooks tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ApplyResourceChange @module=sdk.framework tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=verify tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=cleanup_on_fail tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=max_history tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.955+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=cc025628-0e72-0ac0-55cd-10a9bb8100c8 tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=render_subchart_notes tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:12.955+0200" +2025-07-11T08:59:12.957+0200 [DEBUG] states/remote: state read serial is: 43; serial is: 43 +2025-07-11T08:59:12.957+0200 [DEBUG] states/remote: state read lineage is: 8bb1bb78-c340-a09d-d7d3-bfdfbe0a740e; lineage is: 8bb1bb78-c340-a09d-d7d3-bfdfbe0a740e +2025-07-11T08:59:12.960+0200 [INFO] backend-s3: Uploading remote state: tf_backend.operation=Put tf_backend.req_id=ab6a13aa-8d92-155f-10e4-360ab6ea37fc tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T08:59:12.961+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=PutObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Put tf_backend.req_id=ab6a13aa-8d92-155f-10e4-360ab6ea37fc tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.method=PUT http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate?x-id=PutObject http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;content-encoding;content-length;content-type;host;x-amz-content-sha256;x-amz-date;x-amz-decoded-content-length;x-amz-sdk-checksum-algorithm;x-amz-trailer, Signature=*****" http.request.header.amz_sdk_invocation_id=fa8b3e91-c9dd-43be-8826-ca79f6819ce8 http.request.header.x_amz_trailer=x-amz-checksum-sha256 http.request.header.x_amz_date=20250711T065912Z http.request.header.content_type=application/json http.request.header.x_amz_content_sha256=STREAMING-UNSIGNED-PAYLOAD-TRAILER net.peer.name=storage.bridge.fourlights.dev http.request.header.x_amz_sdk_checksum_algorithm=SHA256 http.request.header.x_amz_decoded_content_length=115835 http.request.header.amz_sdk_request="attempt=1; max=5" http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 ft/s3-transfer m/G,Z" http.request_content_length=115917 http.request.header.accept_encoding=identity http.request.header.content_encoding=aws-chunked http.request.body="[Redacted: 113.2 KB (115,917 bytes), Type: application/json]" +2025-07-11T08:59:13.835+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=PutObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Put tf_backend.req_id=ab6a13aa-8d92-155f-10e4-360ab6ea37fc tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.response.header.x_ratelimit_limit=57 http.response.header.server=MinIO http.response.header.accept_ranges=bytes http.duration=874 http.status_code=200 http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.x_amz_checksum_sha256=NhJ2xUedZhOw36EI0q5RnYFp80IurGOSvNN30WtFb1I= http.response.header.date="Fri, 11 Jul 2025 06:59:13 GMT" http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.x_amz_request_id=185120378C2FDA36 http.response.header.etag="\"7524c154d29cce4e8a40da26a4e1416f\"" http.response.body="" http.response.header.x_xss_protection="1; mode=block" http.response.header.x_content_type_options=nosniff http.response.header.x_ratelimit_remaining=57 +2025-07-11T08:59:13.835+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:13.838+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=973534 +2025-07-11T08:59:13.838+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:13.840+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:13 [INFO] Reading secret zitadel-admin-sa +2025-07-11T08:59:13.840+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_method=GET Accept="application/json, */*" Host=rancher.bridge.fourlights.dev tf_http_op_type=request tf_http_trans_id=268f90ab-a74b-b099-8302-6dd1689c60ad User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/zitadel/secrets/zitadel-admin-sa timestamp="2025-07-11T08:59:13.840+0200" +2025-07-11T08:59:13.978+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Content-Type-Options=nosniff Content-Type=application/json + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"zitadel-admin-sa","namespace":"zitadel","uid":"a0a1976c-014e-4471-9660-8fb4e595ae6e","resourceVersion":"109672001","creationTimestamp":"2025-07-11T06:31:34Z","managedFields":[{"manager":"kubectl-create","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:31:34Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:zitadel-admin-sa.json":{}},"f:type":{}}}]},"data":{"zitadel-admin-sa.json":"eyJ0eXBlIjoic2VydmljZWFjY291bnQiLCJrZXlJZCI6IjMyODM2Mjc4NTA0NDU3NTY2MiIsImtleSI6Ii0tLS0tQkVHSU4gUlNBIFBSSVZBVEUgS0VZLS0tLS1cbk1JSUVvd0lCQUFLQ0FRRUExK2dnQTA1UHNaWnpwa2xjcUVBY2s4VVVrbjFINUhKWGlEM3RvMElVMnZuTFFZazlcbi9weEhNMzBuMnVXTE9mbEwzT1dlcXkwckRmUjJ0cDNhMGd6aUdPM01WNkV1RFBnNzNXWnFITXd4YTRSa1BPTU9cbkxjSGNmbnA0Ykc5UnhaZ2J2ajJwRmt2UEovajVLQzU0SER5b2wydXJXdUdTVktLSUdZN2JVRTRIRDBuK2VqcjZcbkxvRWVHdElWMTd0dGlwcXZGMmpQTVhIdkgveWpzUVdQb2ZSUWg2a3FueFR1d3llc2psRVh5ZXpNUDErV2ZwQ2Fcbi9rbUdmb3dvY3lJdU1OSFVTZXltTGZCWDNLSVlWV3ArL0h1a1AxSjc4MVJRTFBpdmRoOGhpUFpUNTYwZ1hoNzJcbmlTS0NMZ1RMdVV0NzJMRnMrMVhuS3VxMmdJT0Z2UDhqcGFlK0dRSURBUUFCQW9JQkFFa2MrU0pGZGFWTXJwTWtcbkNyV0xLR0k5L2U1eGNGUURDSE5CaldTWXJ4bE1ON0ZVdVdLc0oweGZXSXkrNkx2VUdRV1AySUJkQmxSdWNYajdcbjBhc0o0OUxQVEVCc2UzeTIzd2JsZEkrVjhqSlhuZDRrZ1p1ckozREpKbGlLQmVYazBaaEZweW0rdUVMd0ErZkFcbmZMb0xMSWhDVkwrczNYRzlyRnNEVG05T1RRTzJ5a1B2d0dBeDE1MW5pdEJuTEptNm1zK21lQk9QYy9mL25zSCtcbklSNlczRm00aFdqU2VLZGVXU0pHNmVQa0pxYlhMVE5ZaHhua2JnTmc0Zno0Q0NQZjM5YXFTM05id2lVdi9kUUdcbmk4Y3AvVW5zWkdGMElsbVN5aXBRaXJGazl3TGQ5aVg5dk5vclBQTW9zRDY4bS9wbEMzZVhGSVFBVGJCWEVHYWZcbmVsTVVtZVVDZ1lFQTJqME00MmlpQlEwcXN1ajRyZmRDdjhyamFJdmE1RUc2SnAyQU10WG1RUXVscnAzMWl1S3dcbmpmcE1vVUFpcDVIUzFQZFF1WENLNm03RFZTM05yMzlwQmNHcnN1bVUvblcxaDNBV1RSNEdlV0Z0Y0NqNWVrN3Fcbml0SktmcEdueWZXbHBQZWx1WGZHbVM2bnBBMzZVUmxoWCtGZmFFNnZFSFZhN28vaGN3NGJGNnNDZ1lFQS9VUEtcbkhDd0pOQlBQMDRRN3pHRjJpdmwveno5V0R3bnAzZDlRWnpwbWpDWmEzSjUydExTaHM1VVJDOFZlU0g2bVdoNzhcbmZNb0ZiOGZGaUpVU2pBMURoMFgxcGJoWExlRm5KbW9iSEFsSFp2ZE1nR0RRU2UwVmZubUM3dEp4d0VRM3RkeHVcbi9FOTVrTkZ2WFVTcTBsU0lDRzhURndyMnpIdWVKZjhzUEh2c2JVc0NnWUVBenV0M250NkVUL25OOUZoRUFONGhcbjRhdEN0c3R6dlZ3OFhZU1VHcDhJYzcvUlZhRGJRTlh5eElyL3dSd0lQNDFac3liUzJTQkY5a1VTMjE1VVdRT2FcbjFpUnM0WFByR3VFTVB1QWRwUHpFOHExWGtES3BhRGdPMVpUUm9QUUZmTTEyUXRXendnZzR1dUNyZmpicWtaNVlcbjN3blc1aFZFazN4UnZVT2FaUGFJNVlVQ2dZQVFDNU5xWlgvUHhOR04zUHJNMy8vYW5pUHl4VmgyYTNKZGxDQkxcbjZlOUZRY2pQNFZvejZKMjErdU94a3pkOThFZ3B2WHpSaXhyOUVmTDV6RGY0bDM2SHUyN3NxTmtkRndLcDlGN3pcblQ4TXVTc3lWOVl3OG9zQ1IyckRvNEh4RWFnMzlmNUdvZW9DQkpFT2g3US9GYzRXS3d6NjZYdjl6eFFFbjl4cWVcbldsdUlNUUtCZ0VGa2x0ZjA5NTdwRUM3cFBiL3Q5LzIwajdPREtTS3JTWUUzK1NHaTlYd1VlVDc0SGtVNDNFdWZcbmEzS1dsd01tSmNZdnRjNFJETnVZSjZGOS9lQXE1YzVNcWd5U0VIb01oMzg2dTNZenpaQmNJNUwwNnBNSTRrWWJcbmpoSzYzT0NybHplSUx4d2N3YzAwenRZSGJqeGsveUZPVVdRL09rbkN6bEdFMG84VE9QeXVcbi0tLS0tRU5EIFJTQSBQUklWQVRFIEtFWS0tLS0tXG4iLCJleHBpcmF0aW9uRGF0ZSI6IjIwMjYtMDEtMDFUMDA6MDA6MDBaIiwidXNlcklkIjoiMzI4MzYyNzg1MDQ0NTEwMTI2In0K"},"type":"Opaque"} + tf_http_res_version=HTTP/2.0 tf_http_trans_id=268f90ab-a74b-b099-8302-6dd1689c60ad X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_op_type=response tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" Audit-Id=9e2dd2cf-b576-48b6-a342-239dfc97bf64 Date="Fri, 11 Jul 2025 06:59:13 GMT" X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." timestamp="2025-07-11T08:59:13.977+0200" +2025-07-11T08:59:13.978+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:13 [INFO] Received secret: v1.ObjectMeta{Name:"zitadel-admin-sa", GenerateName:"", Namespace:"zitadel", SelfLink:"", UID:"a0a1976c-014e-4471-9660-8fb4e595ae6e", ResourceVersion:"109672001", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 31, 34, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"kubectl-create", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 31, 34, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000e6c840), Subresource:""}}} +2025-07-11T08:59:13.979+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:13.979+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:13.980+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=973515 +2025-07-11T08:59:13.980+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:13.983+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Marking Computed attributes with null configuration values as unknown (known after apply) in the plan to prevent potential Terraform errors: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:229 tf_provider_addr=registry.terraform.io/hashicorp/local @module=sdk.framework tf_req_id=817156b7-3a39-ff78-633c-de0de4df7380 tf_resource_type=local_file tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:13.983+0200" +2025-07-11T08:59:13.983+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 tf_provider_addr=registry.terraform.io/hashicorp/local tf_rpc=PlanResourceChange @module=sdk.framework tf_attribute_path="AttributeName(\"content_sha512\")" tf_req_id=817156b7-3a39-ff78-633c-de0de4df7380 tf_resource_type=local_file timestamp="2025-07-11T08:59:13.983+0200" +2025-07-11T08:59:13.983+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: tf_req_id=817156b7-3a39-ff78-633c-de0de4df7380 tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 @module=sdk.framework tf_attribute_path="AttributeName(\"id\")" tf_provider_addr=registry.terraform.io/hashicorp/local tf_resource_type=local_file timestamp="2025-07-11T08:59:13.983+0200" +2025-07-11T08:59:13.983+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 tf_provider_addr=registry.terraform.io/hashicorp/local tf_resource_type=local_file tf_rpc=PlanResourceChange @module=sdk.framework tf_attribute_path="AttributeName(\"content_md5\")" tf_req_id=817156b7-3a39-ff78-633c-de0de4df7380 timestamp="2025-07-11T08:59:13.983+0200" +2025-07-11T08:59:13.983+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: @module=sdk.framework tf_attribute_path="AttributeName(\"content_sha1\")" tf_provider_addr=registry.terraform.io/hashicorp/local tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 tf_req_id=817156b7-3a39-ff78-633c-de0de4df7380 tf_resource_type=local_file timestamp="2025-07-11T08:59:13.983+0200" +2025-07-11T08:59:13.983+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 @module=sdk.framework tf_attribute_path="AttributeName(\"content_sha256\")" tf_req_id=817156b7-3a39-ff78-633c-de0de4df7380 tf_resource_type=local_file tf_provider_addr=registry.terraform.io/hashicorp/local tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:13.983+0200" +2025-07-11T08:59:13.983+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/local tf_attribute_path="AttributeName(\"content_base64sha256\")" tf_req_id=817156b7-3a39-ff78-633c-de0de4df7380 tf_resource_type=local_file tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 timestamp="2025-07-11T08:59:13.983+0200" +2025-07-11T08:59:13.983+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: marking computed attribute that is null in the config as unknown: tf_req_id=817156b7-3a39-ff78-633c-de0de4df7380 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwserver/server_planresourcechange.go:480 tf_attribute_path="AttributeName(\"content_base64sha512\")" tf_provider_addr=registry.terraform.io/hashicorp/local tf_resource_type=local_file tf_rpc=PlanResourceChange @module=sdk.framework timestamp="2025-07-11T08:59:13.983+0200" +2025-07-11T08:59:13.984+0200 [INFO] Starting apply for module.zitadel.local_file.zitadel_jwt_profile_file +2025-07-11T08:59:13.984+0200 [DEBUG] module.zitadel.local_file.zitadel_jwt_profile_file: applying the planned Create change +2025-07-11T08:59:13.985+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=1f4311fb-49ea-73f1-59f5-19bb91f750cd tf_resource_type=local_file tf_rpc=ApplyResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=directory_permission timestamp="2025-07-11T08:59:13.985+0200" +2025-07-11T08:59:13.985+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=1f4311fb-49ea-73f1-59f5-19bb91f750cd tf_rpc=ApplyResourceChange @module=sdk.framework tf_resource_type=local_file @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=content timestamp="2025-07-11T08:59:13.985+0200" +2025-07-11T08:59:13.985+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=1f4311fb-49ea-73f1-59f5-19bb91f750cd tf_rpc=ApplyResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=filename tf_resource_type=local_file timestamp="2025-07-11T08:59:13.985+0200" +2025-07-11T08:59:13.985+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=file_permission tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=1f4311fb-49ea-73f1-59f5-19bb91f750cd tf_resource_type=local_file tf_rpc=ApplyResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:13.985+0200" +2025-07-11T08:59:13.986+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:13.986+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:13.987+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 id=973421 +2025-07-11T08:59:13.987+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:13.987+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:13.987+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:13.992+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:59:13.992+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=973985 +2025-07-11T08:59:13.992+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:59:14.000+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:14.000+0200" +2025-07-11T08:59:14.012+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:14.012+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin1978624684 network=unix timestamp="2025-07-11T08:59:14.012+0200" +2025-07-11T08:59:14.020+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:14.020+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:14.024+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:59:14.024+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=973998 +2025-07-11T08:59:14.024+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:59:14.026+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=domain tf_req_id=aa5ae164-18e4-47e5-f156-8de1c7048045 tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:59:14.026+0200" +2025-07-11T08:59:14.026+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @module=sdk.framework tf_req_id=aa5ae164-18e4-47e5-f156-8de1c7048045 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 timestamp="2025-07-11T08:59:14.026+0200" +2025-07-11T08:59:14.026+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_req_id=aa5ae164-18e4-47e5-f156-8de1c7048045 tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:59:14.026+0200" +2025-07-11T08:59:14.026+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=aa5ae164-18e4-47e5-f156-8de1c7048045 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:59:14.026+0200" +2025-07-11T08:59:14.026+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_req_id=aa5ae164-18e4-47e5-f156-8de1c7048045 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=sdk.framework tf_attribute_path=token timestamp="2025-07-11T08:59:14.026+0200" +2025-07-11T08:59:14.026+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=aa5ae164-18e4-47e5-f156-8de1c7048045 tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=token @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:59:14.026+0200" +2025-07-11T08:59:14.026+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_req_id=aa5ae164-18e4-47e5-f156-8de1c7048045 timestamp="2025-07-11T08:59:14.026+0200" +2025-07-11T08:59:14.026+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=jwt_profile_file tf_req_id=aa5ae164-18e4-47e5-f156-8de1c7048045 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 timestamp="2025-07-11T08:59:14.026+0200" +2025-07-11T08:59:14.026+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=jwt_profile_json tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=aa5ae164-18e4-47e5-f156-8de1c7048045 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:59:14.026+0200" +2025-07-11T08:59:14.026+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=jwt_profile_json tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig tf_mux_provider="*proto6server.Server" tf_req_id=aa5ae164-18e4-47e5-f156-8de1c7048045 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework timestamp="2025-07-11T08:59:14.026+0200" +2025-07-11T08:59:14.026+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=aa5ae164-18e4-47e5-f156-8de1c7048045 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T08:59:14.026+0200" +2025-07-11T08:59:14.026+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=port tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=aa5ae164-18e4-47e5-f156-8de1c7048045 tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework timestamp="2025-07-11T08:59:14.026+0200" +2025-07-11T08:59:14.032+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:14.032+0200" +2025-07-11T08:59:14.043+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:14.043+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin4262722488 network=unix timestamp="2025-07-11T08:59:14.043+0200" +2025-07-11T08:59:14.051+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:14.051+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:14.052+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Provider Configure: tf_rpc=ConfigureProvider @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:12 tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=c4628928-89b4-d1ce-5079-770fd578d22d timestamp="2025-07-11T08:59:14.052+0200" +2025-07-11T08:59:14.052+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Provider Configure: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ConfigureProvider tf_req_id=c4628928-89b4-d1ce-5079-770fd578d22d @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:20 @module=sdk.framework tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:59:14.052+0200" +2025-07-11T08:59:14.057+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:59:14.057+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=974014 +2025-07-11T08:59:14.057+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:59:14.057+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=4642e434-3c6b-b1a2-d693-eff919ed75a6 tf_rpc=ValidateProviderConfig tf_attribute_path=token tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:59:14.057+0200" +2025-07-11T08:59:14.057+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=token @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=4642e434-3c6b-b1a2-d693-eff919ed75a6 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:59:14.057+0200" +2025-07-11T08:59:14.057+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=4642e434-3c6b-b1a2-d693-eff919ed75a6 tf_rpc=ValidateProviderConfig tf_attribute_path=jwt_profile_file tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:59:14.057+0200" +2025-07-11T08:59:14.057+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig tf_attribute_path=jwt_profile_file tf_req_id=4642e434-3c6b-b1a2-d693-eff919ed75a6 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework timestamp="2025-07-11T08:59:14.057+0200" +2025-07-11T08:59:14.057+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=jwt_profile_json tf_req_id=4642e434-3c6b-b1a2-d693-eff919ed75a6 timestamp="2025-07-11T08:59:14.057+0200" +2025-07-11T08:59:14.057+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=jwt_profile_json tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=4642e434-3c6b-b1a2-d693-eff919ed75a6 timestamp="2025-07-11T08:59:14.057+0200" +2025-07-11T08:59:14.057+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_req_id=4642e434-3c6b-b1a2-d693-eff919ed75a6 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T08:59:14.057+0200" +2025-07-11T08:59:14.057+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=4642e434-3c6b-b1a2-d693-eff919ed75a6 @module=sdk.framework tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:59:14.057+0200" +2025-07-11T08:59:14.057+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_req_id=4642e434-3c6b-b1a2-d693-eff919ed75a6 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=domain tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:59:14.057+0200" +2025-07-11T08:59:14.057+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_req_id=4642e434-3c6b-b1a2-d693-eff919ed75a6 timestamp="2025-07-11T08:59:14.057+0200" +2025-07-11T08:59:14.057+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=insecure tf_req_id=4642e434-3c6b-b1a2-d693-eff919ed75a6 timestamp="2025-07-11T08:59:14.057+0200" +2025-07-11T08:59:14.057+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_rpc=ValidateProviderConfig @module=sdk.framework tf_req_id=4642e434-3c6b-b1a2-d693-eff919ed75a6 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:59:14.057+0200" +2025-07-11T08:59:14.064+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:14.064+0200" +2025-07-11T08:59:14.076+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:14.076+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin778161070 network=unix timestamp="2025-07-11T08:59:14.076+0200" +2025-07-11T08:59:14.084+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Provider Configure: @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ConfigureProvider @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:12 tf_mux_provider="*proto6server.Server" tf_req_id=4f1231f5-3815-4345-a735-0b22a2f29c2b timestamp="2025-07-11T08:59:14.084+0200" +2025-07-11T08:59:14.084+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Provider Configure: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=4f1231f5-3815-4345-a735-0b22a2f29c2b tf_rpc=ConfigureProvider @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:20 @module=sdk.framework tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:59:14.084+0200" +2025-07-11T08:59:14.088+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=insecure tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_mux_provider="*proto6server.Server" tf_req_id=4bf90d5b-8301-c844-e902-2f7a5197aa25 @module=sdk.framework timestamp="2025-07-11T08:59:14.088+0200" +2025-07-11T08:59:14.088+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" tf_req_id=4bf90d5b-8301-c844-e902-2f7a5197aa25 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:59:14.088+0200" +2025-07-11T08:59:14.088+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=4bf90d5b-8301-c844-e902-2f7a5197aa25 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=token tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:59:14.088+0200" +2025-07-11T08:59:14.088+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_rpc=ValidateProviderConfig tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=4bf90d5b-8301-c844-e902-2f7a5197aa25 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework timestamp="2025-07-11T08:59:14.088+0200" +2025-07-11T08:59:14.088+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=sdk.framework tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_req_id=4bf90d5b-8301-c844-e902-2f7a5197aa25 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T08:59:14.088+0200" +2025-07-11T08:59:14.088+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=4bf90d5b-8301-c844-e902-2f7a5197aa25 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:59:14.088+0200" +2025-07-11T08:59:14.088+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_req_id=4bf90d5b-8301-c844-e902-2f7a5197aa25 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=jwt_profile_json tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:59:14.088+0200" +2025-07-11T08:59:14.088+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig tf_attribute_path=jwt_profile_json tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=4bf90d5b-8301-c844-e902-2f7a5197aa25 timestamp="2025-07-11T08:59:14.088+0200" +2025-07-11T08:59:14.088+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_req_id=4bf90d5b-8301-c844-e902-2f7a5197aa25 tf_rpc=ValidateProviderConfig tf_attribute_path=port tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework timestamp="2025-07-11T08:59:14.088+0200" +2025-07-11T08:59:14.088+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=port tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_mux_provider="*proto6server.Server" tf_req_id=4bf90d5b-8301-c844-e902-2f7a5197aa25 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:59:14.088+0200" +2025-07-11T08:59:14.088+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_attribute_path=domain tf_req_id=4bf90d5b-8301-c844-e902-2f7a5197aa25 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework timestamp="2025-07-11T08:59:14.088+0200" +2025-07-11T08:59:14.088+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=domain tf_mux_provider="*proto6server.Server" @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=4bf90d5b-8301-c844-e902-2f7a5197aa25 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:59:14.088+0200" +2025-07-11T08:59:14.089+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Provider Configure: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:12 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ConfigureProvider tf_req_id=f71d4a70-fc44-7922-455e-6aa02e1407fb timestamp="2025-07-11T08:59:14.089+0200" +2025-07-11T08:59:14.089+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Provider Configure: @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_mux_provider="*proto6server.Server" tf_req_id=f71d4a70-fc44-7922-455e-6aa02e1407fb tf_rpc=ConfigureProvider @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:20 timestamp="2025-07-11T08:59:14.089+0200" +2025-07-11T08:59:14.090+0200 [INFO] Starting apply for module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default +2025-07-11T08:59:14.090+0200 [DEBUG] module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default: applying the planned Create change +2025-07-11T08:59:14.090+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_rpc=ApplyResourceChange @module=zitadel @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/org/funcs.go:38 tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=d98be5c3-0a2c-dcc3-75c8-ffcfd44338da tf_resource_type=zitadel_org timestamp="2025-07-11T08:59:14.090+0200" +2025-07-11T08:59:19.488+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:19.492+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default +2025-07-11T08:59:19.492+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default: applying the planned Create change +2025-07-11T08:59:19.492+0200 [INFO] Starting apply for module.zitadel-argocd.module.zitadel_project.zitadel_project.default +2025-07-11T08:59:19.492+0200 [INFO] Starting apply for module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default +2025-07-11T08:59:19.492+0200 [DEBUG] module.zitadel-argocd.module.zitadel_project.zitadel_project.default: applying the planned Create change +2025-07-11T08:59:19.492+0200 [INFO] Starting apply for module.zitadel-argocd.zitadel_action.groups-claim +2025-07-11T08:59:19.492+0200 [DEBUG] module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default: applying the planned Create change +2025-07-11T08:59:19.492+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_rpc=ApplyResourceChange @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project/funcs.go:67 tf_mux_provider=tf5to6server.v5tov6Server @module=zitadel tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=b0d06e3f-1107-f070-a731-16d3caf187e4 tf_resource_type=zitadel_project timestamp="2025-07-11T08:59:19.492+0200" +2025-07-11T08:59:19.492+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .gender: planned value cty.StringVal("GENDER_UNSPECIFIED") for a non-computed attribute + - .preferred_language: planned value cty.StringVal("und") for a non-computed attribute +2025-07-11T08:59:19.492+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_resource_type=zitadel_project tf_rpc=ApplyResourceChange @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project/funcs.go:67 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=e43f56d3-a670-fd97-a383-d49e1756b892 timestamp="2025-07-11T08:59:19.492+0200" +2025-07-11T08:59:19.492+0200 [INFO] Starting apply for module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default +2025-07-11T08:59:19.493+0200 [DEBUG] module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default: applying the planned Create change +2025-07-11T08:59:19.493+0200 [DEBUG] module.zitadel-argocd.zitadel_action.groups-claim: applying the planned Create change +2025-07-11T08:59:19.493+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: 2025/07/11 08:59:19 [DEBUG] setting computed for "login_names" from ComputedKeys +2025-07-11T08:59:19.493+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=2b2a8223-17b1-0af7-bf34-1f0dfb69541b tf_resource_type=zitadel_action tf_rpc=ApplyResourceChange @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/action/funcs.go:71 timestamp="2025-07-11T08:59:19.493+0200" +2025-07-11T08:59:19.493+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=622c20e0-ed80-9598-236b-f877dd4f9238 @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/human_user/funcs.go:38 tf_resource_type=zitadel_human_user tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:19.493+0200" +2025-07-11T08:59:19.991+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:19.993+0200 [INFO] Starting apply for module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default +2025-07-11T08:59:19.993+0200 [DEBUG] module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default: applying the planned Create change +2025-07-11T08:59:19.994+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=c5de1c3f-316d-40b1-7a87-daf010f7fad6 tf_resource_type=zitadel_login_policy tf_rpc=ApplyResourceChange @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/login_policy/funcs.go:174 timestamp="2025-07-11T08:59:19.994+0200" +2025-07-11T08:59:20.401+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:21.663+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_resource_type=zitadel_human_user tf_req_id=622c20e0-ed80-9598-236b-f877dd4f9238 tf_rpc=ApplyResourceChange @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/human_user/funcs.go:167 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:59:21.663+0200" +2025-07-11T08:59:21.889+0200 [WARN] Provider "module.zitadel-bootstrap.provider[\"registry.terraform.io/zitadel/zitadel\"]" produced an unexpected new value for module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .phone: was null, but now cty.StringVal("") + - .is_phone_verified: was null, but now cty.False + - .nick_name: was null, but now cty.StringVal("") +2025-07-11T08:59:21.889+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:21.891+0200 [INFO] Starting apply for module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default +2025-07-11T08:59:21.891+0200 [DEBUG] module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default: applying the planned Create change +2025-07-11T08:59:21.892+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_mux_provider=tf5to6server.v5tov6Server @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/org_member/funcs.go:61 @module=zitadel tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=4a97bb36-7676-e2a8-91a4-a964007aa293 tf_resource_type=zitadel_org_member tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:21.892+0200" +2025-07-11T08:59:22.180+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:22.181+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:22.182+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=974014 +2025-07-11T08:59:22.182+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:22.187+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:22.189+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0] +2025-07-11T08:59:22.189+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]: applying the planned Create change +2025-07-11T08:59:22.189+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=b2cf80c8-1c8d-1987-099e-c17ae1a3fe53 tf_resource_type=zitadel_project_member tf_rpc=ApplyResourceChange @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_member/funcs.go:63 timestamp="2025-07-11T08:59:22.189+0200" +2025-07-11T08:59:22.684+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:22.687+0200 [INFO] Starting apply for module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token +2025-07-11T08:59:22.687+0200 [INFO] Starting apply for module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info +2025-07-11T08:59:22.687+0200 [DEBUG] module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token: applying the planned Create change +2025-07-11T08:59:22.687+0200 [DEBUG] module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info: applying the planned Create change +2025-07-11T08:59:22.688+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=86156163-bee4-b718-6455-a7d02688342c tf_resource_type=zitadel_trigger_actions tf_rpc=ApplyResourceChange @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/trigger_actions/funcs.go:69 timestamp="2025-07-11T08:59:22.688+0200" +2025-07-11T08:59:22.688+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_resource_type=zitadel_trigger_actions tf_req_id=e8af89ee-1a0e-960e-0b68-2dea6525a8b5 tf_rpc=ApplyResourceChange @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/trigger_actions/funcs.go:69 @module=zitadel timestamp="2025-07-11T08:59:22.688+0200" +2025-07-11T08:59:22.890+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:22.890+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:22.891+0200 [INFO] Starting apply for module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0] +2025-07-11T08:59:22.891+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7] +2025-07-11T08:59:22.891+0200 [DEBUG] module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]: applying the planned Create change +2025-07-11T08:59:22.892+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5] +2025-07-11T08:59:22.892+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1] +2025-07-11T08:59:22.892+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7]: applying the planned Create change +2025-07-11T08:59:22.892+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0] +2025-07-11T08:59:22.892+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6] +2025-07-11T08:59:22.892+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1]: applying the planned Create change +2025-07-11T08:59:22.892+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3] +2025-07-11T08:59:22.892+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]: applying the planned Create change +2025-07-11T08:59:22.892+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4] +2025-07-11T08:59:22.892+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]: applying the planned Create change +2025-07-11T08:59:22.892+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]: applying the planned Create change +2025-07-11T08:59:22.892+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4]: applying the planned Create change +2025-07-11T08:59:22.892+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_member/funcs.go:63 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=d4f074cb-c8a7-8dd4-263a-14aad4d82744 tf_resource_type=zitadel_project_member tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:22.892+0200" +2025-07-11T08:59:22.892+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:66 tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=b40f9030-4d42-8ace-29d5-b12276620f7b tf_rpc=ApplyResourceChange @module=zitadel tf_resource_type=zitadel_project_role timestamp="2025-07-11T08:59:22.892+0200" +2025-07-11T08:59:22.892+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3]: applying the planned Create change +2025-07-11T08:59:22.892+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_mux_provider=tf5to6server.v5tov6Server tf_resource_type=zitadel_project_role tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=8881c3e5-32cc-cd84-6ede-49e2a73e724b tf_rpc=ApplyResourceChange @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:66 @module=zitadel timestamp="2025-07-11T08:59:22.892+0200" +2025-07-11T08:59:22.892+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:66 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=8549bce0-50b4-2b74-60b3-4a790e282c0b tf_resource_type=zitadel_project_role tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:22.892+0200" +2025-07-11T08:59:22.892+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_resource_type=zitadel_project_role tf_mux_provider=tf5to6server.v5tov6Server tf_req_id=53b79562-ffe4-56b2-017d-81a1dc05cfe9 tf_rpc=ApplyResourceChange @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:66 @module=zitadel timestamp="2025-07-11T08:59:22.892+0200" +2025-07-11T08:59:22.892+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: @module=zitadel tf_req_id=f1f60c9c-9c66-7774-66f5-5999dd16fbe0 tf_resource_type=zitadel_project_role @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:66 tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:22.892+0200" +2025-07-11T08:59:22.892+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: @module=zitadel tf_rpc=ApplyResourceChange @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:66 tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=ad5f7d6c-a852-c9ed-ce13-14eed0d8e222 tf_resource_type=zitadel_project_role timestamp="2025-07-11T08:59:22.892+0200" +2025-07-11T08:59:22.892+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_req_id=c99b275f-b96d-d1c1-698f-3efe6e0a204d tf_resource_type=zitadel_project_role tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ApplyResourceChange @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:66 @module=zitadel timestamp="2025-07-11T08:59:22.892+0200" +2025-07-11T08:59:24.629+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:24.630+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2] +2025-07-11T08:59:24.630+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2]: applying the planned Create change +2025-07-11T08:59:24.631+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_rpc=ApplyResourceChange @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:66 tf_mux_provider=tf5to6server.v5tov6Server @module=zitadel tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=e71d5e28-8882-11ef-0588-3a5a371db924 tf_resource_type=zitadel_project_role timestamp="2025-07-11T08:59:24.631+0200" +2025-07-11T08:59:25.573+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:25.574+0200 [INFO] Starting apply for module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default +2025-07-11T08:59:25.574+0200 [DEBUG] module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default: applying the planned Create change +2025-07-11T08:59:25.575+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ApplyResourceChange @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/user_grant/funcs.go:62 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_req_id=143bb6c7-f178-1b8d-f276-d99b17da0d71 tf_resource_type=zitadel_user_grant timestamp="2025-07-11T08:59:25.575+0200" +2025-07-11T08:59:26.116+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:26.118+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .clock_skew: planned value cty.StringVal("0s") for a non-computed attribute + - .version: planned value cty.StringVal("OIDC_VERSION_1_0") for a non-computed attribute +2025-07-11T08:59:26.118+0200 [INFO] Starting apply for module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default +2025-07-11T08:59:26.118+0200 [DEBUG] module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default: applying the planned Create change +2025-07-11T08:59:26.119+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/application_oidc/funcs.go:122 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=a48e9dd9-bf0a-97cc-d5eb-e8657a266506 tf_resource_type=zitadel_application_oidc tf_rpc=ApplyResourceChange @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server timestamp="2025-07-11T08:59:26.119+0200" +2025-07-11T08:59:26.426+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:26.427+0200 [INFO] Starting apply for module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0] +2025-07-11T08:59:26.427+0200 [DEBUG] module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0]: applying the planned Create change +2025-07-11T08:59:26.428+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=4427723b-a81a-4f29-78d6-71efffdc234b tf_resource_type=zitadel_project_role @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:66 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:26.427+0200" +2025-07-11T08:59:26.914+0200 [ERROR] provider.terraform-provider-zitadel_v2.0.2: Response contains error diagnostic: diagnostic_summary="failed to create usergrant: rpc error: code = FailedPrecondition desc = Errors.Project.Role.NotFound (COMMAND-mm9F4)" tf_proto_version=6.3 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_resource_type=zitadel_user_grant @module=sdk.proto diagnostic_detail="" diagnostic_severity=ERROR tf_req_id=143bb6c7-f178-1b8d-f276-d99b17da0d71 tf_rpc=ApplyResourceChange @caller=github.com/hashicorp/terraform-plugin-go@v0.14.3/tfprotov6/internal/diag/diagnostics.go:55 timestamp="2025-07-11T08:59:26.914+0200" +2025-07-11T08:59:26.914+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:26.914+0200 [ERROR] vertex "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" error: failed to create usergrant: rpc error: code = FailedPrecondition desc = Errors.Project.Role.NotFound (COMMAND-mm9F4) +2025-07-11T08:59:26.915+0200 [INFO] Starting apply for module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0] +2025-07-11T08:59:26.915+0200 [DEBUG] module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]: applying the planned Create change +2025-07-11T08:59:26.916+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: @module=zitadel tf_rpc=ApplyResourceChange @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:66 tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=25bad31a-40d3-e8e4-e67b-b2022355e089 tf_resource_type=zitadel_project_role timestamp="2025-07-11T08:59:26.916+0200" +2025-07-11T08:59:27.039+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:27.075+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:27.961+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:27.961+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:28.076+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_data_source_type=external tf_provider_addr=registry.terraform.io/hashicorp/external tf_req_id=47fffdc8-f150-537a-1256-feba7190ac0c tf_rpc=ReadDataSource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=program[0] timestamp="2025-07-11T08:59:28.076+0200" +2025-07-11T08:59:28.076+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/external tf_rpc=ReadDataSource @module=sdk.framework tf_data_source_type=external tf_req_id=47fffdc8-f150-537a-1256-feba7190ac0c @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=program[1] timestamp="2025-07-11T08:59:28.076+0200" +2025-07-11T08:59:28.076+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=program[2] tf_req_id=47fffdc8-f150-537a-1256-feba7190ac0c @module=sdk.framework tf_data_source_type=external tf_provider_addr=registry.terraform.io/hashicorp/external tf_rpc=ReadDataSource timestamp="2025-07-11T08:59:28.076+0200" +2025-07-11T08:59:28.076+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=program tf_provider_addr=registry.terraform.io/hashicorp/external tf_rpc=ReadDataSource tf_data_source_type=external tf_req_id=47fffdc8-f150-537a-1256-feba7190ac0c @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:28.076+0200" +2025-07-11T08:59:28.076+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:28.077+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:28.078+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 id=973462 +2025-07-11T08:59:28.078+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:28.129+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:28.276+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:28.284+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:28.290+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:28.437+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:28.581+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:28.582+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0] +2025-07-11T08:59:28.583+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]: applying the planned Create change +2025-07-11T08:59:28.583+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_mux_provider=tf5to6server.v5tov6Server tf_resource_type=zitadel_project_role tf_rpc=ApplyResourceChange @module=zitadel tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=77f31354-a1a5-3145-7836-d7e650ca3b6e @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:66 timestamp="2025-07-11T08:59:28.583+0200" +2025-07-11T08:59:28.744+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:28.746+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0] +2025-07-11T08:59:28.746+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0]: applying the planned Create change +2025-07-11T08:59:28.746+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1] +2025-07-11T08:59:28.746+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]: applying the planned Create change +2025-07-11T08:59:28.746+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=5cc89b5c-60e7-eed9-a276-d500baa63991 tf_resource_type=zitadel_project_role @module=zitadel tf_rpc=ApplyResourceChange @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:66 timestamp="2025-07-11T08:59:28.746+0200" +2025-07-11T08:59:28.747+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_resource_type=zitadel_project_role tf_rpc=ApplyResourceChange tf_req_id=4f2d336b-4e5c-298f-f915-df463e3e8d0b @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:66 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server timestamp="2025-07-11T08:59:28.747+0200" +2025-07-11T08:59:28.893+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:29.051+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:29.054+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default +2025-07-11T08:59:29.054+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default: applying the planned Create change +2025-07-11T08:59:29.054+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_mux_provider=tf5to6server.v5tov6Server tf_req_id=b6651948-5bcc-68e9-3191-4e241d3b5bae @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/user_grant/funcs.go:62 @module=zitadel tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_resource_type=zitadel_user_grant tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:29.054+0200" +2025-07-11T08:59:29.196+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:29.197+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:59:29.197+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default: applying the planned Create change +2025-07-11T08:59:29.198+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/application_api/funcs.go:78 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=45904107-6598-b1e0-7415-3ebb1880438f tf_resource_type=zitadel_application_api tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:29.198+0200" +2025-07-11T08:59:29.359+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:29.361+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:59:29.361+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default: applying the planned Create change +2025-07-11T08:59:29.361+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .clock_skew: planned value cty.StringVal("0s") for a non-computed attribute + - .version: planned value cty.StringVal("OIDC_VERSION_1_0") for a non-computed attribute +2025-07-11T08:59:29.361+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:59:29.361+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/application_api/funcs.go:78 @module=zitadel tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_resource_type=zitadel_application_api tf_rpc=ApplyResourceChange tf_mux_provider=tf5to6server.v5tov6Server tf_req_id=d2d35bc7-0ab7-e827-340b-bf6f141a25b6 timestamp="2025-07-11T08:59:29.361+0200" +2025-07-11T08:59:29.361+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default: applying the planned Create change +2025-07-11T08:59:29.362+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:59:29.362+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=765da86d-c228-30ec-c8c9-d477841ba2ca tf_resource_type=zitadel_application_oidc @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/application_oidc/funcs.go:122 tf_rpc=ApplyResourceChange @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server timestamp="2025-07-11T08:59:29.362+0200" +2025-07-11T08:59:29.362+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api +2025-07-11T08:59:29.362+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api: applying the planned Create change +2025-07-11T08:59:29.363+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:29 [INFO] Creating new secret: v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"core-api", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"", ResourceVersion:"", Generation:0, CreationTimestamp:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry(nil)}, Immutable:(*bool)(nil), Data:map[string][]uint8(nil), StringData:map[string]string{"audience":"328365621165169917", "authority":"https://zitadel.365zon", "client_id":"328365633211308260", "client_secret":"h0TpBA5fWzyKL3LY1Kk4GZkE4d8EEAzJ7zFTAGxbqhNd2a3rocC1cBZdc6lBiejQ"}, Type:"Opaque"} +2025-07-11T08:59:29.363+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept-Encoding=gzip Content-Length=329 tf_http_req_method=POST tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Accept="application/json, */*" tf_http_op_type=request Content-Type=application/json Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="{\"kind\":\"Secret\",\"apiVersion\":\"v1\",\"metadata\":{\"name\":\"core-api\",\"namespace\":\"365zon\",\"creationTimestamp\":null},\"stringData\":{\"audience\":\"328365621165169917\",\"authority\":\"https://zitadel.365zon\",\"client_id\":\"328365633211308260\",\"client_secret\":\"h0TpBA5fWzyKL3LY1Kk4GZkE4d8EEAzJ7zFTAGxbqhNd2a3rocC1cBZdc6lBiejQ\"},\"type\":\"Opaque\"}" tf_http_req_version=HTTP/1.1 tf_http_trans_id=80bae873-5dee-ad3c-ea88-eed22963fa82 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" timestamp="2025-07-11T08:59:29.363+0200" +2025-07-11T08:59:29.505+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:29.507+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:59:29.507+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .version: planned value cty.StringVal("OIDC_VERSION_1_0") for a non-computed attribute + - .clock_skew: planned value cty.StringVal("0s") for a non-computed attribute +2025-07-11T08:59:29.507+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default: applying the planned Create change +2025-07-11T08:59:29.507+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:59:29.507+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default: applying the planned Create change +2025-07-11T08:59:29.507+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: 2025/07/11 08:59:29 [DEBUG] setting computed for "login_names" from ComputedKeys +2025-07-11T08:59:29.508+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=5cd8effc-7543-f9f7-cae7-b9288acbead9 tf_rpc=ApplyResourceChange @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/machine_user/funcs.go:39 @module=zitadel tf_resource_type=zitadel_machine_user tf_mux_provider=tf5to6server.v5tov6Server timestamp="2025-07-11T08:59:29.508+0200" +2025-07-11T08:59:29.508+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:59:29.508+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_rpc=ApplyResourceChange @module=zitadel tf_req_id=fcfbf2f2-6987-2841-66f7-368312ede125 @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/application_oidc/funcs.go:122 tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_resource_type=zitadel_application_oidc timestamp="2025-07-11T08:59:29.508+0200" +2025-07-11T08:59:29.508+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api +2025-07-11T08:59:29.508+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api: applying the planned Create change +2025-07-11T08:59:29.509+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:29 [INFO] Creating new secret: v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"salesforce-api", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"", ResourceVersion:"", Generation:0, CreationTimestamp:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry(nil)}, Immutable:(*bool)(nil), Data:map[string][]uint8(nil), StringData:map[string]string{"audience":"328365621165169917", "authority":"https://zitadel.365zon", "client_id":"328365633462941103", "client_secret":"ASBq1de5q2DZd2oxEnudgzJyww6grebMCxSpP37h8dQCwdnWN6blYzLlt1EWAUCH"}, Type:"Opaque"} +2025-07-11T08:59:29.509+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_body="{\"kind\":\"Secret\",\"apiVersion\":\"v1\",\"metadata\":{\"name\":\"salesforce-api\",\"namespace\":\"365zon\",\"creationTimestamp\":null},\"stringData\":{\"audience\":\"328365621165169917\",\"authority\":\"https://zitadel.365zon\",\"client_id\":\"328365633462941103\",\"client_secret\":\"ASBq1de5q2DZd2oxEnudgzJyww6grebMCxSpP37h8dQCwdnWN6blYzLlt1EWAUCH\"},\"type\":\"Opaque\"}" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets Content-Length=335 Content-Type=application/json new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=POST @module=kubernetes.Kubernetes Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_version=HTTP/1.1 tf_http_trans_id=4551e72f-606f-45e0-ba85-ae65b7730886 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 timestamp="2025-07-11T08:59:29.509+0200" +2025-07-11T08:59:29.662+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:29.664+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:59:29.664+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent +2025-07-11T08:59:29.664+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent: applying the planned Create change +2025-07-11T08:59:29.664+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:29 [INFO] Creating new secret: v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"core-user-agent", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"", ResourceVersion:"", Generation:0, CreationTimestamp:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry(nil)}, Immutable:(*bool)(nil), Data:map[string][]uint8(nil), StringData:map[string]string{"audience":"328365621165169917", "authority":"https://zitadel.365zon", "client_id":"328365633597184228"}, Type:"Opaque"} +2025-07-11T08:59:29.665+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Content-Length=253 Host=rancher.bridge.fourlights.dev tf_http_op_type=request @module=kubernetes.Kubernetes Accept="application/json, */*" Content-Type=application/json User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_body="{\"kind\":\"Secret\",\"apiVersion\":\"v1\",\"metadata\":{\"name\":\"core-user-agent\",\"namespace\":\"365zon\",\"creationTimestamp\":null},\"stringData\":{\"audience\":\"328365621165169917\",\"authority\":\"https://zitadel.365zon\",\"client_id\":\"328365633597184228\"},\"type\":\"Opaque\"}" tf_http_trans_id=4ad24021-c828-6642-899c-62fc4c706ec8 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_req_version=HTTP/1.1 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=POST tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets Accept-Encoding=gzip timestamp="2025-07-11T08:59:29.665+0200" +2025-07-11T08:59:29.805+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"core-user-agent","namespace":"365zon","uid":"6df2c46f-030c-4a5d-8ffd-12383cfb05be","resourceVersion":"109681803","creationTimestamp":"2025-07-11T06:59:29Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:29Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjMzNTk3MTg0MjI4"},"type":"Opaque"} + Audit-Id=652d77b5-ef32-4a2d-8395-ce6f4762efbf tf_http_res_status_code=201 tf_http_trans_id=4ad24021-c828-6642-899c-62fc4c706ec8 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=590 Date="Fri, 11 Jul 2025 06:59:29 GMT" X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_reason="201 Created" tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes Content-Type=application/json X-Api-Cattle-Auth=true X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_op_type=response timestamp="2025-07-11T08:59:29.805+0200" +2025-07-11T08:59:29.805+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=14f9de15-057b-44c8-9975-f2f778005472 Content-Type=application/json Date="Fri, 11 Jul 2025 06:59:29 GMT" tf_http_res_status_reason="201 Created" tf_http_res_version=HTTP/2.0 tf_http_trans_id=4551e72f-606f-45e0-ba85-ae65b7730886 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=717 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." @module=kubernetes.Kubernetes X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"salesforce-api","namespace":"365zon","uid":"55eb6452-1732-42a9-aff5-2ca53ea0e054","resourceVersion":"109681802","creationTimestamp":"2025-07-11T06:59:29Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:29Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjMzNDYyOTQxMTAz","client_secret":"QVNCcTFkZTVxMkRaZDJveEVudWRnekp5d3c2Z3JlYk1DeFNwUDM3aDhkUUN3ZG5XTjZibFl6TGx0MUVXQVVDSA=="},"type":"Opaque"} + tf_http_res_status_code=201 timestamp="2025-07-11T08:59:29.805+0200" +2025-07-11T08:59:29.805+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"core-api","namespace":"365zon","uid":"828e79f3-f9b7-48be-9213-b998fda452e4","resourceVersion":"109681804","creationTimestamp":"2025-07-11T06:59:29Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:29Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjMzMjExMzA4MjYw","client_secret":"aDBUcEJBNWZXenlLTDNMWTFLazRHWmtFNGQ4RUVBeko3ekZUQUd4YnFoTmQyYTNyb2NDMWNCWmRjNmxCaWVqUQ=="},"type":"Opaque"} + tf_http_res_status_code=201 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=1881778f-afdd-4404-a4a3-ed768fc91d3b Content-Length=711 Date="Fri, 11 Jul 2025 06:59:29 GMT" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=80bae873-5dee-ad3c-ea88-eed22963fa82 X-Api-Cattle-Auth=true tf_http_op_type=response tf_http_res_status_reason="201 Created" Content-Type=application/json X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] timestamp="2025-07-11T08:59:29.805+0200" +2025-07-11T08:59:29.805+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:29 [INFO] Submitting new secret: &v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"core-api", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"828e79f3-f9b7-48be-9213-b998fda452e4", ResourceVersion:"109681804", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000e82348), Subresource:""}}}, Immutable:(*bool)(nil), Data:map[string][]uint8{"audience":[]uint8{0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x32, 0x31, 0x31, 0x36, 0x35, 0x31, 0x36, 0x39, 0x39, 0x31, 0x37}, "authority":[]uint8{0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x33, 0x36, 0x35, 0x7a, 0x6f, 0x6e}, "client_id":[]uint8{0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x33, 0x33, 0x32, 0x31, 0x31, 0x33, 0x30, 0x38, 0x32, 0x36, 0x30}, "client_secret":[]uint8{0x68, 0x30, 0x54, 0x70, 0x42, 0x41, 0x35, 0x66, 0x57, 0x7a, 0x79, 0x4b, 0x4c, 0x33, 0x4c, 0x59, 0x31, 0x4b, 0x6b, 0x34, 0x47, 0x5a, 0x6b, 0x45, 0x34, 0x64, 0x38, 0x45, 0x45, 0x41, 0x7a, 0x4a, 0x37, 0x7a, 0x46, 0x54, 0x41, 0x47, 0x78, 0x62, 0x71, 0x68, 0x4e, 0x64, 0x32, 0x61, 0x33, 0x72, 0x6f, 0x63, 0x43, 0x31, 0x63, 0x42, 0x5a, 0x64, 0x63, 0x36, 0x6c, 0x42, 0x69, 0x65, 0x6a, 0x51}}, StringData:map[string]string(nil), Type:"Opaque"} +2025-07-11T08:59:29.805+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:29 [INFO] Submitting new secret: &v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"core-user-agent", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"6df2c46f-030c-4a5d-8ffd-12383cfb05be", ResourceVersion:"109681803", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000e2a3a8), Subresource:""}}}, Immutable:(*bool)(nil), Data:map[string][]uint8{"audience":[]uint8{0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x32, 0x31, 0x31, 0x36, 0x35, 0x31, 0x36, 0x39, 0x39, 0x31, 0x37}, "authority":[]uint8{0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x33, 0x36, 0x35, 0x7a, 0x6f, 0x6e}, "client_id":[]uint8{0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x33, 0x33, 0x35, 0x39, 0x37, 0x31, 0x38, 0x34, 0x32, 0x32, 0x38}}, StringData:map[string]string(nil), Type:"Opaque"} +2025-07-11T08:59:29.805+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:29 [INFO] Submitting new secret: &v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"salesforce-api", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"55eb6452-1732-42a9-aff5-2ca53ea0e054", ResourceVersion:"109681802", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000f6b590), Subresource:""}}}, Immutable:(*bool)(nil), Data:map[string][]uint8{"audience":[]uint8{0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x32, 0x31, 0x31, 0x36, 0x35, 0x31, 0x36, 0x39, 0x39, 0x31, 0x37}, "authority":[]uint8{0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x33, 0x36, 0x35, 0x7a, 0x6f, 0x6e}, "client_id":[]uint8{0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x33, 0x33, 0x34, 0x36, 0x32, 0x39, 0x34, 0x31, 0x31, 0x30, 0x33}, "client_secret":[]uint8{0x41, 0x53, 0x42, 0x71, 0x31, 0x64, 0x65, 0x35, 0x71, 0x32, 0x44, 0x5a, 0x64, 0x32, 0x6f, 0x78, 0x45, 0x6e, 0x75, 0x64, 0x67, 0x7a, 0x4a, 0x79, 0x77, 0x77, 0x36, 0x67, 0x72, 0x65, 0x62, 0x4d, 0x43, 0x78, 0x53, 0x70, 0x50, 0x33, 0x37, 0x68, 0x38, 0x64, 0x51, 0x43, 0x77, 0x64, 0x6e, 0x57, 0x4e, 0x36, 0x62, 0x6c, 0x59, 0x7a, 0x4c, 0x6c, 0x74, 0x31, 0x45, 0x57, 0x41, 0x55, 0x43, 0x48}}, StringData:map[string]string(nil), Type:"Opaque"} +2025-07-11T08:59:29.805+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:29 [INFO] Checking secret core-api +2025-07-11T08:59:29.805+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:29 [INFO] Checking secret salesforce-api +2025-07-11T08:59:29.805+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:29 [INFO] Checking secret core-user-agent +2025-07-11T08:59:29.805+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_op_type=request tf_http_req_method=GET Accept="application/json, */*" Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" User-Agent="HashiCorp/1.0 Terraform/1.12.1" Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/salesforce-api tf_http_req_version=HTTP/1.1 tf_http_trans_id=bef6ac03-8546-915a-6e91-d8c5560748cd timestamp="2025-07-11T08:59:29.805+0200" +2025-07-11T08:59:29.806+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_op_type=request tf_http_trans_id=d06acdf7-cc70-c537-ee8a-a43fde633f81 @module=kubernetes.Kubernetes Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" Accept="application/json, */*" Host=rancher.bridge.fourlights.dev tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/core-user-agent tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET timestamp="2025-07-11T08:59:29.805+0200" +2025-07-11T08:59:29.806+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Accept="application/json, */*" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/core-api tf_http_trans_id=2137721c-8399-b73f-4f52-8998ee0b7de1 Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_body="" tf_http_req_method=GET tf_http_op_type=request @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 timestamp="2025-07-11T08:59:29.805+0200" +2025-07-11T08:59:29.806+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:29.808+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:59:29.808+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent +2025-07-11T08:59:29.809+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent: applying the planned Create change +2025-07-11T08:59:29.809+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:29 [INFO] Creating new secret: v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"salesforce-user-agent", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"", ResourceVersion:"", Generation:0, CreationTimestamp:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry(nil)}, Immutable:(*bool)(nil), Data:map[string][]uint8(nil), StringData:map[string]string{"audience":"328365621165169917", "authority":"https://zitadel.365zon", "client_id":"328365633899142397"}, Type:"Opaque"} +2025-07-11T08:59:29.809+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept="application/json, */*" Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Content-Type=application/json Host=rancher.bridge.fourlights.dev tf_http_trans_id=1e0632b6-a9eb-1fa1-6c7d-bd7dd4297474 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Length=259 tf_http_op_type=request tf_http_req_body="{\"kind\":\"Secret\",\"apiVersion\":\"v1\",\"metadata\":{\"name\":\"salesforce-user-agent\",\"namespace\":\"365zon\",\"creationTimestamp\":null},\"stringData\":{\"audience\":\"328365621165169917\",\"authority\":\"https://zitadel.365zon\",\"client_id\":\"328365633899142397\"},\"type\":\"Opaque\"}" tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=POST tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets timestamp="2025-07-11T08:59:29.809+0200" +2025-07-11T08:59:29.973+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Content-Type=application/json Date="Fri, 11 Jul 2025 06:59:29 GMT" X-Content-Type-Options=nosniff tf_http_trans_id=bef6ac03-8546-915a-6e91-d8c5560748cd X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"salesforce-api","namespace":"365zon","uid":"55eb6452-1732-42a9-aff5-2ca53ea0e054","resourceVersion":"109681802","creationTimestamp":"2025-07-11T06:59:29Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:29Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjMzNDYyOTQxMTAz","client_secret":"QVNCcTFkZTVxMkRaZDJveEVudWRnekp5d3c2Z3JlYk1DeFNwUDM3aDhkUUN3ZG5XTjZibFl6TGx0MUVXQVVDSA=="},"type":"Opaque"} + tf_http_res_status_code=200 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=717 tf_http_res_version=HTTP/2.0 X-Api-Cattle-Auth=true tf_http_res_status_reason="200 OK" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=960df5f1-008d-40a4-9572-4c672f26c6d6 timestamp="2025-07-11T08:59:29.972+0200" +2025-07-11T08:59:29.973+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 Content-Length=596 Content-Type=application/json Date="Fri, 11 Jul 2025 06:59:29 GMT" X-Content-Type-Options=nosniff tf_http_op_type=response @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"salesforce-user-agent","namespace":"365zon","uid":"1b2acfa3-53b2-4b9a-9c37-e1dfbb36443c","resourceVersion":"109681805","creationTimestamp":"2025-07-11T06:59:29Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:29Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjMzODk5MTQyMzk3"},"type":"Opaque"} + tf_http_res_status_code=201 tf_http_trans_id=1e0632b6-a9eb-1fa1-6c7d-bd7dd4297474 Audit-Id=3f202621-784e-4cac-90de-29eb27ccf86c new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_reason="201 Created" Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Api-Cattle-Auth=true tf_http_res_version=HTTP/2.0 timestamp="2025-07-11T08:59:29.972+0200" +2025-07-11T08:59:29.973+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 Audit-Id=45769493-36c7-4a0e-9dc9-193b5733c97b Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" @module=kubernetes.Kubernetes Content-Length=590 Content-Type=application/json X-Content-Type-Options=nosniff Date="Fri, 11 Jul 2025 06:59:29 GMT" X-Api-Cattle-Auth=true new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"core-user-agent","namespace":"365zon","uid":"6df2c46f-030c-4a5d-8ffd-12383cfb05be","resourceVersion":"109681803","creationTimestamp":"2025-07-11T06:59:29Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:29Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjMzNTk3MTg0MjI4"},"type":"Opaque"} + tf_http_res_version=HTTP/2.0 tf_http_trans_id=d06acdf7-cc70-c537-ee8a-a43fde633f81 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 timestamp="2025-07-11T08:59:29.972+0200" +2025-07-11T08:59:29.973+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_op_type=response X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_version=HTTP/2.0 tf_http_trans_id=2137721c-8399-b73f-4f52-8998ee0b7de1 Content-Type=application/json tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" @module=kubernetes.Kubernetes Content-Length=711 Date="Fri, 11 Jul 2025 06:59:29 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"core-api","namespace":"365zon","uid":"828e79f3-f9b7-48be-9213-b998fda452e4","resourceVersion":"109681804","creationTimestamp":"2025-07-11T06:59:29Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:29Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjMzMjExMzA4MjYw","client_secret":"aDBUcEJBNWZXenlLTDNMWTFLazRHWmtFNGQ4RUVBeko3ekZUQUd4YnFoTmQyYTNyb2NDMWNCWmRjNmxCaWVqUQ=="},"type":"Opaque"} + @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=72523302-ae3e-49db-82e4-26ddcc0502cd Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Api-Cattle-Auth=true timestamp="2025-07-11T08:59:29.972+0200" +2025-07-11T08:59:29.973+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:29 [INFO] Submitting new secret: &v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"salesforce-user-agent", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"1b2acfa3-53b2-4b9a-9c37-e1dfbb36443c", ResourceVersion:"109681805", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001306120), Subresource:""}}}, Immutable:(*bool)(nil), Data:map[string][]uint8{"audience":[]uint8{0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x32, 0x31, 0x31, 0x36, 0x35, 0x31, 0x36, 0x39, 0x39, 0x31, 0x37}, "authority":[]uint8{0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x33, 0x36, 0x35, 0x7a, 0x6f, 0x6e}, "client_id":[]uint8{0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x33, 0x33, 0x38, 0x39, 0x39, 0x31, 0x34, 0x32, 0x33, 0x39, 0x37}}, StringData:map[string]string(nil), Type:"Opaque"} +2025-07-11T08:59:29.973+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:29 [INFO] Reading secret salesforce-api +2025-07-11T08:59:29.973+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:29 [INFO] Reading secret core-user-agent +2025-07-11T08:59:29.973+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:29 [INFO] Checking secret salesforce-user-agent +2025-07-11T08:59:29.973+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:29 [INFO] Reading secret core-api +2025-07-11T08:59:29.973+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept-Encoding=gzip tf_http_op_type=request tf_http_req_body="" tf_http_req_method=GET User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/core-user-agent Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes tf_http_req_version=HTTP/1.1 tf_http_trans_id=74010431-f4fc-adaf-0b3b-16749926ef94 timestamp="2025-07-11T08:59:29.973+0200" +2025-07-11T08:59:29.973+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_method=GET User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/core-api tf_http_trans_id=d7b41252-f995-7c2d-d691-f09750a9c7d7 Host=rancher.bridge.fourlights.dev tf_http_op_type=request tf_http_req_version=HTTP/1.1 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Accept="application/json, */*" Accept-Encoding=gzip timestamp="2025-07-11T08:59:29.973+0200" +2025-07-11T08:59:29.973+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/salesforce-user-agent tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_body="" tf_http_req_method=GET tf_http_trans_id=dbfb33d6-2759-0b46-d7a7-8d5802b79fd0 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request @module=kubernetes.Kubernetes Accept="application/json, */*" Accept-Encoding=gzip timestamp="2025-07-11T08:59:29.973+0200" +2025-07-11T08:59:29.973+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/salesforce-api tf_http_req_body="" tf_http_req_method=GET tf_http_req_version=HTTP/1.1 tf_http_trans_id=e00ebb93-af48-0392-ce5e-56350868fa34 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Accept="application/json, */*" Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev @module=kubernetes.Kubernetes User-Agent="HashiCorp/1.0 Terraform/1.12.1" timestamp="2025-07-11T08:59:29.973+0200" +2025-07-11T08:59:30.116+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @module=zitadel tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_resource_type=zitadel_machine_user @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/machine_user/funcs.go:150 tf_mux_provider=tf5to6server.v5tov6Server tf_req_id=5cd8effc-7543-f9f7-cae7-b9288acbead9 tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:30.115+0200" +2025-07-11T08:59:30.116+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=717 X-Api-Cattle-Auth=true X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." Audit-Id=1da54cd1-1406-42fa-b0e2-ba3e9ba9c40b Date="Fri, 11 Jul 2025 06:59:30 GMT" tf_http_op_type=response tf_http_res_status_code=200 tf_http_trans_id=e00ebb93-af48-0392-ce5e-56350868fa34 @module=kubernetes.Kubernetes Content-Type=application/json X-Content-Type-Options=nosniff + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"salesforce-api","namespace":"365zon","uid":"55eb6452-1732-42a9-aff5-2ca53ea0e054","resourceVersion":"109681802","creationTimestamp":"2025-07-11T06:59:29Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:29Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjMzNDYyOTQxMTAz","client_secret":"QVNCcTFkZTVxMkRaZDJveEVudWRnekp5d3c2Z3JlYk1DeFNwUDM3aDhkUUN3ZG5XTjZibFl6TGx0MUVXQVVDSA=="},"type":"Opaque"} + tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 timestamp="2025-07-11T08:59:30.115+0200" +2025-07-11T08:59:30.116+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:59:30 GMT" tf_http_op_type=response @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=41dbe50f-ec68-4ba6-a4e7-39a23ef91d77 tf_http_res_version=HTTP/2.0 tf_http_trans_id=d7b41252-f995-7c2d-d691-f09750a9c7d7 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 Content-Length=711 Content-Type=application/json new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"core-api","namespace":"365zon","uid":"828e79f3-f9b7-48be-9213-b998fda452e4","resourceVersion":"109681804","creationTimestamp":"2025-07-11T06:59:29Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:29Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjMzMjExMzA4MjYw","client_secret":"aDBUcEJBNWZXenlLTDNMWTFLazRHWmtFNGQ4RUVBeko3ekZUQUd4YnFoTmQyYTNyb2NDMWNCWmRjNmxCaWVqUQ=="},"type":"Opaque"} + tf_http_res_status_reason="200 OK" X-Api-Cattle-Auth=true X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_code=200 X-Content-Type-Options=nosniff @module=kubernetes.Kubernetes timestamp="2025-07-11T08:59:30.115+0200" +2025-07-11T08:59:30.116+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_op_type=response tf_http_res_status_reason="200 OK" Audit-Id=8471b88a-9e22-4599-88ce-82c11d5f9d44 Content-Length=596 Date="Fri, 11 Jul 2025 06:59:30 GMT" X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"salesforce-user-agent","namespace":"365zon","uid":"1b2acfa3-53b2-4b9a-9c37-e1dfbb36443c","resourceVersion":"109681805","creationTimestamp":"2025-07-11T06:59:29Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:29Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjMzODk5MTQyMzk3"},"type":"Opaque"} + tf_http_res_status_code=200 tf_http_trans_id=dbfb33d6-2759-0b46-d7a7-8d5802b79fd0 X-Content-Type-Options=nosniff new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." timestamp="2025-07-11T08:59:30.115+0200" +2025-07-11T08:59:30.116+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 @module=kubernetes.Kubernetes + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"core-user-agent","namespace":"365zon","uid":"6df2c46f-030c-4a5d-8ffd-12383cfb05be","resourceVersion":"109681803","creationTimestamp":"2025-07-11T06:59:29Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:29Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjMzNTk3MTg0MjI4"},"type":"Opaque"} + tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" Content-Length=590 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=73540105-bc43-4412-b26b-79dc397c7bed Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json Date="Fri, 11 Jul 2025 06:59:30 GMT" tf_http_trans_id=74010431-f4fc-adaf-0b3b-16749926ef94 timestamp="2025-07-11T08:59:30.115+0200" +2025-07-11T08:59:30.116+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:30 [INFO] Received secret: v1.ObjectMeta{Name:"core-api", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"828e79f3-f9b7-48be-9213-b998fda452e4", ResourceVersion:"109681804", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc00140a198), Subresource:""}}} +2025-07-11T08:59:30.116+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:30 [INFO] Received secret: v1.ObjectMeta{Name:"salesforce-api", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"55eb6452-1732-42a9-aff5-2ca53ea0e054", ResourceVersion:"109681802", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000e2aa38), Subresource:""}}} +2025-07-11T08:59:30.116+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:30 [INFO] Received secret: v1.ObjectMeta{Name:"core-user-agent", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"6df2c46f-030c-4a5d-8ffd-12383cfb05be", ResourceVersion:"109681803", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0014861f8), Subresource:""}}} +2025-07-11T08:59:30.116+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:30 [INFO] Reading secret salesforce-user-agent +2025-07-11T08:59:30.116+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/salesforce-user-agent @module=kubernetes.Kubernetes tf_http_req_body="" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept-Encoding=gzip tf_http_op_type=request tf_http_trans_id=617ac248-32c4-54fe-d58a-d55935723095 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_version=HTTP/1.1 Accept="application/json, */*" Host=rancher.bridge.fourlights.dev timestamp="2025-07-11T08:59:30.116+0200" +2025-07-11T08:59:30.116+0200 [WARN] Provider "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" produced an unexpected new value for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: was null, but now cty.False + - .metadata[0].generate_name: was null, but now cty.StringVal("") +2025-07-11T08:59:30.116+0200 [WARN] Provider "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" produced an unexpected new value for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: was null, but now cty.False + - .metadata[0].generate_name: was null, but now cty.StringVal("") +2025-07-11T08:59:30.116+0200 [WARN] Provider "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" produced an unexpected new value for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: was null, but now cty.False + - .metadata[0].generate_name: was null, but now cty.StringVal("") +2025-07-11T08:59:30.117+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:30.117+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:30.117+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:30.279+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @module=kubernetes.Kubernetes Content-Length=596 Date="Fri, 11 Jul 2025 06:59:30 GMT" X-Content-Type-Options=nosniff tf_http_res_status_code=200 tf_http_trans_id=617ac248-32c4-54fe-d58a-d55935723095 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json X-Api-Cattle-Auth=true X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=e9bce963-27a6-4c84-b160-99c882d0d15e tf_http_res_version=HTTP/2.0 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"salesforce-user-agent","namespace":"365zon","uid":"1b2acfa3-53b2-4b9a-9c37-e1dfbb36443c","resourceVersion":"109681805","creationTimestamp":"2025-07-11T06:59:29Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:29Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjMzODk5MTQyMzk3"},"type":"Opaque"} + tf_http_res_status_reason="200 OK" timestamp="2025-07-11T08:59:30.279+0200" +2025-07-11T08:59:30.279+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:30 [INFO] Received secret: v1.ObjectMeta{Name:"salesforce-user-agent", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"1b2acfa3-53b2-4b9a-9c37-e1dfbb36443c", ResourceVersion:"109681805", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000e2b158), Subresource:""}}} +2025-07-11T08:59:30.280+0200 [WARN] Provider "module.tenant-365zon.provider[\"registry.terraform.io/zitadel/zitadel\"]" produced an unexpected new value for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .description: was null, but now cty.StringVal("") +2025-07-11T08:59:30.280+0200 [WARN] Provider "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" produced an unexpected new value for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: was null, but now cty.False + - .metadata[0].generate_name: was null, but now cty.StringVal("") +2025-07-11T08:59:30.280+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:30.281+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:30.283+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:59:30.283+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default: applying the planned Create change +2025-07-11T08:59:30.283+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:59:30.283+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0] +2025-07-11T08:59:30.283+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]: applying the planned Create change +2025-07-11T08:59:30.283+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/user_grant/funcs.go:62 @module=zitadel tf_req_id=df1aa42c-f16d-a096-54a5-cffcc856a12a tf_resource_type=zitadel_user_grant tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:30.283+0200" +2025-07-11T08:59:30.284+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:30 [INFO] Creating new secret: v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"salesforce-service-account", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"", ResourceVersion:"", Generation:0, CreationTimestamp:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry(nil)}, Immutable:(*bool)(nil), Data:map[string][]uint8(nil), StringData:map[string]string{"audience":"328365621165169917", "authority":"https://zitadel.365zon", "client_id":"salesforce@365zon.365zon", "client_secret":"0baZjPlgBQLArGjqO7XoSzkOUEWC3Ii1mfZSa5CoGKqYt3zV1X47UkEaZa6rKceV", "scope":"openid profile urn:zitadel:iam:org:project:id:328365621165169917:aud manage:profiles manage:contacts manage:addresses manage:enquiries manage:flowstates manage:flowevents manage:files manage:brands"}, Type:"Opaque"} +2025-07-11T08:59:30.284+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Length=561 User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_method=POST tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes Accept="application/json, */*" tf_http_op_type=request tf_http_trans_id=cbfcea18-b640-0ee0-ba29-fe27a22ae19e Content-Type=application/json Host=rancher.bridge.fourlights.dev tf_http_req_body="{\"kind\":\"Secret\",\"apiVersion\":\"v1\",\"metadata\":{\"name\":\"salesforce-service-account\",\"namespace\":\"365zon\",\"creationTimestamp\":null},\"stringData\":{\"audience\":\"328365621165169917\",\"authority\":\"https://zitadel.365zon\",\"client_id\":\"salesforce@365zon.365zon\",\"client_secret\":\"0baZjPlgBQLArGjqO7XoSzkOUEWC3Ii1mfZSa5CoGKqYt3zV1X47UkEaZa6rKceV\",\"scope\":\"openid profile urn:zitadel:iam:org:project:id:328365621165169917:aud manage:profiles manage:contacts manage:addresses manage:enquiries manage:flowstates manage:flowevents manage:files manage:brands\"},\"type\":\"Opaque\"}" timestamp="2025-07-11T08:59:30.284+0200" +2025-07-11T08:59:30.423+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_code=201 @module=kubernetes.Kubernetes Audit-Id=ae260e16-924f-4e21-be90-3e018c4cacf8 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json X-Content-Type-Options=nosniff + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"salesforce-service-account","namespace":"365zon","uid":"685f0b64-2c18-4e3f-b67e-598004c9bc7e","resourceVersion":"109681811","creationTimestamp":"2025-07-11T06:59:30Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:30Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{},"f:scope":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"c2FsZXNmb3JjZUAzNjV6b24uMzY1em9u","client_secret":"MGJhWmpQbGdCUUxBckdqcU83WG9TemtPVUVXQzNJaTFtZlpTYTVDb0dLcVl0M3pWMVg0N1VrRWFaYTZyS2NlVg==","scope":"b3BlbmlkIHByb2ZpbGUgdXJuOnppdGFkZWw6aWFtOm9yZzpwcm9qZWN0OmlkOjMyODM2NTYyMTE2NTE2OTkxNzphdWQgbWFuYWdlOnByb2ZpbGVzIG1hbmFnZTpjb250YWN0cyBtYW5hZ2U6YWRkcmVzc2VzIG1hbmFnZTplbnF1aXJpZXMgbWFuYWdlOmZsb3dzdGF0ZXMgbWFuYWdlOmZsb3dldmVudHMgbWFuYWdlOmZpbGVzIG1hbmFnZTpicmFuZHM="},"type":"Opaque"} + @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Length=1025 Date="Fri, 11 Jul 2025 06:59:30 GMT" tf_http_op_type=response tf_http_res_status_reason="201 Created" tf_http_trans_id=cbfcea18-b640-0ee0-ba29-fe27a22ae19e X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_version=HTTP/2.0 timestamp="2025-07-11T08:59:30.423+0200" +2025-07-11T08:59:30.423+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:30 [INFO] Submitting new secret: &v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"salesforce-service-account", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"685f0b64-2c18-4e3f-b67e-598004c9bc7e", ResourceVersion:"109681811", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 30, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 30, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0015bea50), Subresource:""}}}, Immutable:(*bool)(nil), Data:map[string][]uint8{"audience":[]uint8{0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x32, 0x31, 0x31, 0x36, 0x35, 0x31, 0x36, 0x39, 0x39, 0x31, 0x37}, "authority":[]uint8{0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x33, 0x36, 0x35, 0x7a, 0x6f, 0x6e}, "client_id":[]uint8{0x73, 0x61, 0x6c, 0x65, 0x73, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x40, 0x33, 0x36, 0x35, 0x7a, 0x6f, 0x6e, 0x2e, 0x33, 0x36, 0x35, 0x7a, 0x6f, 0x6e}, "client_secret":[]uint8{0x30, 0x62, 0x61, 0x5a, 0x6a, 0x50, 0x6c, 0x67, 0x42, 0x51, 0x4c, 0x41, 0x72, 0x47, 0x6a, 0x71, 0x4f, 0x37, 0x58, 0x6f, 0x53, 0x7a, 0x6b, 0x4f, 0x55, 0x45, 0x57, 0x43, 0x33, 0x49, 0x69, 0x31, 0x6d, 0x66, 0x5a, 0x53, 0x61, 0x35, 0x43, 0x6f, 0x47, 0x4b, 0x71, 0x59, 0x74, 0x33, 0x7a, 0x56, 0x31, 0x58, 0x34, 0x37, 0x55, 0x6b, 0x45, 0x61, 0x5a, 0x61, 0x36, 0x72, 0x4b, 0x63, 0x65, 0x56}, "scope":[]uint8{0x6f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x75, 0x72, 0x6e, 0x3a, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x3a, 0x69, 0x61, 0x6d, 0x3a, 0x6f, 0x72, 0x67, 0x3a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x3a, 0x69, 0x64, 0x3a, 0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x32, 0x31, 0x31, 0x36, 0x35, 0x31, 0x36, 0x39, 0x39, 0x31, 0x37, 0x3a, 0x61, 0x75, 0x64, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x65, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x65, 0x6e, 0x71, 0x75, 0x69, 0x72, 0x69, 0x65, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x74, 0x61, 0x74, 0x65, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x66, 0x6c, 0x6f, 0x77, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x73}}, StringData:map[string]string(nil), Type:"Opaque"} +2025-07-11T08:59:30.423+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:30 [INFO] Checking secret salesforce-service-account +2025-07-11T08:59:30.423+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/salesforce-service-account Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_body="" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev tf_http_trans_id=1020aa0c-5bae-855c-1962-314718b100fa Accept="application/json, */*" tf_http_op_type=request tf_http_req_method=GET tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T08:59:30.423+0200" +2025-07-11T08:59:30.424+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:30.585+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 Date="Fri, 11 Jul 2025 06:59:30 GMT" X-Api-Cattle-Auth=true new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"salesforce-service-account","namespace":"365zon","uid":"685f0b64-2c18-4e3f-b67e-598004c9bc7e","resourceVersion":"109681811","creationTimestamp":"2025-07-11T06:59:30Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:30Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{},"f:scope":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"c2FsZXNmb3JjZUAzNjV6b24uMzY1em9u","client_secret":"MGJhWmpQbGdCUUxBckdqcU83WG9TemtPVUVXQzNJaTFtZlpTYTVDb0dLcVl0M3pWMVg0N1VrRWFaYTZyS2NlVg==","scope":"b3BlbmlkIHByb2ZpbGUgdXJuOnppdGFkZWw6aWFtOm9yZzpwcm9qZWN0OmlkOjMyODM2NTYyMTE2NTE2OTkxNzphdWQgbWFuYWdlOnByb2ZpbGVzIG1hbmFnZTpjb250YWN0cyBtYW5hZ2U6YWRkcmVzc2VzIG1hbmFnZTplbnF1aXJpZXMgbWFuYWdlOmZsb3dzdGF0ZXMgbWFuYWdlOmZsb3dldmVudHMgbWFuYWdlOmZpbGVzIG1hbmFnZTpicmFuZHM="},"type":"Opaque"} + @module=kubernetes.Kubernetes X-Content-Type-Options=nosniff tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=1025 Content-Type=application/json X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=158b02ec-e61a-4aa4-81c2-d0b0bc148486 tf_http_res_version=HTTP/2.0 tf_http_trans_id=1020aa0c-5bae-855c-1962-314718b100fa timestamp="2025-07-11T08:59:30.585+0200" +2025-07-11T08:59:30.585+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:30 [INFO] Reading secret salesforce-service-account +2025-07-11T08:59:30.585+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @module=kubernetes.Kubernetes Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/salesforce-service-account Accept="application/json, */*" Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_method=GET @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" tf_http_req_version=HTTP/1.1 tf_http_trans_id=bd318c13-a5af-2a24-faae-c519041f1e59 timestamp="2025-07-11T08:59:30.585+0200" +2025-07-11T08:59:30.725+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"salesforce-service-account","namespace":"365zon","uid":"685f0b64-2c18-4e3f-b67e-598004c9bc7e","resourceVersion":"109681811","creationTimestamp":"2025-07-11T06:59:30Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:30Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{},"f:scope":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"c2FsZXNmb3JjZUAzNjV6b24uMzY1em9u","client_secret":"MGJhWmpQbGdCUUxBckdqcU83WG9TemtPVUVXQzNJaTFtZlpTYTVDb0dLcVl0M3pWMVg0N1VrRWFaYTZyS2NlVg==","scope":"b3BlbmlkIHByb2ZpbGUgdXJuOnppdGFkZWw6aWFtOm9yZzpwcm9qZWN0OmlkOjMyODM2NTYyMTE2NTE2OTkxNzphdWQgbWFuYWdlOnByb2ZpbGVzIG1hbmFnZTpjb250YWN0cyBtYW5hZ2U6YWRkcmVzc2VzIG1hbmFnZTplbnF1aXJpZXMgbWFuYWdlOmZsb3dzdGF0ZXMgbWFuYWdlOmZsb3dldmVudHMgbWFuYWdlOmZpbGVzIG1hbmFnZTpicmFuZHM="},"type":"Opaque"} + tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" tf_http_trans_id=bd318c13-a5af-2a24-faae-c519041f1e59 Audit-Id=3c73d2b1-4eca-4983-a016-6b9dc7fbafd7 X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Content-Length=1025 Content-Type=application/json Date="Fri, 11 Jul 2025 06:59:30 GMT" tf_http_res_version=HTTP/2.0 timestamp="2025-07-11T08:59:30.725+0200" +2025-07-11T08:59:30.725+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:30 [INFO] Received secret: v1.ObjectMeta{Name:"salesforce-service-account", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"685f0b64-2c18-4e3f-b67e-598004c9bc7e", ResourceVersion:"109681811", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 30, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 30, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0015bee70), Subresource:""}}} +2025-07-11T08:59:30.726+0200 [WARN] Provider "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" produced an unexpected new value for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: was null, but now cty.False + - .metadata[0].generate_name: was null, but now cty.StringVal("") +2025-07-11T08:59:30.726+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:30.728+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:59:30.728+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default: applying the planned Create change +2025-07-11T08:59:30.728+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_req_id=56262909-23bd-e72a-1c79-afe050ca1761 tf_rpc=ApplyResourceChange @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/application_api/funcs.go:78 @module=zitadel tf_resource_type=zitadel_application_api tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:59:30.728+0200" +2025-07-11T08:59:30.890+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:30.892+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:59:30.892+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .clock_skew: planned value cty.StringVal("0s") for a non-computed attribute + - .version: planned value cty.StringVal("OIDC_VERSION_1_0") for a non-computed attribute +2025-07-11T08:59:30.892+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default: applying the planned Create change +2025-07-11T08:59:30.892+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:59:30.892+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:59:30.893+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api +2025-07-11T08:59:30.893+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default: applying the planned Create change +2025-07-11T08:59:30.893+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: 2025/07/11 08:59:30 [DEBUG] setting computed for "login_names" from ComputedKeys +2025-07-11T08:59:30.893+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api: applying the planned Create change +2025-07-11T08:59:30.893+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_resource_type=zitadel_machine_user tf_rpc=ApplyResourceChange tf_mux_provider=tf5to6server.v5tov6Server @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/machine_user/funcs.go:39 @module=zitadel tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=337be74e-7cac-4923-f070-79627db96ae1 timestamp="2025-07-11T08:59:30.893+0200" +2025-07-11T08:59:30.894+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/application_oidc/funcs.go:122 @module=zitadel tf_rpc=ApplyResourceChange tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=6ce8c578-80eb-9d44-38f6-ef080ae6970f tf_resource_type=zitadel_application_oidc timestamp="2025-07-11T08:59:30.894+0200" +2025-07-11T08:59:30.895+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:30 [INFO] Creating new secret: v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"external-api", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"", ResourceVersion:"", Generation:0, CreationTimestamp:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry(nil)}, Immutable:(*bool)(nil), Data:map[string][]uint8(nil), StringData:map[string]string{"audience":"328365621165169917", "authority":"https://zitadel.365zon", "client_id":"328365635744642479", "client_secret":"iGUPlzppTUMN8dHB7pYyzlisDiwL0mSqR0z1xuMgSuxvk1gJF78g42NFkeHGcEM3"}, Type:"Opaque"} +2025-07-11T08:59:30.896+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_method=POST Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Content-Length=333 Content-Type=application/json Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" Accept-Encoding=gzip new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_body="{\"kind\":\"Secret\",\"apiVersion\":\"v1\",\"metadata\":{\"name\":\"external-api\",\"namespace\":\"365zon\",\"creationTimestamp\":null},\"stringData\":{\"audience\":\"328365621165169917\",\"authority\":\"https://zitadel.365zon\",\"client_id\":\"328365635744642479\",\"client_secret\":\"iGUPlzppTUMN8dHB7pYyzlisDiwL0mSqR0z1xuMgSuxvk1gJF78g42NFkeHGcEM3\"},\"type\":\"Opaque\"}" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets tf_http_req_version=HTTP/1.1 tf_http_trans_id=cdc1d2d0-04a1-ff75-c1d4-693c57bfae88 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Accept="application/json, */*" timestamp="2025-07-11T08:59:30.896+0200" +2025-07-11T08:59:31.032+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"external-api","namespace":"365zon","uid":"81b29ad6-88e5-4c8b-ac8d-f7d7cb386406","resourceVersion":"109681815","creationTimestamp":"2025-07-11T06:59:30Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:30Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjM1NzQ0NjQyNDc5","client_secret":"aUdVUGx6cHBUVU1OOGRIQjdwWXl6bGlzRGl3TDBtU3FSMHoxeHVNZ1N1eHZrMWdKRjc4ZzQyTkZrZUhHY0VNMw=="},"type":"Opaque"} + new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_res_version=HTTP/2.0 Content-Length=715 Date="Fri, 11 Jul 2025 06:59:30 GMT" X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff @module=kubernetes.Kubernetes Audit-Id=1d9cc7cf-3cb2-4129-a678-be7713cc39dc tf_http_res_status_code=201 tf_http_res_status_reason="201 Created" tf_http_trans_id=cdc1d2d0-04a1-ff75-c1d4-693c57bfae88 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 timestamp="2025-07-11T08:59:31.032+0200" +2025-07-11T08:59:31.032+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:31 [INFO] Submitting new secret: &v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"external-api", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"81b29ad6-88e5-4c8b-ac8d-f7d7cb386406", ResourceVersion:"109681815", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 30, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 30, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001292120), Subresource:""}}}, Immutable:(*bool)(nil), Data:map[string][]uint8{"audience":[]uint8{0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x32, 0x31, 0x31, 0x36, 0x35, 0x31, 0x36, 0x39, 0x39, 0x31, 0x37}, "authority":[]uint8{0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x33, 0x36, 0x35, 0x7a, 0x6f, 0x6e}, "client_id":[]uint8{0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x33, 0x35, 0x37, 0x34, 0x34, 0x36, 0x34, 0x32, 0x34, 0x37, 0x39}, "client_secret":[]uint8{0x69, 0x47, 0x55, 0x50, 0x6c, 0x7a, 0x70, 0x70, 0x54, 0x55, 0x4d, 0x4e, 0x38, 0x64, 0x48, 0x42, 0x37, 0x70, 0x59, 0x79, 0x7a, 0x6c, 0x69, 0x73, 0x44, 0x69, 0x77, 0x4c, 0x30, 0x6d, 0x53, 0x71, 0x52, 0x30, 0x7a, 0x31, 0x78, 0x75, 0x4d, 0x67, 0x53, 0x75, 0x78, 0x76, 0x6b, 0x31, 0x67, 0x4a, 0x46, 0x37, 0x38, 0x67, 0x34, 0x32, 0x4e, 0x46, 0x6b, 0x65, 0x48, 0x47, 0x63, 0x45, 0x4d, 0x33}}, StringData:map[string]string(nil), Type:"Opaque"} +2025-07-11T08:59:31.033+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:31 [INFO] Checking secret external-api +2025-07-11T08:59:31.033+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/external-api tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes tf_http_op_type=request tf_http_trans_id=e4a3b645-d98e-4458-5f38-6bb54304ffe2 Accept="application/json, */*" Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" timestamp="2025-07-11T08:59:31.033+0200" +2025-07-11T08:59:31.052+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:31.054+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:59:31.054+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent +2025-07-11T08:59:31.054+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent: applying the planned Create change +2025-07-11T08:59:31.055+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:31 [INFO] Creating new secret: v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"external-user-agent", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"", ResourceVersion:"", Generation:0, CreationTimestamp:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry(nil)}, Immutable:(*bool)(nil), Data:map[string][]uint8(nil), StringData:map[string]string{"audience":"328365621165169917", "authority":"https://zitadel.365zon", "client_id":"328365636096989412"}, Type:"Opaque"} +2025-07-11T08:59:31.055+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Host=rancher.bridge.fourlights.dev Accept="application/json, */*" tf_http_req_body="{\"kind\":\"Secret\",\"apiVersion\":\"v1\",\"metadata\":{\"name\":\"external-user-agent\",\"namespace\":\"365zon\",\"creationTimestamp\":null},\"stringData\":{\"audience\":\"328365621165169917\",\"authority\":\"https://zitadel.365zon\",\"client_id\":\"328365636096989412\"},\"type\":\"Opaque\"}" tf_http_req_method=POST tf_http_req_version=HTTP/1.1 tf_http_trans_id=f5c7180c-5a11-b3ce-c6ea-b5a651a70826 Accept-Encoding=gzip tf_http_op_type=request @module=kubernetes.Kubernetes Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Content-Type=application/json User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Length=257 timestamp="2025-07-11T08:59:31.055+0200" +2025-07-11T08:59:31.201+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_req_id=337be74e-7cac-4923-f070-79627db96ae1 tf_resource_type=zitadel_machine_user tf_rpc=ApplyResourceChange tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/machine_user/funcs.go:150 @module=zitadel timestamp="2025-07-11T08:59:31.201+0200" +2025-07-11T08:59:31.201+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes X-Content-Type-Options=nosniff tf_http_res_version=HTTP/2.0 tf_http_trans_id=e4a3b645-d98e-4458-5f38-6bb54304ffe2 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=715 Content-Type=application/json Date="Fri, 11 Jul 2025 06:59:31 GMT" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_code=200 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 Audit-Id=5e563207-2840-4582-b060-50161fbc2f08 X-Api-Cattle-Auth=true tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"external-api","namespace":"365zon","uid":"81b29ad6-88e5-4c8b-ac8d-f7d7cb386406","resourceVersion":"109681815","creationTimestamp":"2025-07-11T06:59:30Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:30Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjM1NzQ0NjQyNDc5","client_secret":"aUdVUGx6cHBUVU1OOGRIQjdwWXl6bGlzRGl3TDBtU3FSMHoxeHVNZ1N1eHZrMWdKRjc4ZzQyTkZrZUhHY0VNMw=="},"type":"Opaque"} + tf_http_res_status_reason="200 OK" timestamp="2025-07-11T08:59:31.201+0200" +2025-07-11T08:59:31.201+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=f5c7180c-5a11-b3ce-c6ea-b5a651a70826 @module=kubernetes.Kubernetes Audit-Id=7ebc28c2-3c96-4332-8658-0701c643a8f5 Content-Length=594 tf_http_res_status_code=201 tf_http_res_status_reason="201 Created" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 Date="Fri, 11 Jul 2025 06:59:31 GMT" X-Content-Type-Options=nosniff tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"external-user-agent","namespace":"365zon","uid":"83c8d7e4-a843-4ea0-b848-e5f943346b43","resourceVersion":"109681816","creationTimestamp":"2025-07-11T06:59:31Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:31Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjM2MDk2OTg5NDEy"},"type":"Opaque"} + tf_http_res_version=HTTP/2.0 Content-Type=application/json X-Api-Cattle-Auth=true timestamp="2025-07-11T08:59:31.201+0200" +2025-07-11T08:59:31.201+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:31 [INFO] Submitting new secret: &v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"external-user-agent", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"83c8d7e4-a843-4ea0-b848-e5f943346b43", ResourceVersion:"109681816", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 31, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 31, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000ea0d08), Subresource:""}}}, Immutable:(*bool)(nil), Data:map[string][]uint8{"audience":[]uint8{0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x32, 0x31, 0x31, 0x36, 0x35, 0x31, 0x36, 0x39, 0x39, 0x31, 0x37}, "authority":[]uint8{0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x33, 0x36, 0x35, 0x7a, 0x6f, 0x6e}, "client_id":[]uint8{0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x33, 0x36, 0x30, 0x39, 0x36, 0x39, 0x38, 0x39, 0x34, 0x31, 0x32}}, StringData:map[string]string(nil), Type:"Opaque"} +2025-07-11T08:59:31.201+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:31 [INFO] Checking secret external-user-agent +2025-07-11T08:59:31.201+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:31 [INFO] Reading secret external-api +2025-07-11T08:59:31.201+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_version=HTTP/1.1 tf_http_trans_id=3cf99114-672b-8609-ab8c-92dc9efe0500 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." Host=rancher.bridge.fourlights.dev tf_http_req_body="" tf_http_req_method=GET Accept="application/json, */*" Accept-Encoding=gzip tf_http_op_type=request @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/external-user-agent timestamp="2025-07-11T08:59:31.201+0200" +2025-07-11T08:59:31.201+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/external-api Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev tf_http_req_method=GET tf_http_req_body="" tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_trans_id=111b14ff-2541-5d0d-b300-4ff380b705b7 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." timestamp="2025-07-11T08:59:31.201+0200" +2025-07-11T08:59:31.346+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Content-Type=application/json + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"external-user-agent","namespace":"365zon","uid":"83c8d7e4-a843-4ea0-b848-e5f943346b43","resourceVersion":"109681816","creationTimestamp":"2025-07-11T06:59:31Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:31Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjM2MDk2OTg5NDEy"},"type":"Opaque"} + tf_http_res_version=HTTP/2.0 tf_http_trans_id=3cf99114-672b-8609-ab8c-92dc9efe0500 X-Api-Cattle-Auth=true X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=594 Date="Fri, 11 Jul 2025 06:59:31 GMT" X-Content-Type-Options=nosniff tf_http_res_status_code=200 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_reason="200 OK" @module=kubernetes.Kubernetes Audit-Id=e61bccfd-d90c-49f1-8278-29d5f94248c6 timestamp="2025-07-11T08:59:31.346+0200" +2025-07-11T08:59:31.347+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 Audit-Id=73ebfe8e-bda6-4e51-8fd5-7e06af11f83a Content-Type=application/json Date="Fri, 11 Jul 2025 06:59:31 GMT" X-Content-Type-Options=nosniff @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"external-api","namespace":"365zon","uid":"81b29ad6-88e5-4c8b-ac8d-f7d7cb386406","resourceVersion":"109681815","creationTimestamp":"2025-07-11T06:59:30Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:30Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjM1NzQ0NjQyNDc5","client_secret":"aUdVUGx6cHBUVU1OOGRIQjdwWXl6bGlzRGl3TDBtU3FSMHoxeHVNZ1N1eHZrMWdKRjc4ZzQyTkZrZUhHY0VNMw=="},"type":"Opaque"} + tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] tf_http_op_type=response Content-Length=715 X-Api-Cattle-Auth=true tf_http_res_version=HTTP/2.0 tf_http_trans_id=111b14ff-2541-5d0d-b300-4ff380b705b7 timestamp="2025-07-11T08:59:31.346+0200" +2025-07-11T08:59:31.347+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:31 [INFO] Received secret: v1.ObjectMeta{Name:"external-api", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"81b29ad6-88e5-4c8b-ac8d-f7d7cb386406", ResourceVersion:"109681815", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 30, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 30, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000f6ac78), Subresource:""}}} +2025-07-11T08:59:31.347+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:31 [INFO] Reading secret external-user-agent +2025-07-11T08:59:31.347+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes tf_http_req_method=GET Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" Accept="application/json, */*" tf_http_req_version=HTTP/1.1 tf_http_trans_id=ccd96843-cf6e-d8d0-8eef-746cb87fad81 Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/external-user-agent timestamp="2025-07-11T08:59:31.347+0200" +2025-07-11T08:59:31.347+0200 [WARN] Provider "module.tenant-365zon.provider[\"registry.terraform.io/zitadel/zitadel\"]" produced an unexpected new value for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .description: was null, but now cty.StringVal("") +2025-07-11T08:59:31.347+0200 [WARN] Provider "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" produced an unexpected new value for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: was null, but now cty.False + - .metadata[0].generate_name: was null, but now cty.StringVal("") +2025-07-11T08:59:31.347+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:31.348+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:31.349+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:59:31.350+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default: applying the planned Create change +2025-07-11T08:59:31.350+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:59:31.350+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0] +2025-07-11T08:59:31.350+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_req_id=610d24d0-6985-5d4e-3949-8a8f2be82a23 @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/user_grant/funcs.go:62 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_resource_type=zitadel_user_grant tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:31.350+0200" +2025-07-11T08:59:31.350+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]: applying the planned Create change +2025-07-11T08:59:31.351+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:31 [INFO] Creating new secret: v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"external-service-account", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"", ResourceVersion:"", Generation:0, CreationTimestamp:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry(nil)}, Immutable:(*bool)(nil), Data:map[string][]uint8(nil), StringData:map[string]string{"audience":"328365621165169917", "authority":"https://zitadel.365zon", "client_id":"external@365zon.365zon", "client_secret":"Tdwfhg5EA1AmC2aRjgmgXFrbbV1H6OiygYUWSvr08JKzq4dGE7V6XMMgJiQeZQrr", "scope":"openid profile urn:zitadel:iam:org:project:id:328365621165169917:aud manage:profiles manage:contacts manage:addresses manage:enquiries manage:flowstates manage:flowevents manage:files manage:brands"}, Type:"Opaque"} +2025-07-11T08:59:31.351+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept-Encoding=gzip tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets @module=kubernetes.Kubernetes Accept="application/json, */*" tf_http_req_body="{\"kind\":\"Secret\",\"apiVersion\":\"v1\",\"metadata\":{\"name\":\"external-service-account\",\"namespace\":\"365zon\",\"creationTimestamp\":null},\"stringData\":{\"audience\":\"328365621165169917\",\"authority\":\"https://zitadel.365zon\",\"client_id\":\"external@365zon.365zon\",\"client_secret\":\"Tdwfhg5EA1AmC2aRjgmgXFrbbV1H6OiygYUWSvr08JKzq4dGE7V6XMMgJiQeZQrr\",\"scope\":\"openid profile urn:zitadel:iam:org:project:id:328365621165169917:aud manage:profiles manage:contacts manage:addresses manage:enquiries manage:flowstates manage:flowevents manage:files manage:brands\"},\"type\":\"Opaque\"}" tf_http_req_method=POST Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Content-Type=application/json tf_http_trans_id=9e7ac559-e69f-8079-4e78-34f8a4e0c1dd Content-Length=557 Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" timestamp="2025-07-11T08:59:31.351+0200" +2025-07-11T08:59:31.503+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Audit-Id=64bc8d51-068d-4de4-9709-21e15e36f0ee Date="Fri, 11 Jul 2025 06:59:31 GMT" X-Api-Cattle-Auth=true tf_http_res_status_code=200 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_op_type=response tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=594 Content-Type=application/json X-Content-Type-Options=nosniff new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"external-user-agent","namespace":"365zon","uid":"83c8d7e4-a843-4ea0-b848-e5f943346b43","resourceVersion":"109681816","creationTimestamp":"2025-07-11T06:59:31Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:31Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjM2MDk2OTg5NDEy"},"type":"Opaque"} + tf_http_trans_id=ccd96843-cf6e-d8d0-8eef-746cb87fad81 timestamp="2025-07-11T08:59:31.503+0200" +2025-07-11T08:59:31.504+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 Audit-Id=26643c82-ae7b-4a94-a334-4374c7ef31a9 Content-Type=application/json X-Api-Cattle-Auth=true + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"external-service-account","namespace":"365zon","uid":"b6cb324f-07e6-424d-9b50-c07cfa8be699","resourceVersion":"109681819","creationTimestamp":"2025-07-11T06:59:31Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:31Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{},"f:scope":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"ZXh0ZXJuYWxAMzY1em9uLjM2NXpvbg==","client_secret":"VGR3ZmhnNUVBMUFtQzJhUmpnbWdYRnJiYlYxSDZPaXlnWVVXU3ZyMDhKS3pxNGRHRTdWNlhNTWdKaVFlWlFycg==","scope":"b3BlbmlkIHByb2ZpbGUgdXJuOnppdGFkZWw6aWFtOm9yZzpwcm9qZWN0OmlkOjMyODM2NTYyMTE2NTE2OTkxNzphdWQgbWFuYWdlOnByb2ZpbGVzIG1hbmFnZTpjb250YWN0cyBtYW5hZ2U6YWRkcmVzc2VzIG1hbmFnZTplbnF1aXJpZXMgbWFuYWdlOmZsb3dzdGF0ZXMgbWFuYWdlOmZsb3dldmVudHMgbWFuYWdlOmZpbGVzIG1hbmFnZTpicmFuZHM="},"type":"Opaque"} + tf_http_res_status_code=201 tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_res_status_reason="201 Created" @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Content-Type-Options=nosniff new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response Content-Length=1023 Date="Fri, 11 Jul 2025 06:59:31 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_trans_id=9e7ac559-e69f-8079-4e78-34f8a4e0c1dd timestamp="2025-07-11T08:59:31.503+0200" +2025-07-11T08:59:31.504+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:31 [INFO] Received secret: v1.ObjectMeta{Name:"external-user-agent", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"83c8d7e4-a843-4ea0-b848-e5f943346b43", ResourceVersion:"109681816", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 31, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 31, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000f6b728), Subresource:""}}} +2025-07-11T08:59:31.504+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:31 [INFO] Submitting new secret: &v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"external-service-account", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"b6cb324f-07e6-424d-9b50-c07cfa8be699", ResourceVersion:"109681819", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 31, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 31, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc00166f8c0), Subresource:""}}}, Immutable:(*bool)(nil), Data:map[string][]uint8{"audience":[]uint8{0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x32, 0x31, 0x31, 0x36, 0x35, 0x31, 0x36, 0x39, 0x39, 0x31, 0x37}, "authority":[]uint8{0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x33, 0x36, 0x35, 0x7a, 0x6f, 0x6e}, "client_id":[]uint8{0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x40, 0x33, 0x36, 0x35, 0x7a, 0x6f, 0x6e, 0x2e, 0x33, 0x36, 0x35, 0x7a, 0x6f, 0x6e}, "client_secret":[]uint8{0x54, 0x64, 0x77, 0x66, 0x68, 0x67, 0x35, 0x45, 0x41, 0x31, 0x41, 0x6d, 0x43, 0x32, 0x61, 0x52, 0x6a, 0x67, 0x6d, 0x67, 0x58, 0x46, 0x72, 0x62, 0x62, 0x56, 0x31, 0x48, 0x36, 0x4f, 0x69, 0x79, 0x67, 0x59, 0x55, 0x57, 0x53, 0x76, 0x72, 0x30, 0x38, 0x4a, 0x4b, 0x7a, 0x71, 0x34, 0x64, 0x47, 0x45, 0x37, 0x56, 0x36, 0x58, 0x4d, 0x4d, 0x67, 0x4a, 0x69, 0x51, 0x65, 0x5a, 0x51, 0x72, 0x72}, "scope":[]uint8{0x6f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x75, 0x72, 0x6e, 0x3a, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x3a, 0x69, 0x61, 0x6d, 0x3a, 0x6f, 0x72, 0x67, 0x3a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x3a, 0x69, 0x64, 0x3a, 0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x32, 0x31, 0x31, 0x36, 0x35, 0x31, 0x36, 0x39, 0x39, 0x31, 0x37, 0x3a, 0x61, 0x75, 0x64, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x65, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x65, 0x6e, 0x71, 0x75, 0x69, 0x72, 0x69, 0x65, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x74, 0x61, 0x74, 0x65, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x66, 0x6c, 0x6f, 0x77, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x73}}, StringData:map[string]string(nil), Type:"Opaque"} +2025-07-11T08:59:31.504+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:31 [INFO] Checking secret external-service-account +2025-07-11T08:59:31.504+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept-Encoding=gzip new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" @module=kubernetes.Kubernetes Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_method=GET tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Host=rancher.bridge.fourlights.dev tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/external-service-account tf_http_trans_id=dc7a2f0f-4843-a072-54cc-869e1cd4d789 timestamp="2025-07-11T08:59:31.504+0200" +2025-07-11T08:59:31.504+0200 [WARN] Provider "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" produced an unexpected new value for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: was null, but now cty.False + - .metadata[0].generate_name: was null, but now cty.StringVal("") +2025-07-11T08:59:31.504+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:31.505+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:31.647+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_res_status_reason="200 OK" Content-Length=1023 X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_code=200 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:59:31 GMT" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"external-service-account","namespace":"365zon","uid":"b6cb324f-07e6-424d-9b50-c07cfa8be699","resourceVersion":"109681819","creationTimestamp":"2025-07-11T06:59:31Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:31Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{},"f:scope":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"ZXh0ZXJuYWxAMzY1em9uLjM2NXpvbg==","client_secret":"VGR3ZmhnNUVBMUFtQzJhUmpnbWdYRnJiYlYxSDZPaXlnWVVXU3ZyMDhKS3pxNGRHRTdWNlhNTWdKaVFlWlFycg==","scope":"b3BlbmlkIHByb2ZpbGUgdXJuOnppdGFkZWw6aWFtOm9yZzpwcm9qZWN0OmlkOjMyODM2NTYyMTE2NTE2OTkxNzphdWQgbWFuYWdlOnByb2ZpbGVzIG1hbmFnZTpjb250YWN0cyBtYW5hZ2U6YWRkcmVzc2VzIG1hbmFnZTplbnF1aXJpZXMgbWFuYWdlOmZsb3dzdGF0ZXMgbWFuYWdlOmZsb3dldmVudHMgbWFuYWdlOmZpbGVzIG1hbmFnZTpicmFuZHM="},"type":"Opaque"} + tf_http_trans_id=dc7a2f0f-4843-a072-54cc-869e1cd4d789 Audit-Id=c0469df1-5350-4dfe-98a8-95788195868c Content-Type=application/json timestamp="2025-07-11T08:59:31.647+0200" +2025-07-11T08:59:31.647+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:31 [INFO] Reading secret external-service-account +2025-07-11T08:59:31.647+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/external-service-account tf_http_req_version=HTTP/1.1 User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_trans_id=4b4ba87f-de24-a5d4-26d8-323049eef48e @module=kubernetes.Kubernetes Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev tf_http_req_method=GET timestamp="2025-07-11T08:59:31.647+0200" +2025-07-11T08:59:31.689+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"external-service-account","namespace":"365zon","uid":"b6cb324f-07e6-424d-9b50-c07cfa8be699","resourceVersion":"109681819","creationTimestamp":"2025-07-11T06:59:31Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:31Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{},"f:scope":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"ZXh0ZXJuYWxAMzY1em9uLjM2NXpvbg==","client_secret":"VGR3ZmhnNUVBMUFtQzJhUmpnbWdYRnJiYlYxSDZPaXlnWVVXU3ZyMDhKS3pxNGRHRTdWNlhNTWdKaVFlWlFycg==","scope":"b3BlbmlkIHByb2ZpbGUgdXJuOnppdGFkZWw6aWFtOm9yZzpwcm9qZWN0OmlkOjMyODM2NTYyMTE2NTE2OTkxNzphdWQgbWFuYWdlOnByb2ZpbGVzIG1hbmFnZTpjb250YWN0cyBtYW5hZ2U6YWRkcmVzc2VzIG1hbmFnZTplbnF1aXJpZXMgbWFuYWdlOmZsb3dzdGF0ZXMgbWFuYWdlOmZsb3dldmVudHMgbWFuYWdlOmZpbGVzIG1hbmFnZTpicmFuZHM="},"type":"Opaque"} + tf_http_res_status_reason="200 OK" tf_http_trans_id=4b4ba87f-de24-a5d4-26d8-323049eef48e Audit-Id=0cc7db6e-5971-4e58-9d49-78e8e17278fe X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:59:31 GMT" X-Api-Cattle-Auth=true tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Length=1023 X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 Content-Type=application/json new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response timestamp="2025-07-11T08:59:31.689+0200" +2025-07-11T08:59:31.689+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:31 [INFO] Received secret: v1.ObjectMeta{Name:"external-service-account", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"b6cb324f-07e6-424d-9b50-c07cfa8be699", ResourceVersion:"109681819", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 31, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 31, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0012244c8), Subresource:""}}} +2025-07-11T08:59:31.690+0200 [WARN] Provider "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" produced an unexpected new value for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: was null, but now cty.False + - .metadata[0].generate_name: was null, but now cty.StringVal("") +2025-07-11T08:59:31.690+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:31.692+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default +2025-07-11T08:59:31.692+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default: applying the planned Create change +2025-07-11T08:59:31.692+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/application_api/funcs.go:78 @module=zitadel tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=d601ec54-906b-3b45-4f23-e69c28972873 tf_mux_provider=tf5to6server.v5tov6Server tf_resource_type=zitadel_application_api tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:31.692+0200" +2025-07-11T08:59:31.955+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:31.956+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default +2025-07-11T08:59:31.956+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .clock_skew: planned value cty.StringVal("0s") for a non-computed attribute + - .version: planned value cty.StringVal("OIDC_VERSION_1_0") for a non-computed attribute +2025-07-11T08:59:31.956+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default: applying the planned Create change +2025-07-11T08:59:31.957+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:59:31.957+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default: applying the planned Create change +2025-07-11T08:59:31.957+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: 2025/07/11 08:59:31 [DEBUG] setting computed for "login_names" from ComputedKeys +2025-07-11T08:59:31.957+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_rpc=ApplyResourceChange @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/machine_user/funcs.go:39 @module=zitadel tf_req_id=1e20070e-a81c-042b-d296-2211b8d60122 tf_resource_type=zitadel_machine_user tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:59:31.957+0200" +2025-07-11T08:59:31.957+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:59:31.957+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api +2025-07-11T08:59:31.957+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_resource_type=zitadel_application_oidc @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/application_oidc/funcs.go:122 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=161451a2-e9c0-2c20-9a99-2e33e46b0626 tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:31.957+0200" +2025-07-11T08:59:31.957+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api: applying the planned Create change +2025-07-11T08:59:31.958+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:31 [INFO] Creating new secret: v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"internal-api", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"", ResourceVersion:"", Generation:0, CreationTimestamp:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry(nil)}, Immutable:(*bool)(nil), Data:map[string][]uint8(nil), StringData:map[string]string{"audience":"328365621165169917", "authority":"https://zitadel.365zon", "client_id":"328365637556581807", "client_secret":"NCpJ0ybiGRpT7RmGSlYCySDiNWzEg2Clhepvk1UIcdZYNpEF2XHs8nMi5fxyDQwq"}, Type:"Opaque"} +2025-07-11T08:59:31.958+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Content-Length=333 tf_http_op_type=request tf_http_req_method=POST tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_trans_id=4645e729-2b68-ca24-c562-b9f30283866e @module=kubernetes.Kubernetes Accept-Encoding=gzip tf_http_req_version=HTTP/1.1 Content-Type=application/json new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="{\"kind\":\"Secret\",\"apiVersion\":\"v1\",\"metadata\":{\"name\":\"internal-api\",\"namespace\":\"365zon\",\"creationTimestamp\":null},\"stringData\":{\"audience\":\"328365621165169917\",\"authority\":\"https://zitadel.365zon\",\"client_id\":\"328365637556581807\",\"client_secret\":\"NCpJ0ybiGRpT7RmGSlYCySDiNWzEg2Clhepvk1UIcdZYNpEF2XHs8nMi5fxyDQwq\"},\"type\":\"Opaque\"}" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" timestamp="2025-07-11T08:59:31.958+0200" +2025-07-11T08:59:32.123+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Content-Length=715 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:59:31 GMT" X-Api-Cattle-Auth=true X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"internal-api","namespace":"365zon","uid":"460d5d3b-5d3d-4e91-afb1-c57088a96c97","resourceVersion":"109681823","creationTimestamp":"2025-07-11T06:59:31Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:31Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjM3NTU2NTgxODA3","client_secret":"TkNwSjB5YmlHUnBUN1JtR1NsWUN5U0RpTld6RWcyQ2xoZXB2azFVSWNkWllOcEVGMlhIczhuTWk1Znh5RFF3cQ=="},"type":"Opaque"} + tf_http_res_status_reason="201 Created" tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Content-Type=application/json X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_code=201 Audit-Id=97b9b0a8-8a23-43e4-adb4-018ba678ca7a new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=4645e729-2b68-ca24-c562-b9f30283866e timestamp="2025-07-11T08:59:32.123+0200" +2025-07-11T08:59:32.123+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:32 [INFO] Submitting new secret: &v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"internal-api", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"460d5d3b-5d3d-4e91-afb1-c57088a96c97", ResourceVersion:"109681823", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 31, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 31, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001011170), Subresource:""}}}, Immutable:(*bool)(nil), Data:map[string][]uint8{"audience":[]uint8{0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x32, 0x31, 0x31, 0x36, 0x35, 0x31, 0x36, 0x39, 0x39, 0x31, 0x37}, "authority":[]uint8{0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x33, 0x36, 0x35, 0x7a, 0x6f, 0x6e}, "client_id":[]uint8{0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x33, 0x37, 0x35, 0x35, 0x36, 0x35, 0x38, 0x31, 0x38, 0x30, 0x37}, "client_secret":[]uint8{0x4e, 0x43, 0x70, 0x4a, 0x30, 0x79, 0x62, 0x69, 0x47, 0x52, 0x70, 0x54, 0x37, 0x52, 0x6d, 0x47, 0x53, 0x6c, 0x59, 0x43, 0x79, 0x53, 0x44, 0x69, 0x4e, 0x57, 0x7a, 0x45, 0x67, 0x32, 0x43, 0x6c, 0x68, 0x65, 0x70, 0x76, 0x6b, 0x31, 0x55, 0x49, 0x63, 0x64, 0x5a, 0x59, 0x4e, 0x70, 0x45, 0x46, 0x32, 0x58, 0x48, 0x73, 0x38, 0x6e, 0x4d, 0x69, 0x35, 0x66, 0x78, 0x79, 0x44, 0x51, 0x77, 0x71}}, StringData:map[string]string(nil), Type:"Opaque"} +2025-07-11T08:59:32.124+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:32 [INFO] Checking secret internal-api +2025-07-11T08:59:32.124+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_trans_id=b9ce7095-1141-5f2a-c82b-af1dbed9d008 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." @module=kubernetes.Kubernetes Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_op_type=request tf_http_req_body="" tf_http_req_method=GET tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Host=rancher.bridge.fourlights.dev tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/internal-api timestamp="2025-07-11T08:59:32.124+0200" +2025-07-11T08:59:32.269+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_res_version=HTTP/2.0 X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Audit-Id=d253df81-070a-4eab-baf7-d346cd33c609 X-Api-Cattle-Auth=true Content-Type=application/json + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"internal-api","namespace":"365zon","uid":"460d5d3b-5d3d-4e91-afb1-c57088a96c97","resourceVersion":"109681823","creationTimestamp":"2025-07-11T06:59:31Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:31Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjM3NTU2NTgxODA3","client_secret":"TkNwSjB5YmlHUnBUN1JtR1NsWUN5U0RpTld6RWcyQ2xoZXB2azFVSWNkWllOcEVGMlhIczhuTWk1Znh5RFF3cQ=="},"type":"Opaque"} + tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" tf_http_trans_id=b9ce7095-1141-5f2a-c82b-af1dbed9d008 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:59:32 GMT" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response Content-Length=715 timestamp="2025-07-11T08:59:32.269+0200" +2025-07-11T08:59:32.269+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=1e20070e-a81c-042b-d296-2211b8d60122 tf_resource_type=zitadel_machine_user tf_rpc=ApplyResourceChange @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/machine_user/funcs.go:150 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server timestamp="2025-07-11T08:59:32.269+0200" +2025-07-11T08:59:32.269+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:32 [INFO] Reading secret internal-api +2025-07-11T08:59:32.269+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_method=GET tf_http_trans_id=bdd760f3-ba06-8090-bc13-0d676df1a303 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." Accept="application/json, */*" Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/internal-api @module=kubernetes.Kubernetes tf_http_op_type=request tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T08:59:32.269+0200" +2025-07-11T08:59:32.270+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:32.272+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:59:32.272+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent +2025-07-11T08:59:32.272+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent: applying the planned Create change +2025-07-11T08:59:32.273+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:32 [INFO] Creating new secret: v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"internal-user-agent", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"", ResourceVersion:"", Generation:0, CreationTimestamp:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry(nil)}, Immutable:(*bool)(nil), Data:map[string][]uint8(nil), StringData:map[string]string{"audience":"328365621165169917", "authority":"https://zitadel.365zon", "client_id":"328365637942516989"}, Type:"Opaque"} +2025-07-11T08:59:32.273+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept-Encoding=gzip tf_http_req_method=POST Host=rancher.bridge.fourlights.dev tf_http_trans_id=772cc97c-1a5b-46a4-921a-0657b5dc7737 User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Content-Length=257 tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets Content-Type=application/json tf_http_req_body="{\"kind\":\"Secret\",\"apiVersion\":\"v1\",\"metadata\":{\"name\":\"internal-user-agent\",\"namespace\":\"365zon\",\"creationTimestamp\":null},\"stringData\":{\"audience\":\"328365621165169917\",\"authority\":\"https://zitadel.365zon\",\"client_id\":\"328365637942516989\"},\"type\":\"Opaque\"}" tf_http_req_version=HTTP/1.1 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." @module=kubernetes.Kubernetes timestamp="2025-07-11T08:59:32.273+0200" +2025-07-11T08:59:32.430+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Content-Type=application/json Date="Fri, 11 Jul 2025 06:59:32 GMT" X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"internal-api","namespace":"365zon","uid":"460d5d3b-5d3d-4e91-afb1-c57088a96c97","resourceVersion":"109681823","creationTimestamp":"2025-07-11T06:59:31Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:31Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjM3NTU2NTgxODA3","client_secret":"TkNwSjB5YmlHUnBUN1JtR1NsWUN5U0RpTld6RWcyQ2xoZXB2azFVSWNkWllOcEVGMlhIczhuTWk1Znh5RFF3cQ=="},"type":"Opaque"} + tf_http_res_version=HTTP/2.0 tf_http_trans_id=bdd760f3-ba06-8090-bc13-0d676df1a303 Audit-Id=7e3738d4-d5b8-488d-96fe-1b0d906012ba tf_http_op_type=response tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=715 X-Content-Type-Options=nosniff new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." timestamp="2025-07-11T08:59:32.430+0200" +2025-07-11T08:59:32.430+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 Content-Length=594 Date="Fri, 11 Jul 2025 06:59:32 GMT" tf_http_res_status_reason="201 Created" Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"internal-user-agent","namespace":"365zon","uid":"9bfefd1b-80d9-407f-a249-deda3d72207a","resourceVersion":"109681826","creationTimestamp":"2025-07-11T06:59:32Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:32Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjM3OTQyNTE2OTg5"},"type":"Opaque"} + Content-Type=application/json tf_http_op_type=response tf_http_res_status_code=201 tf_http_res_version=HTTP/2.0 tf_http_trans_id=772cc97c-1a5b-46a4-921a-0657b5dc7737 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Audit-Id=6901b594-ed2a-424d-a79e-e9d533990a04 timestamp="2025-07-11T08:59:32.430+0200" +2025-07-11T08:59:32.430+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:32 [INFO] Received secret: v1.ObjectMeta{Name:"internal-api", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"460d5d3b-5d3d-4e91-afb1-c57088a96c97", ResourceVersion:"109681823", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 31, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 31, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0010bc990), Subresource:""}}} +2025-07-11T08:59:32.430+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:32 [INFO] Submitting new secret: &v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"internal-user-agent", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"9bfefd1b-80d9-407f-a249-deda3d72207a", ResourceVersion:"109681826", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 32, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 32, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc00140ac78), Subresource:""}}}, Immutable:(*bool)(nil), Data:map[string][]uint8{"audience":[]uint8{0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x32, 0x31, 0x31, 0x36, 0x35, 0x31, 0x36, 0x39, 0x39, 0x31, 0x37}, "authority":[]uint8{0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x33, 0x36, 0x35, 0x7a, 0x6f, 0x6e}, "client_id":[]uint8{0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x33, 0x37, 0x39, 0x34, 0x32, 0x35, 0x31, 0x36, 0x39, 0x38, 0x39}}, StringData:map[string]string(nil), Type:"Opaque"} +2025-07-11T08:59:32.430+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:32 [INFO] Checking secret internal-user-agent +2025-07-11T08:59:32.430+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" @module=kubernetes.Kubernetes Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Host=rancher.bridge.fourlights.dev tf_http_req_body="" tf_http_req_method=GET tf_http_req_version=HTTP/1.1 tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/internal-user-agent tf_http_trans_id=eb88596c-1d4e-2d11-09d0-2e70a66b62d8 Accept="application/json, */*" timestamp="2025-07-11T08:59:32.430+0200" +2025-07-11T08:59:32.431+0200 [WARN] Provider "module.tenant-365zon.provider[\"registry.terraform.io/zitadel/zitadel\"]" produced an unexpected new value for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .description: was null, but now cty.StringVal("") +2025-07-11T08:59:32.431+0200 [WARN] Provider "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" produced an unexpected new value for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: was null, but now cty.False + - .metadata[0].generate_name: was null, but now cty.StringVal("") +2025-07-11T08:59:32.431+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:32.431+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:32.433+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default +2025-07-11T08:59:32.433+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default: applying the planned Create change +2025-07-11T08:59:32.433+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute +2025-07-11T08:59:32.434+0200 [INFO] Starting apply for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0] +2025-07-11T08:59:32.434+0200 [DEBUG] module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]: applying the planned Create change +2025-07-11T08:59:32.434+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_resource_type=zitadel_user_grant @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/user_grant/funcs.go:62 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=427a1bd7-6b30-d84b-0b17-48ae6cc38fe4 tf_rpc=ApplyResourceChange timestamp="2025-07-11T08:59:32.434+0200" +2025-07-11T08:59:32.434+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:32 [INFO] Creating new secret: v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"internal-service-account", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"", ResourceVersion:"", Generation:0, CreationTimestamp:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry(nil)}, Immutable:(*bool)(nil), Data:map[string][]uint8(nil), StringData:map[string]string{"audience":"328365621165169917", "authority":"https://zitadel.365zon", "client_id":"internal@365zon.365zon", "client_secret":"6mHmgPsYnu5UUXZN3mK3HwnGxhSjJdyXNlpn6w82BpnLnmAwgvLc8hqDZiyWCGk7", "scope":"openid profile urn:zitadel:iam:org:project:id:328365621165169917:aud manage:profiles manage:contacts manage:addresses manage:enquiries manage:flowstates manage:flowevents manage:files manage:brands"}, Type:"Opaque"} +2025-07-11T08:59:32.434+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." @module=kubernetes.Kubernetes Accept-Encoding=gzip Content-Length=557 tf_http_req_method=POST tf_http_trans_id=8e601334-7fde-819d-7b1b-b0d5a538059e @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Type=application/json tf_http_op_type=request tf_http_req_body="{\"kind\":\"Secret\",\"apiVersion\":\"v1\",\"metadata\":{\"name\":\"internal-service-account\",\"namespace\":\"365zon\",\"creationTimestamp\":null},\"stringData\":{\"audience\":\"328365621165169917\",\"authority\":\"https://zitadel.365zon\",\"client_id\":\"internal@365zon.365zon\",\"client_secret\":\"6mHmgPsYnu5UUXZN3mK3HwnGxhSjJdyXNlpn6w82BpnLnmAwgvLc8hqDZiyWCGk7\",\"scope\":\"openid profile urn:zitadel:iam:org:project:id:328365621165169917:aud manage:profiles manage:contacts manage:addresses manage:enquiries manage:flowstates manage:flowevents manage:files manage:brands\"},\"type\":\"Opaque\"}" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets Accept="application/json, */*" Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T08:59:32.434+0200" +2025-07-11T08:59:32.574+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Length=594 X-Api-Cattle-Auth=true new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=eb88596c-1d4e-2d11-09d0-2e70a66b62d8 Audit-Id=05e849b9-ea88-4d64-bc4b-20b692134613 X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"internal-user-agent","namespace":"365zon","uid":"9bfefd1b-80d9-407f-a249-deda3d72207a","resourceVersion":"109681826","creationTimestamp":"2025-07-11T06:59:32Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:32Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjM3OTQyNTE2OTg5"},"type":"Opaque"} + @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_code=200 Date="Fri, 11 Jul 2025 06:59:32 GMT" timestamp="2025-07-11T08:59:32.574+0200" +2025-07-11T08:59:32.574+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"internal-service-account","namespace":"365zon","uid":"9458c3ff-be27-4743-912c-1d8afc0e95a7","resourceVersion":"109681831","creationTimestamp":"2025-07-11T06:59:32Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:32Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{},"f:scope":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"aW50ZXJuYWxAMzY1em9uLjM2NXpvbg==","client_secret":"Nm1IbWdQc1ludTVVVVhaTjNtSzNId25HeGhTakpkeVhObHBuNnc4MkJwbkxubUF3Z3ZMYzhocURaaXlXQ0drNw==","scope":"b3BlbmlkIHByb2ZpbGUgdXJuOnppdGFkZWw6aWFtOm9yZzpwcm9qZWN0OmlkOjMyODM2NTYyMTE2NTE2OTkxNzphdWQgbWFuYWdlOnByb2ZpbGVzIG1hbmFnZTpjb250YWN0cyBtYW5hZ2U6YWRkcmVzc2VzIG1hbmFnZTplbnF1aXJpZXMgbWFuYWdlOmZsb3dzdGF0ZXMgbWFuYWdlOmZsb3dldmVudHMgbWFuYWdlOmZpbGVzIG1hbmFnZTpicmFuZHM="},"type":"Opaque"} + tf_http_trans_id=8e601334-7fde-819d-7b1b-b0d5a538059e @module=kubernetes.Kubernetes X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json Date="Fri, 11 Jul 2025 06:59:32 GMT" X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 Content-Length=1023 X-Content-Type-Options=nosniff tf_http_res_status_code=201 tf_http_res_status_reason="201 Created" tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=937ee9be-6779-4b53-84ca-fc7ffcafdae6 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response timestamp="2025-07-11T08:59:32.574+0200" +2025-07-11T08:59:32.574+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:32 [INFO] Reading secret internal-user-agent +2025-07-11T08:59:32.575+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:32 [INFO] Submitting new secret: &v1.Secret{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"internal-service-account", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"9458c3ff-be27-4743-912c-1d8afc0e95a7", ResourceVersion:"109681831", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 32, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 32, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc00166fc08), Subresource:""}}}, Immutable:(*bool)(nil), Data:map[string][]uint8{"audience":[]uint8{0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x32, 0x31, 0x31, 0x36, 0x35, 0x31, 0x36, 0x39, 0x39, 0x31, 0x37}, "authority":[]uint8{0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x33, 0x36, 0x35, 0x7a, 0x6f, 0x6e}, "client_id":[]uint8{0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x40, 0x33, 0x36, 0x35, 0x7a, 0x6f, 0x6e, 0x2e, 0x33, 0x36, 0x35, 0x7a, 0x6f, 0x6e}, "client_secret":[]uint8{0x36, 0x6d, 0x48, 0x6d, 0x67, 0x50, 0x73, 0x59, 0x6e, 0x75, 0x35, 0x55, 0x55, 0x58, 0x5a, 0x4e, 0x33, 0x6d, 0x4b, 0x33, 0x48, 0x77, 0x6e, 0x47, 0x78, 0x68, 0x53, 0x6a, 0x4a, 0x64, 0x79, 0x58, 0x4e, 0x6c, 0x70, 0x6e, 0x36, 0x77, 0x38, 0x32, 0x42, 0x70, 0x6e, 0x4c, 0x6e, 0x6d, 0x41, 0x77, 0x67, 0x76, 0x4c, 0x63, 0x38, 0x68, 0x71, 0x44, 0x5a, 0x69, 0x79, 0x57, 0x43, 0x47, 0x6b, 0x37}, "scope":[]uint8{0x6f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x75, 0x72, 0x6e, 0x3a, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x3a, 0x69, 0x61, 0x6d, 0x3a, 0x6f, 0x72, 0x67, 0x3a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x3a, 0x69, 0x64, 0x3a, 0x33, 0x32, 0x38, 0x33, 0x36, 0x35, 0x36, 0x32, 0x31, 0x31, 0x36, 0x35, 0x31, 0x36, 0x39, 0x39, 0x31, 0x37, 0x3a, 0x61, 0x75, 0x64, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x65, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x65, 0x6e, 0x71, 0x75, 0x69, 0x72, 0x69, 0x65, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x74, 0x61, 0x74, 0x65, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x66, 0x6c, 0x6f, 0x77, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x3a, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x73}}, StringData:map[string]string(nil), Type:"Opaque"} +2025-07-11T08:59:32.575+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:32 [INFO] Checking secret internal-service-account +2025-07-11T08:59:32.575+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_method=GET @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes tf_http_trans_id=019a88db-b785-ec5f-0666-5d0248585318 tf_http_req_body="" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/internal-user-agent timestamp="2025-07-11T08:59:32.575+0200" +2025-07-11T08:59:32.575+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_method=GET tf_http_trans_id=3e147eef-526e-a3f4-08fe-530d046dcff9 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_op_type=request Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/internal-service-account tf_http_req_version=HTTP/1.1 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" Accept="application/json, */*" Host=rancher.bridge.fourlights.dev timestamp="2025-07-11T08:59:32.575+0200" +2025-07-11T08:59:32.575+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:32.576+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:32.577+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=973985 +2025-07-11T08:59:32.577+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:32.732+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Audit-Id=40feca9f-106a-40ac-9405-5ae2e071605e Date="Fri, 11 Jul 2025 06:59:32 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"internal-user-agent","namespace":"365zon","uid":"9bfefd1b-80d9-407f-a249-deda3d72207a","resourceVersion":"109681826","creationTimestamp":"2025-07-11T06:59:32Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:32Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjM3OTQyNTE2OTg5"},"type":"Opaque"} + tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 X-Api-Cattle-Auth=true X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] tf_http_res_status_code=200 tf_http_trans_id=019a88db-b785-ec5f-0666-5d0248585318 Content-Length=594 Content-Type=application/json X-Content-Type-Options=nosniff new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response timestamp="2025-07-11T08:59:32.732+0200" +2025-07-11T08:59:32.733+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" Audit-Id=d5c229e1-adb9-40ce-a84e-2b6d5740b1f3 Content-Length=1023 Date="Fri, 11 Jul 2025 06:59:32 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"internal-service-account","namespace":"365zon","uid":"9458c3ff-be27-4743-912c-1d8afc0e95a7","resourceVersion":"109681831","creationTimestamp":"2025-07-11T06:59:32Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:32Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{},"f:scope":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"aW50ZXJuYWxAMzY1em9uLjM2NXpvbg==","client_secret":"Nm1IbWdQc1ludTVVVVhaTjNtSzNId25HeGhTakpkeVhObHBuNnc4MkJwbkxubUF3Z3ZMYzhocURaaXlXQ0drNw==","scope":"b3BlbmlkIHByb2ZpbGUgdXJuOnppdGFkZWw6aWFtOm9yZzpwcm9qZWN0OmlkOjMyODM2NTYyMTE2NTE2OTkxNzphdWQgbWFuYWdlOnByb2ZpbGVzIG1hbmFnZTpjb250YWN0cyBtYW5hZ2U6YWRkcmVzc2VzIG1hbmFnZTplbnF1aXJpZXMgbWFuYWdlOmZsb3dzdGF0ZXMgbWFuYWdlOmZsb3dldmVudHMgbWFuYWdlOmZpbGVzIG1hbmFnZTpicmFuZHM="},"type":"Opaque"} + Content-Type=application/json new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_trans_id=3e147eef-526e-a3f4-08fe-530d046dcff9 timestamp="2025-07-11T08:59:32.732+0200" +2025-07-11T08:59:32.733+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:32 [INFO] Received secret: v1.ObjectMeta{Name:"internal-user-agent", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"9bfefd1b-80d9-407f-a249-deda3d72207a", ResourceVersion:"109681826", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 32, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 32, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001225410), Subresource:""}}} +2025-07-11T08:59:32.733+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:32 [INFO] Reading secret internal-service-account +2025-07-11T08:59:32.733+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Host=rancher.bridge.fourlights.dev tf_http_req_method=GET tf_http_req_body="" Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/internal-service-account tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_trans_id=dbeb2f3e-1596-1a2e-3508-13234694b7c2 timestamp="2025-07-11T08:59:32.733+0200" +2025-07-11T08:59:32.733+0200 [WARN] Provider "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" produced an unexpected new value for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: was null, but now cty.False + - .metadata[0].generate_name: was null, but now cty.StringVal("") +2025-07-11T08:59:32.733+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:32.877+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Length=1023 Date="Fri, 11 Jul 2025 06:59:32 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." @module=kubernetes.Kubernetes Content-Type=application/json X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"internal-service-account","namespace":"365zon","uid":"9458c3ff-be27-4743-912c-1d8afc0e95a7","resourceVersion":"109681831","creationTimestamp":"2025-07-11T06:59:32Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:32Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{},"f:scope":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"aW50ZXJuYWxAMzY1em9uLjM2NXpvbg==","client_secret":"Nm1IbWdQc1ludTVVVVhaTjNtSzNId25HeGhTakpkeVhObHBuNnc4MkJwbkxubUF3Z3ZMYzhocURaaXlXQ0drNw==","scope":"b3BlbmlkIHByb2ZpbGUgdXJuOnppdGFkZWw6aWFtOm9yZzpwcm9qZWN0OmlkOjMyODM2NTYyMTE2NTE2OTkxNzphdWQgbWFuYWdlOnByb2ZpbGVzIG1hbmFnZTpjb250YWN0cyBtYW5hZ2U6YWRkcmVzc2VzIG1hbmFnZTplbnF1aXJpZXMgbWFuYWdlOmZsb3dzdGF0ZXMgbWFuYWdlOmZsb3dldmVudHMgbWFuYWdlOmZpbGVzIG1hbmFnZTpicmFuZHM="},"type":"Opaque"} + tf_http_trans_id=dbeb2f3e-1596-1a2e-3508-13234694b7c2 Audit-Id=bbbfca5f-ab25-4124-ac88-9a62b4fd7799 tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] tf_http_res_status_reason="200 OK" timestamp="2025-07-11T08:59:32.877+0200" +2025-07-11T08:59:32.877+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:32 [INFO] Received secret: v1.ObjectMeta{Name:"internal-service-account", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"9458c3ff-be27-4743-912c-1d8afc0e95a7", ResourceVersion:"109681831", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 32, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 32, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000fa6570), Subresource:""}}} +2025-07-11T08:59:32.878+0200 [WARN] Provider "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" produced an unexpected new value for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: was null, but now cty.False + - .metadata[0].generate_name: was null, but now cty.StringVal("") +2025-07-11T08:59:32.878+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T08:59:32.879+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:32.881+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=973643 +2025-07-11T08:59:32.881+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:32.881+0200 [DEBUG] states/remote: state read serial is: 44; serial is: 44 +2025-07-11T08:59:32.881+0200 [DEBUG] states/remote: state read lineage is: 8bb1bb78-c340-a09d-d7d3-bfdfbe0a740e; lineage is: 8bb1bb78-c340-a09d-d7d3-bfdfbe0a740e +2025-07-11T08:59:32.888+0200 [INFO] backend-s3: Uploading remote state: tf_backend.operation=Put tf_backend.req_id=fe853786-b1c7-7783-16f1-1296b91bdb05 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T08:59:32.889+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=PutObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Put tf_backend.req_id=fe853786-b1c7-7783-16f1-1296b91bdb05 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.request.header.x_amz_trailer=x-amz-checksum-sha256 http.request.header.content_type=application/json http.request.header.accept_encoding=identity http.request.header.content_encoding=aws-chunked http.request_content_length=302426 http.request.header.amz_sdk_invocation_id=64120f38-9357-4f7b-9025-a4ebc6b28c13 http.request.body="[Redacted: 295.3 KB (302,426 bytes), Type: application/json]" net.peer.name=storage.bridge.fourlights.dev http.request.header.x_amz_date=20250711T065932Z http.request.header.amz_sdk_request="attempt=1; max=5" http.request.header.x_amz_sdk_checksum_algorithm=SHA256 http.request.header.x_amz_decoded_content_length=302344 http.request.header.x_amz_content_sha256=STREAMING-UNSIGNED-PAYLOAD-TRAILER http.method=PUT http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate?x-id=PutObject http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 ft/s3-transfer m/G,Z" http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;content-encoding;content-length;content-type;host;x-amz-content-sha256;x-amz-date;x-amz-decoded-content-length;x-amz-sdk-checksum-algorithm;x-amz-trailer, Signature=*****" +2025-07-11T08:59:34.111+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=PutObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Put tf_backend.req_id=fe853786-b1c7-7783-16f1-1296b91bdb05 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.response.header.server=MinIO http.response.header.date="Fri, 11 Jul 2025 06:59:34 GMT" http.response.header.accept_ranges=bytes http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.x_xss_protection="1; mode=block" http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.body="" http.response.header.etag="\"3e0e8e2a258bf09d9aa392de5b8718fc\"" http.response.header.x_ratelimit_remaining=57 http.response.header.x_amz_checksum_sha256="iP9e5v96G9MAeqQ3cRURBvsrT12QpVllgY8kFH+0tqI=" http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.x_amz_request_id=1851203C331C4994 http.duration=1222 http.status_code=200 http.response.header.x_ratelimit_limit=57 http.response.header.x_content_type_options=nosniff +2025-07-11T08:59:34.112+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:34.112+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:34.112+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:34.112+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:34.113+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 id=973430 +2025-07-11T08:59:34.113+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:34.114+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=973998 +2025-07-11T08:59:34.114+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:34.114+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=973565 +2025-07-11T08:59:34.114+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:34.114+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=973732 +2025-07-11T08:59:34.114+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:44.942+0200 [INFO] Terraform version: 1.12.1 +2025-07-11T08:59:44.942+0200 [DEBUG] using github.com/hashicorp/go-tfe v1.74.1 +2025-07-11T08:59:44.942+0200 [DEBUG] using github.com/hashicorp/hcl/v2 v2.23.1-0.20250203194505-ba0759438da2 +2025-07-11T08:59:44.942+0200 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1 +2025-07-11T08:59:44.942+0200 [DEBUG] using github.com/zclconf/go-cty v1.16.2 +2025-07-11T08:59:44.942+0200 [INFO] Go runtime version: go1.24.3 +2025-07-11T08:59:44.942+0200 [INFO] CLI args: []string{"terraform", "apply"} +2025-07-11T08:59:44.942+0200 [DEBUG] Attempting to open CLI config file: /home/lamelos/.terraformrc +2025-07-11T08:59:44.942+0200 [INFO] Loading CLI configuration from /home/lamelos/.terraformrc +2025-07-11T08:59:44.942+0200 [DEBUG] checking for credentials in "/home/lamelos/.terraform.d/plugins" +2025-07-11T08:59:44.942+0200 [DEBUG] Explicit provider installation configuration is set +2025-07-11T08:59:44.942+0200 [INFO] CLI command args: []string{"apply"} +2025-07-11T08:59:44.944+0200 [DEBUG] backend-s3.aws-base: Resolving credentials provider: tf_backend.operation=Configure tf_backend.req_id=fe1b678e-be29-79a8-13ba-7350fa4daecb tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T08:59:44.944+0200 [DEBUG] backend-s3.aws-base: Using authentication parameters: tf_backend.operation=Configure tf_backend.req_id=fe1b678e-be29-79a8-13ba-7350fa4daecb tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate tf_aws.auth_fields=["access key", "secret key"] tf_aws.auth_fields.source=provider +2025-07-11T08:59:44.944+0200 [INFO] backend-s3.aws-base: Retrieved credentials: tf_backend.operation=Configure tf_backend.req_id=fe1b678e-be29-79a8-13ba-7350fa4daecb tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate tf_aws.credentials_source=StaticCredentials +2025-07-11T08:59:44.944+0200 [DEBUG] backend-s3.aws-base: Loading configuration: tf_backend.operation=Configure tf_backend.req_id=fe1b678e-be29-79a8-13ba-7350fa4daecb tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T08:59:44.946+0200 [DEBUG] Provider registry.terraform.io/hashicorp/helm is overridden by dev_overrides +2025-07-11T08:59:45.138+0200 [DEBUG] Provider registry.terraform.io/hashicorp/helm is overridden to load from /home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64 +2025-07-11T08:59:45.138+0200 [DEBUG] checking for provisioner in "." +2025-07-11T08:59:45.146+0200 [DEBUG] checking for provisioner in "/usr/bin" +2025-07-11T08:59:45.146+0200 [DEBUG] checking for provisioner in "/home/lamelos/.terraform.d/plugins" +2025-07-11T08:59:45.148+0200 [DEBUG] Provider registry.terraform.io/hashicorp/helm is overridden by dev_overrides +2025-07-11T08:59:45.148+0200 [INFO] backend/local: starting Apply operation +2025-07-11T08:59:45.149+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon rpc.method=ListObjectsV2 rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Workspaces tf_backend.req_id=90acbd31-cee5-f66f-9080-4ca442054f3b tf_backend.s3.bucket=app-365zon tf_backend.workspace-prefix=env:/ http.url="https://storage.bridge.fourlights.dev/app-365zon?list-type=2&max-keys=1000&prefix=env%3A%2F" http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 m/C" http.request.body="" http.method=GET net.peer.name=storage.bridge.fourlights.dev http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.amz_sdk_request="attempt=1; max=5" http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.request.header.x_amz_date=20250711T065945Z http.request.header.amz_sdk_invocation_id=cbfbec00-1151-47c3-b4e2-95365dd0bd3e http.request.header.accept_encoding=identity +2025-07-11T08:59:45.723+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon rpc.method=ListObjectsV2 rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Workspaces tf_backend.req_id=90acbd31-cee5-f66f-9080-4ca442054f3b tf_backend.s3.bucket=app-365zon tf_backend.workspace-prefix=env:/ http.response.header.date="Fri, 11 Jul 2025 06:59:45 GMT" http.response.header.x_ratelimit_limit=57 http.response.header.content_type=application/xml + http.response.body= + | + | app-365zonenv:/01000false + http.response_content_length=246 http.response.header.x_content_type_options=nosniff http.response.header.accept_ranges=bytes http.response.header.vary=["Origin", "Accept-Encoding"] http.duration=573 http.status_code=200 http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.x_amz_request_id=1851203F1C3417A0 http.response.header.x_xss_protection="1; mode=block" http.response.header.server=MinIO http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.x_ratelimit_remaining=57 +2025-07-11T08:59:45.723+0200 [INFO] backend-s3: Downloading remote state: tf_backend.operation=Get tf_backend.req_id=0f21c396-428e-091b-7e9a-c4a1cb3487c2 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T08:59:45.723+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=HeadObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=0f21c396-428e-091b-7e9a-c4a1cb3487c2 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.method=HEAD net.peer.name=storage.bridge.fourlights.dev http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2" http.request.header.accept_encoding=identity http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.x_amz_date=20250711T065945Z http.request.header.amz_sdk_invocation_id=61bf8a00-750f-4316-872f-b404b3041d31 http.request.header.amz_sdk_request="attempt=1; max=5" http.request.body="" +2025-07-11T08:59:45.927+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=HeadObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=0f21c396-428e-091b-7e9a-c4a1cb3487c2 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.date="Fri, 11 Jul 2025 06:59:45 GMT" http.response.header.x_content_type_options=nosniff http.response.header.x_amz_request_id=1851203F2E03EBE0 http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.x_ratelimit_limit=57 http.response_content_length=302344 http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.x_xss_protection="1; mode=block" http.response.header.server=MinIO http.response.body="" http.duration=203 http.response.header.accept_ranges=bytes http.response.header.last_modified="Fri, 11 Jul 2025 06:59:33 GMT" http.response.header.x_ratelimit_remaining=57 http.status_code=200 http.response.header.etag="\"3e0e8e2a258bf09d9aa392de5b8718fc\"" http.response.header.content_type=application/json +2025-07-11T08:59:45.928+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=0f21c396-428e-091b-7e9a-c4a1cb3487c2 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate?x-id=GetObject net.peer.name=storage.bridge.fourlights.dev http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 ft/s3-transfer m/G,b" http.request.header.amz_sdk_request="attempt=1; max=5" http.request.header.amz_sdk_invocation_id=8ee347a0-dfdd-41e9-95ae-2b6f8c4bbb9d http.request.body="" http.method=GET http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;range;x-amz-checksum-mode;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.request.header.accept_encoding=identity http.request.header.x_amz_checksum_mode=ENABLED http.request.header.range=bytes=0-5242879 http.request.header.x_amz_date=20250711T065945Z +2025-07-11T08:59:45.972+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=0f21c396-428e-091b-7e9a-c4a1cb3487c2 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.response.header.date="Fri, 11 Jul 2025 06:59:45 GMT" http.response.header.last_modified="Fri, 11 Jul 2025 06:59:33 GMT" http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.body="[Redacted: 295.3 KB (302,344 bytes), Type: application/json]" http.duration=44 http.status_code=206 http.response.header.x_xss_protection="1; mode=block" http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.x_ratelimit_limit=57 http.response.header.accept_ranges=bytes http.response.header.x_content_type_options=nosniff http.response.header.x_amz_request_id=1851203F39F2C691 http.response_content_length=302344 http.response.header.x_ratelimit_remaining=57 http.response.header.server=MinIO http.response.header.etag="\"3e0e8e2a258bf09d9aa392de5b8718fc\"" http.response.header.content_range="bytes 0-302343/302344" http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.content_type=application/json +2025-07-11T08:59:45.972+0200 [WARN] backend-s3: Response has no supported checksum. Not validating response payload.: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=0f21c396-428e-091b-7e9a-c4a1cb3487c2 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T08:59:46.102+0200 [DEBUG] Config.VerifyDependencySelections: skipping registry.terraform.io/hashicorp/helm because it's overridden by a special configuration setting +2025-07-11T08:59:46.102+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:46.102+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:46.114+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:59:46.114+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=974388 +2025-07-11T08:59:46.114+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:59:46.120+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:59:46.120+0200" +2025-07-11T08:59:46.148+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:46.148+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin1713644970 network=unix timestamp="2025-07-11T08:59:46.148+0200" +2025-07-11T08:59:46.162+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:46.163+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=974388 +2025-07-11T08:59:46.163+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:46.163+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:46.163+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:46.167+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 args=[".terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2"] +2025-07-11T08:59:46.167+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 pid=974407 +2025-07-11T08:59:46.167+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 +2025-07-11T08:59:46.190+0200 [INFO] provider.terraform-provider-argocd_v7.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:46.190+0200" +2025-07-11T08:59:46.201+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:46.201+0200 [DEBUG] provider.terraform-provider-argocd_v7.0.2: plugin address: address=/tmp/plugin824561416 network=unix timestamp="2025-07-11T08:59:46.201+0200" +2025-07-11T08:59:46.227+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:46.229+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/argoproj-labs/argocd/7.0.2/linux_amd64/terraform-provider-argocd_v7.0.2 id=974407 +2025-07-11T08:59:46.229+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:46.229+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:46.229+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:46.234+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5"] +2025-07-11T08:59:46.234+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 pid=974427 +2025-07-11T08:59:46.234+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 +2025-07-11T08:59:46.237+0200 [INFO] provider.terraform-provider-external_v2.3.5_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:46.237+0200" +2025-07-11T08:59:46.248+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:46.248+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: plugin address: address=/tmp/plugin233200307 network=unix timestamp="2025-07-11T08:59:46.248+0200" +2025-07-11T08:59:46.257+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:59:46.257+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:46.258+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 id=974427 +2025-07-11T08:59:46.258+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:46.258+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:46.258+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:46.262+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:59:46.262+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=974437 +2025-07-11T08:59:46.262+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:59:46.276+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:46.276+0200" +2025-07-11T08:59:46.287+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin4153097099 network=unix timestamp="2025-07-11T08:59:46.287+0200" +2025-07-11T08:59:46.287+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:46.297+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:59:46.297+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:46.300+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=974437 +2025-07-11T08:59:46.300+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:46.300+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:46.300+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:46.304+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:59:46.304+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=974451 +2025-07-11T08:59:46.304+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:59:46.323+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:46.323+0200" +2025-07-11T08:59:46.331+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:46.331+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: network=unix address=/tmp/plugin3129352028 timestamp="2025-07-11T08:59:46.331+0200" +2025-07-11T08:59:46.378+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:46.380+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=974451 +2025-07-11T08:59:46.380+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:46.380+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:46.380+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:46.385+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5"] +2025-07-11T08:59:46.385+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 pid=974471 +2025-07-11T08:59:46.385+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 +2025-07-11T08:59:46.388+0200 [INFO] provider.terraform-provider-local_v2.5.3_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:46.388+0200" +2025-07-11T08:59:46.399+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:46.399+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: plugin address: address=/tmp/plugin3059152300 network=unix timestamp="2025-07-11T08:59:46.399+0200" +2025-07-11T08:59:46.408+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:59:46.408+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:46.409+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 id=974471 +2025-07-11T08:59:46.409+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:46.409+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:46.409+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:46.414+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5"] +2025-07-11T08:59:46.414+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 pid=974480 +2025-07-11T08:59:46.414+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 +2025-07-11T08:59:46.416+0200 [INFO] provider.terraform-provider-null_v3.2.4_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:46.416+0200" +2025-07-11T08:59:46.429+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:46.429+0200 [DEBUG] provider.terraform-provider-null_v3.2.4_x5: plugin address: address=/tmp/plugin1136600783 network=unix timestamp="2025-07-11T08:59:46.428+0200" +2025-07-11T08:59:46.437+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:59:46.437+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:46.438+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 id=974480 +2025-07-11T08:59:46.438+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:46.438+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:46.438+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:46.443+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5"] +2025-07-11T08:59:46.443+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 pid=974489 +2025-07-11T08:59:46.443+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 +2025-07-11T08:59:46.445+0200 [INFO] provider.terraform-provider-random_v3.7.2_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:46.445+0200" +2025-07-11T08:59:46.457+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:46.457+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: plugin address: address=/tmp/plugin4090114273 network=unix timestamp="2025-07-11T08:59:46.457+0200" +2025-07-11T08:59:46.466+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:59:46.466+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:46.467+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 id=974489 +2025-07-11T08:59:46.467+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:46.467+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:46.467+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:46.472+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/vault/5.1.0/linux_amd64/terraform-provider-vault_v5.1.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/vault/5.1.0/linux_amd64/terraform-provider-vault_v5.1.0_x5"] +2025-07-11T08:59:46.472+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/vault/5.1.0/linux_amd64/terraform-provider-vault_v5.1.0_x5 pid=974498 +2025-07-11T08:59:46.472+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/vault/5.1.0/linux_amd64/terraform-provider-vault_v5.1.0_x5 +2025-07-11T08:59:46.481+0200 [INFO] provider.terraform-provider-vault_v5.1.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:46.481+0200" +2025-07-11T08:59:46.494+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:46.494+0200 [DEBUG] provider.terraform-provider-vault_v5.1.0_x5: plugin address: address=/tmp/plugin1360387232 network=unix timestamp="2025-07-11T08:59:46.494+0200" +2025-07-11T08:59:46.523+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:46.525+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/vault/5.1.0/linux_amd64/terraform-provider-vault_v5.1.0_x5 id=974498 +2025-07-11T08:59:46.525+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:46.525+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:46.525+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:46.529+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 args=[".terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1"] +2025-07-11T08:59:46.529+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 pid=974517 +2025-07-11T08:59:46.529+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 +2025-07-11T08:59:46.531+0200 [INFO] provider.terraform-provider-slugify_v0.1.1: configuring server automatic mTLS: timestamp="2025-07-11T08:59:46.531+0200" +2025-07-11T08:59:46.543+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:46.543+0200 [DEBUG] provider.terraform-provider-slugify_v0.1.1: plugin address: address=/tmp/plugin3549051158 network=unix timestamp="2025-07-11T08:59:46.543+0200" +2025-07-11T08:59:46.551+0200 [DEBUG] No provider meta schema returned +2025-07-11T08:59:46.551+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:46.552+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 id=974517 +2025-07-11T08:59:46.552+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:46.552+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:46.552+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:46.556+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:59:46.556+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=974526 +2025-07-11T08:59:46.556+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:59:46.564+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:46.564+0200" +2025-07-11T08:59:46.576+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:46.576+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin3862096111 network=unix timestamp="2025-07-11T08:59:46.576+0200" +2025-07-11T08:59:46.588+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:46.589+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=974526 +2025-07-11T08:59:46.589+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:46.589+0200 [DEBUG] Building and walking validate graph +2025-07-11T08:59:46.599+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/zitadel/zitadel"], implied first by module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default +2025-07-11T08:59:46.599+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/random"], implied first by module.redis.random_password.redis +2025-07-11T08:59:46.599+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/local"], implied first by module.zitadel.local_file.zitadel_jwt_profile_file +2025-07-11T08:59:46.599+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/null"], implied first by module.tenant-365zon.module.minio.null_resource.health_check +2025-07-11T08:59:46.599+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/external"], implied first by module.argocd.data.external.processed_values +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.monitoring.random_password.grafana_admin_password" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.argocd.data.kubernetes_secret.bridge-tls" (*terraform.NodeValidatableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.minio.helm_release.minio" (*terraform.NodeValidatableResource) needs module.minio.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_namespace.postgresql" (*terraform.NodeValidatableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.zitadel.random_password.zitadel_masterkey" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth" (*terraform.NodeValidatableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_namespace.zitadel" (*terraform.NodeValidatableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay" (*terraform.NodeValidatableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_user_password" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.argocd.helm_release.argocd" (*terraform.NodeValidatableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_secret.redis" (*terraform.NodeValidatableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default" (*terraform.NodeValidatableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.storage" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.redis.random_password.redis" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_secret.zitadel" (*terraform.NodeValidatableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_secret.postgresql_auth" (*terraform.NodeValidatableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_secret.argocd-tls" (*terraform.NodeValidatableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay" (*terraform.NodeValidatableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_secret.mongodb_auth" (*terraform.NodeValidatableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay" (*terraform.NodeValidatableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_namespace.tenant" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay" (*terraform.NodeValidatableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.argocd.data.external.processed_values" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/external"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_namespace.mongodb" (*terraform.NodeValidatableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "data.minio_s3_object.k8s_yaml" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_root_password" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config" (*terraform.NodeValidatableResource) needs module.cluster-init.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default" (*terraform.NodeValidatableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn" (*terraform.NodeValidatableResource) needs module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.random_password.password" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.null_resource.health_check" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/null"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.monitoring.helm_release.kube_prometheus_stack" (*terraform.NodeValidatableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_root_password" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.postgresql.helm_release.postgresql" (*terraform.NodeValidatableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.random_password.tenant" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay" (*terraform.NodeValidatableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.argocd.random_password.admin_password" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default" (*terraform.NodeValidatableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default" (*terraform.NodeValidatableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.600+0200 [DEBUG] ProviderTransformer: "module.zitadel.helm_release.zitadel" (*terraform.NodeValidatableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/local"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_namespace.monitoring" (*terraform.NodeValidatableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.kubernetes_job.create-tenant" (*terraform.NodeValidatableResource) needs module.zitadel-db.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.redis.helm_release.redis" (*terraform.NodeValidatableResource) needs module.redis.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.helm_release.rabbitmq" (*terraform.NodeValidatableResource) needs module.rabbitmq.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_replica_set_key" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_namespace.redis" (*terraform.NodeValidatableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_access_key" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.mongodb.helm_release.mongodb" (*terraform.NodeValidatableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default" (*terraform.NodeValidatableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin" (*terraform.NodeValidatableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_secret_key" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_namespace.argocd" (*terraform.NodeValidatableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay" (*terraform.NodeValidatableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default" (*terraform.NodeValidatableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.601+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_action.groups-claim" (*terraform.NodeValidatableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.602+0200 [DEBUG] pruning unused module.postgresql.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:59:46.602+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:46.602+0200 [DEBUG] pruning unused module.mongodb.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:59:46.602+0200 [DEBUG] pruning unused module.cluster-init.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:46.602+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/vault"] +2025-07-11T08:59:46.602+0200 [DEBUG] pruning unused module.zitadel-db.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:46.602+0200 [DEBUG] pruning unused module.rabbitmq.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.602+0200 [DEBUG] pruning unused module.argocd.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:59:46.602+0200 [DEBUG] pruning unused module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.602+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.602+0200 [DEBUG] pruning unused module.tenant-365zon.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:46.602+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:46.602+0200 [DEBUG] pruning unused module.minio.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.602+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:46.602+0200 [DEBUG] pruning unused provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.scopes (expand)" references: [] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (expand)" references: [] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)" references: [] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_config (expand)" references: [module.tenant-365zon.var.k8s_config_yaml (expand)] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_host (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.minio.local.admin_service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.admin_server_dns (expand) module.minio.var.admin_server_dns (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (close)" references: [] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.zitadel (expand)" references: [] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.enabled (expand)" references: [] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.access_key (expand)" references: [module.tenant-365zon.var.minio_access_key (expand)] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.region (expand)" references: [] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.name (expand)" references: [] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (expand)" references: [] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.installed (expand)" references: [module.zitadel-db.kubernetes_job.create-tenant] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.admin_password (expand)" references: [module.argocd.random_password.admin_password] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:46.612+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.mongodb_connection_string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_secret_key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "local.node_count (expand)" references: [] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_admin_uri (expand)" references: [module.minio.local.admin_service_uri (expand)] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.grafana_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.null_resource.health_check" references: [module.tenant-365zon.module.minio.var.wait_on (expand) module.tenant-365zon.module.minio.var.server (expand)] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.wait_on (expand)" references: [module.postgresql.output.installed (expand)] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.logoutSuffix (expand)" references: [] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (close)" references: [] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (close)" references: [] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.mongodb (expand)" references: [] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand)] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_username (expand)" references: [] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (close)" references: [] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (expand)" references: [] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (close)" references: [] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_redirect_uri (expand)" references: [module.zitadel.output.server (expand) module.zitadel-argocd.output.logoutSuffix (expand)] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.namespace (expand)" references: [] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_secret_key (expand)" references: [module.tenant-365zon.module.minio.output.secret_key (expand)] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.prometheus_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (close)" references: [] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (expand)" references: [] +2025-07-11T08:59:46.613+0200 [DEBUG] ReferenceTransformer: "module.monitoring (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.kubernetes_job.create-tenant" references: [module.zitadel-db.var.wait_on (expand) module.zitadel-db.var.enabled (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.namespace (expand) module.zitadel-db.var.host (expand) module.zitadel-db.var.root_username (expand) module.zitadel-db.var.root_password (expand) module.zitadel-db.var.root_database (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.name (expand) module.zitadel-db.random_password.tenant] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.minio.var.replicas (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.server_dns (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.database (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (close)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.namespace (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.application_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (close)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings" references: [module.tenant-365zon.var.mongodb_connection_string (expand) module.tenant-365zon.var.rabbitmq_connection_string (expand) module.tenant-365zon.kubernetes_namespace.tenant] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.name (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.provider[\"registry.terraform.io/aminueza/minio\"]" references: [module.tenant-365zon.module.minio.var.secret_key (expand) module.tenant-365zon.module.minio.var.region (expand) module.tenant-365zon.module.minio.var.server (expand) module.tenant-365zon.module.minio.var.access_key (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_secret (expand)" references: [module.zitadel-argocd.output.client_secret (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.minio.var.storageSize (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.replicas (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/null\"]" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (close)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (close)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.installed (expand)" references: [module.rabbitmq.helm_release.rabbitmq] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.service_name (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.minio.var.service_name (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.wait_on (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "output.minio-root-secret-key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.redis (close)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.redis.helm_release.redis" references: [module.redis.var.wait_on (expand) module.redis.kubernetes_namespace.redis module.redis.var.architecture (expand) module.redis.var.architecture (validation)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.minio.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.job_name (expand)" references: [module.zitadel-db.var.enabled (expand) module.zitadel-db.kubernetes_job.create-tenant] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_url (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_password (expand)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_namespace.zitadel" references: [module.zitadel.var.enabled (expand) module.zitadel.var.namespace (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_uri (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:59:46.614+0200 [DEBUG] ReferenceTransformer: "module.minio.var.ingressClass (expand)" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "local.k8s_config (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default" references: [module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default" references: [module.zitadel-argocd.module.zitadel_project.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project.var.name (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.name (expand)" references: [module.zitadel-argocd.var.name (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.wait_on (expand)" references: [module.minio.output.installed (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.password (expand)" references: [module.postgresql.random_password.postgresql_user_password] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_host (expand)" references: [module.postgresql.local.k8s_config (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.argocd.random_password.admin_password" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay module.tenant-365zon.module.minio.minio_iam_policy.overlay module.tenant-365zon.module.minio.minio_iam_user.overlay module.tenant-365zon.module.minio.minio_iam_policy.overlay] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "var.region" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.external.processed_values" references: [module.argocd.local.service_uri (expand) module.argocd.var.server_dns (expand) module.argocd.local.grpc_service_uri (expand) module.argocd.var.redis_db_start_index (expand) module.argocd.var.redis_password (expand) module.argocd.var.oauth_uri (expand) module.argocd.var.oauth_issuer (expand) module.argocd.var.oauth_client_id (expand) module.argocd.var.oauth_client_secret (expand) module.argocd.var.oauth_redirect_uri (expand) module.argocd.var.tls (expand) module.argocd.var.ingressClass (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.databases (expand)" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_auth (expand)" references: [module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_user_password" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.minio.var.mode (expand)" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.minio.local.service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.tenant-365zon.local.k8s_host (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.redis.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.minio (close)" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.installed (expand)" references: [module.zitadel.helm_release.zitadel module.zitadel.local_file.zitadel_jwt_profile_file] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (close)" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.monitoring (close)" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "local.bridge_dns (expand)" references: [local.tld (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.minio.var.namespace (expand)" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default" references: [module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (expand)" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (expand)" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_namespace.argocd" references: [module.argocd.var.namespace (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_config (expand)" references: [module.argocd.var.k8s_config_yaml (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_db_start_index (expand)" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand)" references: [] +2025-07-11T08:59:46.615+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_namespace.tenant" references: [module.tenant-365zon.var.wait_on (expand) module.tenant-365zon.local.name (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.minio.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_auth (expand)" references: [module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)" references: [module.zitadel-bootstrap.var.domain (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.username (expand)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (validation)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-bootstrap.var.domain (expand) module.zitadel-bootstrap.var.jwt_profile_file (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin (expand)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "output.argocd-root-password (expand)" references: [module.argocd.output.admin_password (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (expand)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "local.k8s_config_yaml (expand)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.local.argocd_uri (expand)" references: [module.zitadel-argocd.var.argocd_service_domain (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel (close)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.namespace (expand)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_api_uri (expand)" references: [module.minio.output.minio_api_uri (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_config (expand)" references: [module.rabbitmq.var.k8s_config_yaml (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.output.installed (expand)" references: [module.cluster-init.module.longhorn.helm_release.longhorn] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.redis.output.password (expand)" references: [module.redis.random_password.redis] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.monitoring.random_password.grafana_admin_password" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_username (expand)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "local.k8s_auth (expand)" references: [local.k8s_config (expand) local.k8s_config (expand) local.k8s_config (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel.helm_release.zitadel" references: [module.zitadel.var.wait_on (expand) module.zitadel.kubernetes_secret.zitadel module.zitadel.var.enabled (expand) module.zitadel.local.service_uri (expand) module.zitadel.var.database (expand) module.zitadel.var.database_username (expand) module.zitadel.var.database_password (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.database_root_username (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.display_on_homepage (expand) module.zitadel.var.ingressClass (expand) module.zitadel.kubernetes_namespace.zitadel] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.service_uri (expand)" references: [module.monitoring.var.service_name (expand) module.monitoring.var.server_dns (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_auth (expand)" references: [module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.minio.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.service_name (expand)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_config (expand)" references: [module.zitadel-bootstrap.var.k8s_config_yaml (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_iam_user.overlay] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay" references: [module.tenant-365zon.module.minio.null_resource.health_check module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_config (expand)" references: [module.redis.var.k8s_config_yaml (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default" references: [module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.email (expand) module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.secret_key (expand)" references: [module.tenant-365zon.var.minio_secret_key (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.cluster-init.module.longhorn.local.k8s_host (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.alertmanager_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.tenant-365zon.var.domain (expand) module.tenant-365zon.var.jwt_profile_file (expand)] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (expand)" references: [] +2025-07-11T08:59:46.616+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info" references: [module.zitadel-argocd.zitadel_action.groups-claim module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_config (expand)" references: [module.mongodb.var.k8s_config_yaml (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.minio.output.secret_key (expand)" references: [module.minio.random_password.minio_secret_key] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.ingressClass (expand)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.secret_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.minio.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.minio.local.k8s_host (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_host (expand)" references: [module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.grpc_service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (close)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (expand)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (expand)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (close)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_host (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd" references: [module.argocd.var.wait_on (expand) module.argocd.kubernetes_secret.argocd-tls module.argocd.kubernetes_namespace.argocd module.argocd.data.external.processed_values module.argocd.random_password.admin_password] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.email (expand)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.wait_on (expand)" references: [module.cluster-init.var.wait_on (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.server (expand)" references: [module.tenant-365zon.var.minio_server (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.username (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "output.minio-secret-key (expand)" references: [module.tenant-365zon.output.minio_secret_key (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.admin_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.storage" references: [module.tenant-365zon.module.minio.output.access_key (expand) module.tenant-365zon.module.minio.output.secret_key (expand) module.tenant-365zon.var.minio_api_uri (expand) module.tenant-365zon.module.minio.output.bucket (expand) module.tenant-365zon.kubernetes_namespace.tenant] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.enabled (expand)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.replicas (expand)" references: [local.node_count (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)" references: [module.tenant-365zon.var.user_id (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.tld (expand)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn" references: [module.cluster-init.module.longhorn.var.wait_on (expand) module.cluster-init.module.longhorn.var.namespace (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_auth (expand)" references: [module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (expand)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/local\"]" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_namespace.mongodb" references: [module.mongodb.var.namespace (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.enabled (expand)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_host (expand)" references: [module.mongodb.local.k8s_config (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.redis.random_password.redis" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.output.installed (expand)" references: [module.cluster-init.module.longhorn.output.installed (expand) module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.mongodb (close)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_host (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (close)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack" references: [module.monitoring.var.wait_on (expand) module.monitoring.kubernetes_secret.prometheus_remote_write_auth module.monitoring.kubernetes_namespace.monitoring module.monitoring.var.remote_write_url (expand) module.monitoring.var.remote_read_url (expand) module.monitoring.random_password.grafana_admin_password] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "var.minio_server" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.server (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_secret.zitadel" references: [module.zitadel.var.enabled (expand) module.zitadel.random_password.zitadel_masterkey module.zitadel.kubernetes_namespace.zitadel] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.namespace (expand)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.helm_release.rabbitmq" references: [module.rabbitmq.random_password.password module.rabbitmq.var.wait_on (expand) module.rabbitmq.local.service_uri (expand) module.rabbitmq.var.admin (expand) module.rabbitmq.var.tls (expand) module.rabbitmq.var.ingressClass (expand) module.rabbitmq.var.replicas (expand) module.rabbitmq.random_password.password module.rabbitmq.var.namespace (expand)] +2025-07-11T08:59:46.617+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.user_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "output.minio-root-access-key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.service_name (expand)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default" references: [module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.connection_string (expand)" references: [module.rabbitmq.random_password.password module.rabbitmq.var.namespace (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (close)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_access_key (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (expand)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.usernames (expand)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.redis.var.wait_on (expand)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.password (expand)" references: [module.zitadel-db.random_password.tenant] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_bucket (expand)" references: [module.tenant-365zon.module.minio.output.bucket (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (close)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_replica_set_key" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.minio (expand)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_root_password" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.rabbitmq.local.k8s_host (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (close)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_id (expand)" references: [module.zitadel-argocd.output.client_id (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (close)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_config (expand)" references: [module.zitadel.var.k8s_config_yaml (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_secret_key (expand)" references: [module.minio.random_password.minio_secret_key] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (expand)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "var.bucket" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.host (expand)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_secret.mongodb_auth" references: [module.mongodb.var.wait_on (expand) module.mongodb.random_password.mongodb_root_password module.mongodb.random_password.mongodb_replica_set_key module.mongodb.kubernetes_namespace.mongodb] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.namespace (expand)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.owners (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "output.monitoring (expand)" references: [module.monitoring.output.access_instructions (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (expand)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.wait_on (expand)" references: [module.argocd.output.installed (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (close)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.access_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_secret.postgresql_auth" references: [module.postgresql.var.wait_on (expand) module.postgresql.var.enabled (expand) module.postgresql.random_password.postgresql_user_password module.postgresql.random_password.postgresql_root_password module.postgresql.kubernetes_namespace.postgresql] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_auth (expand)" references: [module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.installed (expand)" references: [module.postgresql.helm_release.postgresql] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (expand)" references: [] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_namespace.redis" references: [module.redis.var.namespace (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "local.k8s_host (expand)" references: [local.k8s_config (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_config (expand)" references: [module.zitadel-db.var.k8s_config_yaml (expand)] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:59:46.618+0200 [DEBUG] ReferenceTransformer: "output.rabbitmq-connection-string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.argocd (close)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_access_key" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_access_key (expand)" references: [module.minio.random_password.minio_access_key] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_host (expand)" references: [module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_config (expand)" references: [module.minio.var.k8s_config_yaml (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_auth (expand)" references: [module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.postgresql.helm_release.postgresql" references: [module.postgresql.var.wait_on (expand) module.postgresql.kubernetes_secret.postgresql_auth module.postgresql.var.enabled (expand) module.postgresql.kubernetes_namespace.postgresql module.postgresql.var.username (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin" references: [module.zitadel.helm_release.zitadel module.zitadel.var.namespace (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_server (expand)" references: [module.minio.output.minio_server (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.random_password.tenant" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin_server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.tls (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_host (expand)" references: [module.monitoring.local.k8s_config (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.bucket (expand)" references: [module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.service_uri (expand)" references: [module.rabbitmq.var.service_name (expand) module.rabbitmq.var.server_dns (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.redis.output.installed (expand)" references: [module.redis.helm_release.redis] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default" references: [module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file" references: [module.zitadel.data.kubernetes_secret.zitadel_admin] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.redis_db_next_start_index (expand)" references: [module.argocd.var.redis_db_start_index (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_secret.argocd-tls" references: [module.argocd.data.kubernetes_secret.bridge-tls module.argocd.data.kubernetes_secret.bridge-tls module.argocd.kubernetes_namespace.argocd] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_auth (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.redis (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.service_uri (expand)" references: [module.zitadel.var.service_name (expand) module.zitadel.var.server_dns (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_auth (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_config (expand)" references: [module.monitoring.var.k8s_config_yaml (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.enabled (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.argocd_service_domain (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_database (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.admin (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/external\"]" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.namespace (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.redis.var.namespace (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.postgresql (close)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "local.cluster_shortname (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "var.vault_token" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.namespace (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.wait_on (expand)" references: [] +2025-07-11T08:59:46.619+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)" references: [module.tenant-365zon.var.org_id (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.rabbitmq_connection_string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_host (expand)" references: [module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_host (expand)" references: [module.redis.local.k8s_config (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_secret_key" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_host (expand)" references: [module.zitadel.local.k8s_config (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_api_uri (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (close)" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "local.tld (expand)" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.random_password.password" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/aminueza/minio\"]" references: [var.region var.minio_server var.access_key var.secret_key] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "var.access_key" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.kubernetes_secret.bridge-tls" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.minio.helm_release.minio" references: [module.minio.random_password.minio_access_key module.minio.random_password.minio_secret_key module.minio.var.mode (expand) module.minio.var.replicas (expand) module.minio.var.replicas (expand) module.minio.var.storageSize (expand) module.minio.var.namespace (expand) module.minio.local.service_uri (expand) module.minio.local.admin_service_uri (expand) module.minio.var.admin (expand) module.minio.var.mode (expand) module.minio.var.tls (expand) module.minio.var.ingressClass (expand) module.minio.var.displayOnHomepage (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "output.mongodb-connection-string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_secret.redis" references: [module.redis.random_password.redis module.redis.kubernetes_namespace.redis] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "output.minio-access-key (expand)" references: [module.tenant-365zon.output.minio_access_key (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (close)" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.ingressClass (expand)" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.access_instructions (expand)" references: [module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.random_password.grafana_admin_password] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default" references: [module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_host (expand)" references: [module.minio.local.k8s_config (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.installed (expand)" references: [module.mongodb.helm_release.mongodb] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_password (expand)" references: [module.redis.output.password (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_config (expand)" references: [module.postgresql.var.k8s_config_yaml (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close)" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.postgresql (expand)" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_namespace.postgresql" references: [module.postgresql.var.enabled (expand) module.postgresql.var.namespace (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "var.secret_key" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_access_key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "local.cluster_dns (expand)" references: [local.cluster_shortname (expand) local.tld (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.wait_on (expand)" references: [module.zitadel-db.output.installed (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.wait_on (expand)" references: [module.zitadel-argocd.output.installed (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_config (expand)" references: [module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_host (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand)" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.name (expand)" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.connection_string (expand)" references: [module.mongodb.random_password.mongodb_root_password module.mongodb.var.replicas (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.idp_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (expand)" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "var.endpoints" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand)" references: [] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:59:46.620+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.org_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.ingressClass (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_action.groups-claim" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_read_url (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_auth (expand)" references: [module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay" references: [module.tenant-365zon.module.minio.null_resource.health_check module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.root_password (expand)" references: [module.postgresql.random_password.postgresql_root_password] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "data.minio_s3_object.k8s_yaml" references: [var.bucket] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.display_on_homepage (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.uri (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-argocd.var.domain (expand) module.zitadel-argocd.var.jwt_profile_file (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel.random_password.zitadel_masterkey" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.tls (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_config (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.ingressClass (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (close)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.namespace (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.name (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.service_name (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.installed (expand)" references: [module.argocd.helm_release.argocd] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth" references: [module.monitoring.var.remote_write_username (expand) module.monitoring.var.remote_write_password (expand) module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_auth (expand)" references: [module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_auth (expand)" references: [module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_issuer (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_server (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (close)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_auth (expand)" references: [module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_host (expand)" references: [module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_username (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)" references: [module.tenant-365zon.kubernetes_namespace.tenant] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.minio.output.installed (expand)" references: [module.minio.helm_release.minio] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (close)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (expand)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_auth (expand)" references: [module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.jwt_profile_file (expand)" references: [module.zitadel.local_file.zitadel_jwt_profile_file] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (close)" references: [] +2025-07-11T08:59:46.621+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_password (expand)" references: [module.zitadel-db.output.password (expand)] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.mongodb.helm_release.mongodb" references: [module.mongodb.var.wait_on (expand) module.mongodb.kubernetes_secret.mongodb_auth module.mongodb.kubernetes_namespace.mongodb module.mongodb.var.usernames (expand) module.mongodb.var.databases (expand) module.mongodb.var.replicas (expand)] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring" references: [] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "var.vault_addr" references: [] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.argocd (expand)" references: [] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (expand)" references: [] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_root_password" references: [] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay module.tenant-365zon.module.minio.minio_s3_bucket.overlay] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)" references: [module.tenant-365zon.local.name (expand)] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (expand)" references: [] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.minio.var.displayOnHomepage (expand)" references: [] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.wait_on (expand)" references: [] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_host (expand)" references: [module.argocd.local.k8s_config (expand)] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_username (expand)" references: [] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.minio.output.access_key (expand)" references: [module.minio.random_password.minio_access_key] +2025-07-11T08:59:46.622+0200 [DEBUG] ReferenceTransformer: "module.minio.var.tls (expand)" references: [] +2025-07-11T08:59:46.689+0200 [DEBUG] Starting graph walk: walkValidate +2025-07-11T08:59:46.692+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:46.692+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:46.698+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5"] +2025-07-11T08:59:46.698+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 pid=974539 +2025-07-11T08:59:46.698+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 +2025-07-11T08:59:46.701+0200 [INFO] provider.terraform-provider-null_v3.2.4_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:46.701+0200" +2025-07-11T08:59:46.713+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:46.713+0200 [DEBUG] provider.terraform-provider-null_v3.2.4_x5: plugin address: network=unix address=/tmp/plugin754085771 timestamp="2025-07-11T08:59:46.713+0200" +2025-07-11T08:59:46.720+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:46.720+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:46.725+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:59:46.725+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=974548 +2025-07-11T08:59:46.725+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:59:46.739+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:46.739+0200" +2025-07-11T08:59:46.751+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:46.751+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin1618205550 network=unix timestamp="2025-07-11T08:59:46.751+0200" +2025-07-11T08:59:46.759+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:46.759+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:46.763+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5"] +2025-07-11T08:59:46.763+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 pid=974561 +2025-07-11T08:59:46.763+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 +2025-07-11T08:59:46.766+0200 [INFO] provider.terraform-provider-random_v3.7.2_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:46.766+0200" +2025-07-11T08:59:46.777+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:46.777+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: plugin address: address=/tmp/plugin48907537 network=unix timestamp="2025-07-11T08:59:46.777+0200" +2025-07-11T08:59:46.786+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:46.786+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:46.790+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5"] +2025-07-11T08:59:46.791+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 pid=974570 +2025-07-11T08:59:46.791+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 +2025-07-11T08:59:46.793+0200 [INFO] provider.terraform-provider-external_v2.3.5_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:46.793+0200" +2025-07-11T08:59:46.805+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:46.805+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: plugin address: address=/tmp/plugin4227057506 network=unix timestamp="2025-07-11T08:59:46.805+0200" +2025-07-11T08:59:46.812+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:46.812+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:46.812+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:46.817+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:59:46.817+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=974579 +2025-07-11T08:59:46.817+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:59:46.824+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:59:46.824+0200" +2025-07-11T08:59:46.851+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:46.851+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin3833735172 network=unix timestamp="2025-07-11T08:59:46.851+0200" +2025-07-11T08:59:46.862+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:46.862+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:46.867+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:59:46.867+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=974590 +2025-07-11T08:59:46.867+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:59:46.881+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:46.880+0200" +2025-07-11T08:59:46.892+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin2127169835 network=unix timestamp="2025-07-11T08:59:46.892+0200" +2025-07-11T08:59:46.892+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:46.902+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:46.902+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:46.902+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:46.908+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5"] +2025-07-11T08:59:46.908+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 pid=974604 +2025-07-11T08:59:46.908+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 +2025-07-11T08:59:46.910+0200 [INFO] provider.terraform-provider-local_v2.5.3_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:46.910+0200" +2025-07-11T08:59:46.922+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:46.922+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: plugin address: address=/tmp/plugin3052025587 network=unix timestamp="2025-07-11T08:59:46.922+0200" +2025-07-11T08:59:46.931+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:46.931+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:46.936+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:59:46.936+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=974612 +2025-07-11T08:59:46.936+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:59:46.955+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:46.955+0200" +2025-07-11T08:59:46.963+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:46.963+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin562817946 network=unix timestamp="2025-07-11T08:59:46.963+0200" +2025-07-11T08:59:46.971+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:46.971+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:46.975+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:59:46.975+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=974634 +2025-07-11T08:59:46.975+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:59:46.996+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:46.996+0200" +2025-07-11T08:59:47.007+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2648840367 network=unix timestamp="2025-07-11T08:59:47.006+0200" +2025-07-11T08:59:47.007+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:47.015+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.015+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.020+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:59:47.020+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=974650 +2025-07-11T08:59:47.020+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:59:47.034+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.034+0200" +2025-07-11T08:59:47.046+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:47.046+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin2450559574 network=unix timestamp="2025-07-11T08:59:47.046+0200" +2025-07-11T08:59:47.055+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.055+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.055+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:47.059+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:59:47.060+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=974663 +2025-07-11T08:59:47.060+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:59:47.078+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.078+0200" +2025-07-11T08:59:47.087+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:47.087+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: network=unix address=/tmp/plugin258953158 timestamp="2025-07-11T08:59:47.087+0200" +2025-07-11T08:59:47.094+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.094+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.099+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:59:47.099+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=974679 +2025-07-11T08:59:47.099+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:59:47.113+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.113+0200" +2025-07-11T08:59:47.125+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:47.125+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin2603022124 network=unix timestamp="2025-07-11T08:59:47.124+0200" +2025-07-11T08:59:47.133+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.133+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.138+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:59:47.138+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=974697 +2025-07-11T08:59:47.138+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:59:47.156+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.156+0200" +2025-07-11T08:59:47.164+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:47.164+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2682636591 network=unix timestamp="2025-07-11T08:59:47.164+0200" +2025-07-11T08:59:47.172+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.172+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:47.172+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.177+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:59:47.177+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=974713 +2025-07-11T08:59:47.177+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:59:47.196+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.196+0200" +2025-07-11T08:59:47.204+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:47.204+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1001500804 network=unix timestamp="2025-07-11T08:59:47.204+0200" +2025-07-11T08:59:47.212+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.212+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.216+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:59:47.216+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=974731 +2025-07-11T08:59:47.216+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:59:47.229+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.229+0200" +2025-07-11T08:59:47.241+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:47.241+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin2282989086 network=unix timestamp="2025-07-11T08:59:47.241+0200" +2025-07-11T08:59:47.249+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:47.249+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.249+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.253+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:59:47.253+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=974744 +2025-07-11T08:59:47.253+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:59:47.266+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.265+0200" +2025-07-11T08:59:47.277+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:47.277+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin646429296 network=unix timestamp="2025-07-11T08:59:47.277+0200" +2025-07-11T08:59:47.285+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.285+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.285+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:47.290+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:59:47.290+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=974758 +2025-07-11T08:59:47.290+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:59:47.308+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.308+0200" +2025-07-11T08:59:47.316+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin565996808 network=unix timestamp="2025-07-11T08:59:47.316+0200" +2025-07-11T08:59:47.316+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:47.324+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.324+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.329+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:59:47.330+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=974780 +2025-07-11T08:59:47.330+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:59:47.349+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.349+0200" +2025-07-11T08:59:47.357+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:47.357+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2936531023 network=unix timestamp="2025-07-11T08:59:47.357+0200" +2025-07-11T08:59:47.364+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.364+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.369+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:59:47.369+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=974797 +2025-07-11T08:59:47.369+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:59:47.382+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.382+0200" +2025-07-11T08:59:47.394+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:47.394+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin3401043739 network=unix timestamp="2025-07-11T08:59:47.394+0200" +2025-07-11T08:59:47.402+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.402+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.407+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:59:47.408+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=974812 +2025-07-11T08:59:47.408+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:59:47.421+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.421+0200" +2025-07-11T08:59:47.432+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:47.432+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin1797471107 network=unix timestamp="2025-07-11T08:59:47.432+0200" +2025-07-11T08:59:47.440+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:47.440+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.440+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.440+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:47.445+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:59:47.445+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=974825 +2025-07-11T08:59:47.445+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:59:47.463+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.463+0200" +2025-07-11T08:59:47.471+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:47.471+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin4217738787 network=unix timestamp="2025-07-11T08:59:47.471+0200" +2025-07-11T08:59:47.480+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.480+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.485+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:59:47.485+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=974844 +2025-07-11T08:59:47.485+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:59:47.504+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.504+0200" +2025-07-11T08:59:47.513+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:47.513+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin4077311531 network=unix timestamp="2025-07-11T08:59:47.513+0200" +2025-07-11T08:59:47.520+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.520+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.526+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:59:47.526+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=974860 +2025-07-11T08:59:47.526+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:59:47.540+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.540+0200" +2025-07-11T08:59:47.551+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:47.552+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: network=unix address=/tmp/plugin1618057716 timestamp="2025-07-11T08:59:47.551+0200" +2025-07-11T08:59:47.559+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:47.560+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:47.560+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.561+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 id=974561 +2025-07-11T08:59:47.561+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.561+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:47.562+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.563+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=974579 +2025-07-11T08:59:47.563+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.564+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.565+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=974758 +2025-07-11T08:59:47.565+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.565+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:47.566+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.566+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=974634 +2025-07-11T08:59:47.566+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.567+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:47.567+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.569+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=974679 +2025-07-11T08:59:47.569+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.569+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.570+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:47.570+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=974612 +2025-07-11T08:59:47.570+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.571+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.572+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=974780 +2025-07-11T08:59:47.572+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.572+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.573+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=974663 +2025-07-11T08:59:47.573+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.574+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.576+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=974548 +2025-07-11T08:59:47.576+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.576+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.577+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 id=974539 +2025-07-11T08:59:47.577+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.577+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.577+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.581+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:59:47.581+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=974881 +2025-07-11T08:59:47.581+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:59:47.588+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.588+0200" +2025-07-11T08:59:47.615+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:47.615+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin2790233488 network=unix timestamp="2025-07-11T08:59:47.615+0200" +2025-07-11T08:59:47.627+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.629+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=974860 +2025-07-11T08:59:47.629+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.629+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.629+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:47.631+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=974590 +2025-07-11T08:59:47.631+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.631+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.633+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=974697 +2025-07-11T08:59:47.633+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.633+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:47.633+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.635+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=974731 +2025-07-11T08:59:47.635+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.636+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.639+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=974744 +2025-07-11T08:59:47.639+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.639+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.640+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=974844 +2025-07-11T08:59:47.640+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.640+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:47.641+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.642+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=974881 +2025-07-11T08:59:47.642+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.643+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.644+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=974812 +2025-07-11T08:59:47.644+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.644+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.645+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=974825 +2025-07-11T08:59:47.645+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.647+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.648+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 id=974604 +2025-07-11T08:59:47.648+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.648+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.648+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.652+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:59:47.653+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=974897 +2025-07-11T08:59:47.653+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:59:47.660+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.660+0200" +2025-07-11T08:59:47.672+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:47.672+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin1766578538 network=unix timestamp="2025-07-11T08:59:47.672+0200" +2025-07-11T08:59:47.680+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.680+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.685+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=eb72328f-057b-2ffd-095e-6c5515014a94 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T08:59:47.685+0200" +2025-07-11T08:59:47.685+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=eb72328f-057b-2ffd-095e-6c5515014a94 tf_rpc=ValidateProviderConfig @module=sdk.framework tf_mux_provider="*proto6server.Server" @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=insecure timestamp="2025-07-11T08:59:47.685+0200" +2025-07-11T08:59:47.685+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=eb72328f-057b-2ffd-095e-6c5515014a94 @module=sdk.framework tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:59:47.685+0200" +2025-07-11T08:59:47.685+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_req_id=eb72328f-057b-2ffd-095e-6c5515014a94 tf_rpc=ValidateProviderConfig @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:59:47.685+0200" +2025-07-11T08:59:47.685+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=eb72328f-057b-2ffd-095e-6c5515014a94 tf_attribute_path=jwt_profile_file tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:59:47.685+0200" +2025-07-11T08:59:47.685+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:59:47.685+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=jwt_profile_file tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=eb72328f-057b-2ffd-095e-6c5515014a94 tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:59:47.685+0200" +2025-07-11T08:59:47.685+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=eb72328f-057b-2ffd-095e-6c5515014a94 tf_attribute_path=jwt_profile_json tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:59:47.685+0200" +2025-07-11T08:59:47.685+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=jwt_profile_json tf_rpc=ValidateProviderConfig @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=eb72328f-057b-2ffd-095e-6c5515014a94 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 timestamp="2025-07-11T08:59:47.685+0200" +2025-07-11T08:59:47.685+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=974913 +2025-07-11T08:59:47.685+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=eb72328f-057b-2ffd-095e-6c5515014a94 @module=sdk.framework tf_attribute_path=port tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:59:47.685+0200" +2025-07-11T08:59:47.685+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:59:47.685+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_req_id=eb72328f-057b-2ffd-095e-6c5515014a94 tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=port tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 timestamp="2025-07-11T08:59:47.685+0200" +2025-07-11T08:59:47.685+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_req_id=eb72328f-057b-2ffd-095e-6c5515014a94 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:59:47.685+0200" +2025-07-11T08:59:47.685+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=eb72328f-057b-2ffd-095e-6c5515014a94 tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 timestamp="2025-07-11T08:59:47.685+0200" +2025-07-11T08:59:47.693+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.693+0200" +2025-07-11T08:59:47.705+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:47.705+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin2147209238 network=unix timestamp="2025-07-11T08:59:47.705+0200" +2025-07-11T08:59:47.712+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.712+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.717+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T08:59:47.717+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=974926 +2025-07-11T08:59:47.717+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T08:59:47.725+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.725+0200" +2025-07-11T08:59:47.736+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:47.736+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin1328875817 network=unix timestamp="2025-07-11T08:59:47.736+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_req_id=57a55585-d4e1-23a3-5e2c-7516bcddc91a tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=domain tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=domain tf_mux_provider="*proto6server.Server" @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=57a55585-d4e1-23a3-5e2c-7516bcddc91a tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=insecure tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=57a55585-d4e1-23a3-5e2c-7516bcddc91a @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_req_id=57a55585-d4e1-23a3-5e2c-7516bcddc91a @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig tf_attribute_path=insecure timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_mux_provider="*proto6server.Server" @module=sdk.framework tf_attribute_path=token tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=57a55585-d4e1-23a3-5e2c-7516bcddc91a tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_req_id=57a55585-d4e1-23a3-5e2c-7516bcddc91a tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_attribute_path=token timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=57a55585-d4e1-23a3-5e2c-7516bcddc91a timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=57a55585-d4e1-23a3-5e2c-7516bcddc91a timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=jwt_profile_json tf_req_id=57a55585-d4e1-23a3-5e2c-7516bcddc91a tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=jwt_profile_json tf_req_id=57a55585-d4e1-23a3-5e2c-7516bcddc91a @module=sdk.framework tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=57a55585-d4e1-23a3-5e2c-7516bcddc91a tf_rpc=ValidateProviderConfig @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=port tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=port tf_req_id=57a55585-d4e1-23a3-5e2c-7516bcddc91a timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=fdff8160-9f0e-8b42-77b2-b56fd2c45d41 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=fdff8160-9f0e-8b42-77b2-b56fd2c45d41 @module=sdk.framework tf_attribute_path=port tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_req_id=fdff8160-9f0e-8b42-77b2-b56fd2c45d41 @module=sdk.framework timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_rpc=ValidateProviderConfig tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=fdff8160-9f0e-8b42-77b2-b56fd2c45d41 timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=insecure tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=fdff8160-9f0e-8b42-77b2-b56fd2c45d41 tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_req_id=fdff8160-9f0e-8b42-77b2-b56fd2c45d41 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=insecure tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=token tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=fdff8160-9f0e-8b42-77b2-b56fd2c45d41 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_req_id=fdff8160-9f0e-8b42-77b2-b56fd2c45d41 tf_rpc=ValidateProviderConfig @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=fdff8160-9f0e-8b42-77b2-b56fd2c45d41 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_req_id=fdff8160-9f0e-8b42-77b2-b56fd2c45d41 tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=fdff8160-9f0e-8b42-77b2-b56fd2c45d41 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_attribute_path=jwt_profile_json timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.751+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=fdff8160-9f0e-8b42-77b2-b56fd2c45d41 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=jwt_profile_json timestamp="2025-07-11T08:59:47.751+0200" +2025-07-11T08:59:47.755+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.756+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=974926 +2025-07-11T08:59:47.756+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.756+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.757+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=974913 +2025-07-11T08:59:47.757+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.758+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.759+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 id=974570 +2025-07-11T08:59:47.759+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.759+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:47.761+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.763+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=974650 +2025-07-11T08:59:47.763+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.763+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:47.766+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.768+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=974797 +2025-07-11T08:59:47.768+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.776+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.777+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=974897 +2025-07-11T08:59:47.777+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.777+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:47.779+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=974713 +2025-07-11T08:59:47.779+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:47.779+0200 [INFO] backend/local: apply calling Plan +2025-07-11T08:59:47.780+0200 [DEBUG] Building and walking plan graph for NormalMode +2025-07-11T08:59:47.789+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/random"], implied first by module.redis.random_password.redis (expand) +2025-07-11T08:59:47.789+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/zitadel/zitadel"], implied first by module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand) +2025-07-11T08:59:47.789+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/null"], implied first by module.tenant-365zon.module.minio.null_resource.health_check (expand) +2025-07-11T08:59:47.789+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/local"], implied first by module.zitadel.local_file.zitadel_jwt_profile_file (expand) +2025-07-11T08:59:47.789+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/external"], implied first by module.argocd.data.external.processed_values (expand) +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)" (*terraform.nodeExpandPlannableResource) needs module.cluster-init.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn (expand)" (*terraform.nodeExpandPlannableResource) needs module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.argocd.data.kubernetes_secret.bridge-tls (expand)" (*terraform.nodeExpandPlannableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.null_resource.health_check (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/null"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.monitoring.helm_release.kube_prometheus_stack (expand)" (*terraform.nodeExpandPlannableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.storage (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_namespace.tenant (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.minio.helm_release.minio (expand)" (*terraform.nodeExpandPlannableResource) needs module.minio.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_secret.redis (expand)" (*terraform.nodeExpandPlannableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.kubernetes_job.create-tenant (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-db.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_replica_set_key (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/local"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.zitadel.random_password.zitadel_masterkey (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_namespace.postgresql (expand)" (*terraform.nodeExpandPlannableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.postgresql.helm_release.postgresql (expand)" (*terraform.nodeExpandPlannableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:47.790+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_access_key (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.random_password.password (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.mongodb.helm_release.mongodb (expand)" (*terraform.nodeExpandPlannableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_secret.postgresql_auth (expand)" (*terraform.nodeExpandPlannableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_namespace.monitoring (expand)" (*terraform.nodeExpandPlannableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_secret.zitadel (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_secret_key (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.random_password.tenant (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_secret.argocd-tls (expand)" (*terraform.nodeExpandPlannableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_secret.mongodb_auth (expand)" (*terraform.nodeExpandPlannableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.zitadel.helm_release.zitadel (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.argocd.data.external.processed_values (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/external"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.argocd.random_password.admin_password (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_namespace.argocd (expand)" (*terraform.nodeExpandPlannableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_namespace.mongodb (expand)" (*terraform.nodeExpandPlannableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_action.groups-claim (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_root_password (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.redis.helm_release.redis (expand)" (*terraform.nodeExpandPlannableResource) needs module.redis.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_root_password (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.helm_release.rabbitmq (expand)" (*terraform.nodeExpandPlannableResource) needs module.rabbitmq.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_namespace.zitadel (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.argocd.helm_release.argocd (expand)" (*terraform.nodeExpandPlannableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand)" (*terraform.nodeExpandPlannableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_user_password (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "data.minio_s3_object.k8s_yaml (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_namespace.redis (expand)" (*terraform.nodeExpandPlannableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.monitoring.random_password.grafana_admin_password (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.redis.random_password.redis (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.791+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandPlannableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.792+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.792+0200 [DEBUG] pruning unused module.mongodb.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:59:47.792+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:47.792+0200 [DEBUG] pruning unused module.zitadel-db.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:47.792+0200 [DEBUG] pruning unused module.minio.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.792+0200 [DEBUG] pruning unused module.rabbitmq.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.792+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.792+0200 [DEBUG] pruning unused module.tenant-365zon.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:47.792+0200 [DEBUG] pruning unused module.cluster-init.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:47.792+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/vault"] +2025-07-11T08:59:47.792+0200 [DEBUG] pruning unused module.argocd.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:59:47.792+0200 [DEBUG] pruning unused module.postgresql.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T08:59:47.792+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T08:59:47.792+0200 [DEBUG] pruning unused module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T08:59:47.792+0200 [DEBUG] pruning unused provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_host (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (expand)" references: [] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.argocd_service_domain (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_password (expand)" references: [module.redis.output.password (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.minio.var.tls (expand)" references: [] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_auth (expand)" references: [module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand)" references: [] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_host (expand)" references: [module.argocd.local.k8s_config (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.redis.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)" references: [] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand)" references: [module.monitoring.var.remote_write_username (expand) module.monitoring.var.remote_write_password (expand) module.monitoring.kubernetes_namespace.monitoring (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.region (expand)" references: [] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_config (expand)" references: [module.postgresql.var.k8s_config_yaml (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.minio.output.secret_key (expand)" references: [module.minio.random_password.minio_secret_key (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "output.monitoring (expand)" references: [module.monitoring.output.access_instructions (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (close)" references: [] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.storage (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand) module.tenant-365zon.module.minio.output.secret_key (expand) module.tenant-365zon.var.minio_api_uri (expand) module.tenant-365zon.module.minio.output.bucket (expand) module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.name (expand)" references: [] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_auth (expand)" references: [module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)" references: [] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_server (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (close)" references: [] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings (expand)" references: [module.tenant-365zon.var.mongodb_connection_string (expand) module.tenant-365zon.var.rabbitmq_connection_string (expand) module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (expand)" references: [] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (expand)" references: [] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.wait_on (expand)" references: [module.argocd.output.installed (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_config (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_secret.mongodb_auth (expand)" references: [module.mongodb.var.wait_on (expand) module.mongodb.random_password.mongodb_root_password (expand) module.mongodb.random_password.mongodb_replica_set_key (expand) module.mongodb.kubernetes_namespace.mongodb (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.redis.random_password.redis (expand)" references: [] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "var.bucket" references: [] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.name (expand)" references: [module.zitadel-argocd.var.name (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)] +2025-07-11T08:59:47.804+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.application_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "data.minio_s3_object.k8s_yaml (expand)" references: [var.bucket] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.server (expand)" references: [module.tenant-365zon.var.minio_server (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.service_name (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_auth (expand)" references: [module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.mongodb.helm_release.mongodb (expand)" references: [module.mongodb.var.wait_on (expand) module.mongodb.kubernetes_secret.mongodb_auth (expand) module.mongodb.kubernetes_namespace.mongodb (expand) module.mongodb.var.usernames (expand) module.mongodb.var.databases (expand) module.mongodb.var.replicas (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_config (expand)" references: [module.rabbitmq.var.k8s_config_yaml (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.access_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)" references: [module.zitadel-argocd.module.zitadel_project.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand) module.zitadel-argocd.module.zitadel_project.var.name (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_namespace.tenant (expand)" references: [module.tenant-365zon.var.wait_on (expand) module.tenant-365zon.local.name (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.namespace (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.enabled (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.random_password.tenant (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.kubernetes_job.create-tenant (expand)" references: [module.zitadel-db.var.wait_on (expand) module.zitadel-db.var.enabled (expand) module.zitadel-db.var.namespace (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.host (expand) module.zitadel-db.var.root_username (expand) module.zitadel-db.var.root_password (expand) module.zitadel-db.var.root_database (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.name (expand) module.zitadel-db.random_password.tenant (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.namespace (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.minio.var.mode (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_username (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.usernames (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.namespace (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-argocd.var.domain (expand) module.zitadel-argocd.var.jwt_profile_file (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.job_name (expand)" references: [module.zitadel-db.var.enabled (expand) module.zitadel-db.kubernetes_job.create-tenant (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_admin_uri (expand)" references: [module.minio.local.admin_service_uri (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.email (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.alertmanager_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "output.minio-access-key (expand)" references: [module.tenant-365zon.output.minio_access_key (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (close)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.installed (expand)" references: [module.postgresql.helm_release.postgresql (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand) module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand) module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:59:47.805+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_namespace.redis (expand)" references: [module.redis.var.namespace (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.service_uri (expand)" references: [module.rabbitmq.var.service_name (expand) module.rabbitmq.var.server_dns (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (close)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (close)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_replica_set_key (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.name (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.idp_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (close)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.mongodb_connection_string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.argocd (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.replicas (expand)" references: [local.node_count (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_auth (expand)" references: [module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.uri (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel (close)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.tls (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_auth (expand)" references: [module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.minio.var.storageSize (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_access_key (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.root_password (expand)" references: [module.postgresql.random_password.postgresql_root_password (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.connection_string (expand)" references: [module.mongodb.random_password.mongodb_root_password (expand) module.mongodb.var.replicas (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_api_uri (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.service_name (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_config (expand)" references: [module.zitadel-bootstrap.var.k8s_config_yaml (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.redis_db_next_start_index (expand)" references: [module.argocd.var.redis_db_start_index (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.password (expand)" references: [module.postgresql.random_password.postgresql_user_password (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_read_url (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.database (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_host (expand)" references: [module.postgresql.local.k8s_config (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.password (expand)" references: [module.zitadel-db.random_password.tenant (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "output.minio-root-access-key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.mongodb (close)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.ingressClass (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.ingressClass (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.connection_string (expand)" references: [module.rabbitmq.random_password.password (expand) module.rabbitmq.var.namespace (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel.random_password.zitadel_masterkey (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_config (expand)" references: [module.zitadel.var.k8s_config_yaml (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "output.argocd-root-password (expand)" references: [module.argocd.output.admin_password (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.minio (close)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.mongodb (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.redis (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_secret.redis (expand)" references: [module.redis.random_password.redis (expand) module.redis.kubernetes_namespace.redis (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_username (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.minio.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_namespace.mongodb (expand)" references: [module.mongodb.var.namespace (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "local.cluster_dns (expand)" references: [local.cluster_shortname (expand) local.tld (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.output.installed (expand)" references: [module.cluster-init.module.longhorn.helm_release.longhorn (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:59:47.806+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/external\"]" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (close)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.wait_on (expand)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.access_key (expand)" references: [module.tenant-365zon.var.minio_access_key (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_namespace.postgresql (expand)" references: [module.postgresql.var.enabled (expand) module.postgresql.var.namespace (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel.helm_release.zitadel (expand)" references: [module.zitadel.var.wait_on (expand) module.zitadel.kubernetes_secret.zitadel (expand) module.zitadel.var.enabled (expand) module.zitadel.local.service_uri (expand) module.zitadel.var.database (expand) module.zitadel.var.database_username (expand) module.zitadel.var.database_password (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.database_root_username (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.display_on_homepage (expand) module.zitadel.var.ingressClass (expand) module.zitadel.kubernetes_namespace.zitadel (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.enabled (expand)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.minio.output.installed (expand)" references: [module.minio.helm_release.minio (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.admin (expand)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_redirect_uri (expand)" references: [module.zitadel.output.server (expand) module.zitadel-argocd.output.logoutSuffix (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.installed (expand)" references: [module.rabbitmq.helm_release.rabbitmq (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (expand)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (close)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.databases (expand)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_db_start_index (expand)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (close)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (close)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn (expand)" references: [module.cluster-init.module.longhorn.var.wait_on (expand) module.cluster-init.module.longhorn.var.namespace (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.minio.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_config (expand)" references: [module.redis.var.k8s_config_yaml (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_secret_key (expand)" references: [module.minio.random_password.minio_secret_key (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_host (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_user_password (expand)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "local.k8s_host (expand)" references: [local.k8s_config (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.installed (expand)" references: [module.zitadel.helm_release.zitadel (expand) module.zitadel.local_file.zitadel_jwt_profile_file (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.wait_on (expand)" references: [module.cluster-init.var.wait_on (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.grafana_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (expand)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (expand)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)" references: [module.tenant-365zon.var.org_id (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_host (expand)" references: [module.mongodb.local.k8s_config (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.bucket (expand)" references: [module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.server (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "local.node_count (expand)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_host (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (close)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (expand)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.enabled (expand)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)" references: [module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_username (expand)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_namespace.zitadel (expand)" references: [module.zitadel.var.enabled (expand) module.zitadel.var.namespace (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/local\"]" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_username (expand)" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.minio.output.access_key (expand)" references: [module.minio.random_password.minio_access_key (expand)] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "var.vault_token" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "var.minio_server" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "var.vault_addr" references: [] +2025-07-11T08:59:47.807+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.rabbitmq.local.k8s_host (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_action.groups-claim (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)" references: [module.tenant-365zon.local.name (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_access_key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "output.minio-root-secret-key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.wait_on (expand)" references: [module.minio.output.installed (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_root_password (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_auth (expand)" references: [module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.redis.var.namespace (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.minio.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/null\"]" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.postgresql (close)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_auth (expand)" references: [module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_host (expand)" references: [module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_secret (expand)" references: [module.zitadel-argocd.output.client_secret (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_auth (expand)" references: [module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.email (expand) module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.wait_on (expand)" references: [module.postgresql.output.installed (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (close)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_secret.postgresql_auth (expand)" references: [module.postgresql.var.wait_on (expand) module.postgresql.var.enabled (expand) module.postgresql.random_password.postgresql_user_password (expand) module.postgresql.random_password.postgresql_root_password (expand) module.postgresql.kubernetes_namespace.postgresql (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.redis.helm_release.redis (expand)" references: [module.redis.var.wait_on (expand) module.redis.var.architecture (validation) module.redis.var.architecture (expand) module.redis.kubernetes_namespace.redis (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.minio.var.ingressClass (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (validation)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.service_uri (expand)" references: [module.zitadel.var.service_name (expand) module.zitadel.var.server_dns (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "output.rabbitmq-connection-string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "var.region" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (close)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.wait_on (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_host (expand)" references: [module.rabbitmq.local.k8s_config (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.installed (expand)" references: [module.argocd.helm_release.argocd (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "output.minio-secret-key (expand)" references: [module.tenant-365zon.output.minio_secret_key (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_config (expand)" references: [module.zitadel-db.var.k8s_config_yaml (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.output.installed (expand)" references: [module.cluster-init.module.longhorn.output.installed (expand) module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd (expand)" references: [module.argocd.var.wait_on (expand) module.argocd.kubernetes_secret.argocd-tls (expand) module.argocd.data.external.processed_values (expand) module.argocd.random_password.admin_password (expand) module.argocd.kubernetes_namespace.argocd (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)" references: [module.zitadel-argocd.zitadel_action.groups-claim (expand) module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.rabbitmq_connection_string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.kubernetes_secret.bridge-tls (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.postgresql.helm_release.postgresql (expand)" references: [module.postgresql.var.wait_on (expand) module.postgresql.kubernetes_secret.postgresql_auth (expand) module.postgresql.var.enabled (expand) module.postgresql.kubernetes_namespace.postgresql (expand) module.postgresql.var.username (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "var.access_key" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.wait_on (expand)" references: [module.zitadel-db.output.installed (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "local.k8s_config_yaml (expand)" references: [] +2025-07-11T08:59:47.808+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.postgresql (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_host (expand)" references: [module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.installed (expand)" references: [module.mongodb.helm_release.mongodb (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_access_key (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.wait_on (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_host (expand)" references: [module.redis.local.k8s_config (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin_server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.scopes (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.cluster-init.module.longhorn.local.k8s_host (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.namespace (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.minio.var.displayOnHomepage (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_secret_key (expand)" references: [module.tenant-365zon.module.minio.output.secret_key (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.namespace (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_config (expand)" references: [module.mongodb.var.k8s_config_yaml (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.service_name (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.prometheus_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (close)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.null_resource.health_check (expand)" references: [module.tenant-365zon.module.minio.var.wait_on (expand) module.tenant-365zon.module.minio.var.server (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.display_on_homepage (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.service_name (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_auth (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.user_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.random_password.password (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)" references: [module.tenant-365zon.module.minio.null_resource.health_check (expand) module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.namespace (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (close)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.replicas (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (close)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.service_uri (expand)" references: [module.monitoring.var.service_name (expand) module.monitoring.var.server_dns (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.name (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.admin_password (expand)" references: [module.argocd.random_password.admin_password (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.monitoring.random_password.grafana_admin_password (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file (expand)" references: [module.zitadel.data.kubernetes_secret.zitadel_admin (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.ingressClass (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.local.argocd_uri (expand)" references: [module.zitadel-argocd.var.argocd_service_domain (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/aminueza/minio\"]" references: [var.access_key var.secret_key var.region var.minio_server] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.monitoring (close)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand)" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_secret.zitadel (expand)" references: [module.zitadel.var.enabled (expand) module.zitadel.random_password.zitadel_masterkey (expand) module.zitadel.kubernetes_namespace.zitadel (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.tls (expand)" references: [] +2025-07-11T08:59:47.809+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_config (expand)" references: [module.tenant-365zon.var.k8s_config_yaml (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_auth (expand)" references: [module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_host (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_password (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)" references: [module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand) module.zitadel-argocd.module.zitadel_project.var.owners (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_id (expand)" references: [module.zitadel-argocd.output.client_id (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_config (expand)" references: [module.minio.var.k8s_config_yaml (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "output.mongodb-connection-string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (close)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_secret.argocd-tls (expand)" references: [module.argocd.data.kubernetes_secret.bridge-tls (expand) module.argocd.data.kubernetes_secret.bridge-tls (expand) module.argocd.kubernetes_namespace.argocd (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_root_password (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.name (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.ingressClass (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "local.cluster_shortname (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.org_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "local.bridge_dns (expand)" references: [local.tld (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "local.tld (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.jwt_profile_file (expand)" references: [module.zitadel.local_file.zitadel_jwt_profile_file (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.minio (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_secret_key (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.redis.output.installed (expand)" references: [module.redis.helm_release.redis (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (close)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.namespace (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_bucket (expand)" references: [module.tenant-365zon.module.minio.output.bucket (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_config (expand)" references: [module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-bootstrap.var.jwt_profile_file (expand) module.zitadel-bootstrap.var.domain (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.external.processed_values (expand)" references: [module.argocd.local.service_uri (expand) module.argocd.var.server_dns (expand) module.argocd.local.grpc_service_uri (expand) module.argocd.var.redis_db_start_index (expand) module.argocd.var.redis_password (expand) module.argocd.var.oauth_uri (expand) module.argocd.var.oauth_issuer (expand) module.argocd.var.oauth_client_id (expand) module.argocd.var.oauth_client_secret (expand) module.argocd.var.oauth_redirect_uri (expand) module.argocd.var.tls (expand) module.argocd.var.ingressClass (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.minio.var.namespace (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.minio.var.replicas (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.logoutSuffix (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (close)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "local.k8s_config (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_config (expand)" references: [module.monitoring.var.k8s_config_yaml (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (close)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.argocd.random_password.admin_password (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.secret_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (close)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (close)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_database (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_issuer (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.minio.var.service_name (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (expand)" references: [] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack (expand)" references: [module.monitoring.var.wait_on (expand) module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.var.remote_write_url (expand) module.monitoring.var.remote_read_url (expand) module.monitoring.random_password.grafana_admin_password (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T08:59:47.810+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.secret_key (expand)" references: [module.tenant-365zon.var.minio_secret_key (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.grpc_service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_config (expand)" references: [module.argocd.var.k8s_config_yaml (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_access_key (expand)" references: [module.minio.random_password.minio_access_key (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (expand)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (close)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "var.endpoints" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "var.secret_key" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.helm_release.rabbitmq (expand)" references: [module.rabbitmq.random_password.password (expand) module.rabbitmq.var.wait_on (expand) module.rabbitmq.random_password.password (expand) module.rabbitmq.local.service_uri (expand) module.rabbitmq.var.admin (expand) module.rabbitmq.var.tls (expand) module.rabbitmq.var.ingressClass (expand) module.rabbitmq.var.namespace (expand) module.rabbitmq.var.replicas (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_host (expand)" references: [module.minio.local.k8s_config (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_auth (expand)" references: [module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (expand)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.provider[\"registry.terraform.io/aminueza/minio\"]" references: [module.tenant-365zon.module.minio.var.secret_key (expand) module.tenant-365zon.module.minio.var.region (expand) module.tenant-365zon.module.minio.var.server (expand) module.tenant-365zon.module.minio.var.access_key (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.server_dns (expand)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)" references: [module.tenant-365zon.var.user_id (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (expand)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin (expand)" references: [module.zitadel.helm_release.zitadel (expand) module.zitadel.var.namespace (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.username (expand)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin (expand)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_namespace.argocd (expand)" references: [module.argocd.var.namespace (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.tenant-365zon.var.domain (expand) module.tenant-365zon.var.jwt_profile_file (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.namespace (expand)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.enabled (expand)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (close)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (expand)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)" references: [module.tenant-365zon.module.minio.null_resource.health_check (expand) module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.admin_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.redis.output.password (expand)" references: [module.redis.random_password.redis (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (expand)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_url (expand)" references: [] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_auth (expand)" references: [module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_auth (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.access_instructions (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.random_password.grafana_admin_password (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.username (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T08:59:47.811+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.minio.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.minio.local.k8s_host (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.monitoring (expand)" references: [] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)" references: [] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_uri (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.minio.local.admin_service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.admin_server_dns (expand) module.minio.var.admin_server_dns (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.argocd (close)" references: [] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (close)" references: [] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.wait_on (expand)" references: [module.zitadel-argocd.output.installed (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "local.k8s_auth (expand)" references: [local.k8s_config (expand) local.k8s_config (expand) local.k8s_config (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.minio.local.service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.server_dns (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_host (expand)" references: [module.monitoring.local.k8s_config (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.minio.helm_release.minio (expand)" references: [module.minio.var.namespace (expand) module.minio.var.mode (expand) module.minio.var.replicas (expand) module.minio.var.replicas (expand) module.minio.var.storageSize (expand) module.minio.random_password.minio_access_key (expand) module.minio.random_password.minio_secret_key (expand) module.minio.local.service_uri (expand) module.minio.local.admin_service_uri (expand) module.minio.var.admin (expand) module.minio.var.mode (expand) module.minio.var.tls (expand) module.minio.var.ingressClass (expand) module.minio.var.displayOnHomepage (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)" references: [module.zitadel-bootstrap.var.domain (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.owners (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.host (expand)" references: [] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_password (expand)" references: [module.zitadel-db.output.password (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_host (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (expand)" references: [] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.redis (close)" references: [] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close)" references: [] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (expand)" references: [] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database (expand)" references: [] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_secret_key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_host (expand)" references: [module.cluster-init.local.k8s_config (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.tld (expand)" references: [] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_host (expand)" references: [module.zitadel.local.k8s_config (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.redis.var.wait_on (expand)" references: [] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.installed (expand)" references: [module.zitadel-db.kubernetes_job.create-tenant (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_server (expand)" references: [module.minio.output.minio_server (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_api_uri (expand)" references: [module.minio.output.minio_api_uri (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T08:59:47.812+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T08:59:47.892+0200 [DEBUG] Starting graph walk: walkPlan +2025-07-11T08:59:47.894+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.894+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.901+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5"] +2025-07-11T08:59:47.901+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 pid=974948 +2025-07-11T08:59:47.901+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 +2025-07-11T08:59:47.904+0200 [INFO] provider.terraform-provider-external_v2.3.5_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.904+0200" +2025-07-11T08:59:47.916+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:47.916+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: plugin address: address=/tmp/plugin2072028292 network=unix timestamp="2025-07-11T08:59:47.915+0200" +2025-07-11T08:59:47.923+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.923+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.928+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5"] +2025-07-11T08:59:47.928+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 pid=974957 +2025-07-11T08:59:47.928+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 +2025-07-11T08:59:47.931+0200 [INFO] provider.terraform-provider-null_v3.2.4_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.931+0200" +2025-07-11T08:59:47.943+0200 [DEBUG] provider.terraform-provider-null_v3.2.4_x5: plugin address: address=/tmp/plugin2608145216 network=unix timestamp="2025-07-11T08:59:47.943+0200" +2025-07-11T08:59:47.943+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:47.951+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.951+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.955+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 args=[".terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1"] +2025-07-11T08:59:47.955+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 pid=974966 +2025-07-11T08:59:47.955+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 +2025-07-11T08:59:47.958+0200 [INFO] provider.terraform-provider-slugify_v0.1.1: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.958+0200" +2025-07-11T08:59:47.969+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:47.969+0200 [DEBUG] provider.terraform-provider-slugify_v0.1.1: plugin address: address=/tmp/plugin3660464583 network=unix timestamp="2025-07-11T08:59:47.969+0200" +2025-07-11T08:59:47.977+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:47.977+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:47.981+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:59:47.981+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=974980 +2025-07-11T08:59:47.981+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:59:47.989+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:59:47.989+0200" +2025-07-11T08:59:48.016+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:48.016+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin4009873925 network=unix timestamp="2025-07-11T08:59:48.016+0200" +2025-07-11T08:59:48.028+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:48.028+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:48.033+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5"] +2025-07-11T08:59:48.033+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 pid=974992 +2025-07-11T08:59:48.033+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 +2025-07-11T08:59:48.035+0200 [INFO] provider.terraform-provider-random_v3.7.2_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:48.035+0200" +2025-07-11T08:59:48.047+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:48.047+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: plugin address: address=/tmp/plugin3790841386 network=unix timestamp="2025-07-11T08:59:48.047+0200" +2025-07-11T08:59:48.055+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:48.055+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:48.059+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5"] +2025-07-11T08:59:48.059+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 pid=975001 +2025-07-11T08:59:48.059+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 +2025-07-11T08:59:48.062+0200 [INFO] provider.terraform-provider-local_v2.5.3_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:48.061+0200" +2025-07-11T08:59:48.073+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:48.073+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: plugin address: address=/tmp/plugin2476944407 network=unix timestamp="2025-07-11T08:59:48.073+0200" +2025-07-11T08:59:48.080+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:48.080+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:48.085+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:59:48.085+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=975009 +2025-07-11T08:59:48.085+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:59:48.099+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:48.099+0200" +2025-07-11T08:59:48.110+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin3927256282 network=unix timestamp="2025-07-11T08:59:48.110+0200" +2025-07-11T08:59:48.110+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:48.118+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:48.118+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:48.118+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:48.123+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:59:48.124+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=975023 +2025-07-11T08:59:48.124+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:59:48.143+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:48.143+0200" +2025-07-11T08:59:48.152+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:48.152+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1329182451 network=unix timestamp="2025-07-11T08:59:48.152+0200" +2025-07-11T08:59:48.159+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:48.159+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:48.163+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:59:48.164+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=975039 +2025-07-11T08:59:48.164+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:59:48.182+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:48.182+0200" +2025-07-11T08:59:48.190+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:48.190+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin3822897031 network=unix timestamp="2025-07-11T08:59:48.190+0200" +2025-07-11T08:59:48.197+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:48.197+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:48.198+0200 [WARN] ValidateProviderConfig from "provider[\"registry.terraform.io/aminueza/minio\"]" changed the config value, but that value is unused +2025-07-11T08:59:48.201+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:59:48.202+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=975056 +2025-07-11T08:59:48.202+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:59:48.216+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:48.216+0200" +2025-07-11T08:59:48.228+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:48.228+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin3627767530 network=unix timestamp="2025-07-11T08:59:48.228+0200" +2025-07-11T08:59:48.236+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:48.236+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:48.237+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:48 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:59:48.237+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_user_password" references: [] +2025-07-11T08:59:48.237+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:59:48 [DEBUG] MinIO SSL client transport configured successfully: timestamp="2025-07-11T08:59:48.237+0200" +2025-07-11T08:59:48.237+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:48 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:59:48.237+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_req_id=5a9b91cb-a65e-93da-3fae-5eb3662312ee timestamp="2025-07-11T08:59:48.237+0200" +2025-07-11T08:59:48.237+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a9b91cb-a65e-93da-3fae-5eb3662312ee @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_rpc=ConfigureProvider timestamp="2025-07-11T08:59:48.237+0200" +2025-07-11T08:59:48.237+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_replica_set_key" references: [] +2025-07-11T08:59:48.237+0200 [DEBUG] ReferenceTransformer: "module.argocd.random_password.admin_password" references: [] +2025-07-11T08:59:48.237+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=5a9b91cb-a65e-93da-3fae-5eb3662312ee tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm timestamp="2025-07-11T08:59:48.237+0200" +2025-07-11T08:59:48.237+0200 [DEBUG] ReferenceTransformer: "module.monitoring.random_password.grafana_admin_password" references: [] +2025-07-11T08:59:48.238+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.kubernetes_secret.bridge-tls" references: [] +2025-07-11T08:59:48.238+0200 [DEBUG] ReferenceTransformer: "data.minio_s3_object.k8s_yaml" references: [] +2025-07-11T08:59:48.238+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_access_key" references: [] +2025-07-11T08:59:48.238+0200 [DEBUG] ReferenceTransformer: "module.zitadel.random_password.zitadel_masterkey" references: [] +2025-07-11T08:59:48.238+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_namespace.argocd" references: [] +2025-07-11T08:59:48.238+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_secret_key" references: [] +2025-07-11T08:59:48.238+0200 [DEBUG] ReferenceTransformer: "module.redis.random_password.redis" references: [] +2025-07-11T08:59:48.238+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.random_password.password" references: [] +2025-07-11T08:59:48.239+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_root_password" references: [] +2025-07-11T08:59:48.239+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_root_password" references: [] +2025-07-11T08:59:48.239+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.random_password.tenant" references: [] +2025-07-11T08:59:48.239+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_namespace.zitadel[0]" references: [] +2025-07-11T08:59:48.241+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:59:48.241+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=975071 +2025-07-11T08:59:48.241+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:59:48.258+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:48.258+0200" +2025-07-11T08:59:48.267+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2451595640 network=unix timestamp="2025-07-11T08:59:48.267+0200" +2025-07-11T08:59:48.267+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:48.274+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:48.274+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:48.274+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:48.278+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:59:48.279+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=975091 +2025-07-11T08:59:48.279+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:59:48.296+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:48.296+0200" +2025-07-11T08:59:48.304+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:48.304+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin3067724278 network=unix timestamp="2025-07-11T08:59:48.304+0200" +2025-07-11T08:59:48.311+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:48.311+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:48.315+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:59:48.315+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=975108 +2025-07-11T08:59:48.315+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:59:48.331+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:48.331+0200" +2025-07-11T08:59:48.342+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:48.342+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin4251752274 network=unix timestamp="2025-07-11T08:59:48.342+0200" +2025-07-11T08:59:48.350+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:48.350+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:48.351+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:48 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:59:48.351+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:48 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:59:48.351+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_req_id=8126642c-201f-bc57-e904-7ca24b61c262 timestamp="2025-07-11T08:59:48.351+0200" +2025-07-11T08:59:48.351+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider @module=helm tf_req_id=8126642c-201f-bc57-e904-7ca24b61c262 timestamp="2025-07-11T08:59:48.351+0200" +2025-07-11T08:59:48.351+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_req_id=8126642c-201f-bc57-e904-7ca24b61c262 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:48.351+0200" +2025-07-11T08:59:48.352+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config" references: [] +2025-07-11T08:59:48.355+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:59:48.355+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=975123 +2025-07-11T08:59:48.355+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:59:48.368+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:48.368+0200" +2025-07-11T08:59:48.379+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:48.379+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin1677283431 network=unix timestamp="2025-07-11T08:59:48.379+0200" +2025-07-11T08:59:48.387+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:48.387+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:48.387+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:48.391+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:59:48.392+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=975138 +2025-07-11T08:59:48.392+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:59:48.410+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:48.410+0200" +2025-07-11T08:59:48.418+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:48.418+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin179732596 network=unix timestamp="2025-07-11T08:59:48.418+0200" +2025-07-11T08:59:48.425+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:48.425+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:48.430+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:59:48.430+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=975156 +2025-07-11T08:59:48.430+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:59:48.449+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:48.449+0200" +2025-07-11T08:59:48.457+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:48.457+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin633276098 network=unix timestamp="2025-07-11T08:59:48.457+0200" +2025-07-11T08:59:48.464+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:48.464+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:48.469+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:59:48.469+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=975173 +2025-07-11T08:59:48.469+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:59:48.487+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:48.487+0200" +2025-07-11T08:59:48.495+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:48.495+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin3117475182 network=unix timestamp="2025-07-11T08:59:48.495+0200" +2025-07-11T08:59:48.504+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:48.504+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:48.504+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:48.509+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:59:48.509+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=975188 +2025-07-11T08:59:48.509+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:59:48.522+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:48.522+0200" +2025-07-11T08:59:48.534+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin3854034386 network=unix timestamp="2025-07-11T08:59:48.534+0200" +2025-07-11T08:59:48.534+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:48.543+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:48.543+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:48.543+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:48.547+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:59:48.547+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=975203 +2025-07-11T08:59:48.547+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:59:48.565+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:48.565+0200" +2025-07-11T08:59:48.574+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:48.574+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: network=unix address=/tmp/plugin2225162227 timestamp="2025-07-11T08:59:48.574+0200" +2025-07-11T08:59:48.581+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:48.581+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:48.586+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:59:48.586+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=975221 +2025-07-11T08:59:48.586+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:59:48.600+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:48.600+0200" +2025-07-11T08:59:48.611+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin2136812859 network=unix timestamp="2025-07-11T08:59:48.611+0200" +2025-07-11T08:59:48.611+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:48.620+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:48.620+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:48.620+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:48.621+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:48 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:59:48.621+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:48 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:59:48.621+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e744c8f5-72a0-b791-5404-8d6c68e0aecd @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 tf_rpc=ConfigureProvider @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" timestamp="2025-07-11T08:59:48.621+0200" +2025-07-11T08:59:48.621+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f3cad9eb-442f-ae6d-1d57-a6c39f1569e1 config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 timestamp="2025-07-11T08:59:48.621+0200" +2025-07-11T08:59:48.621+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider tf_req_id=e744c8f5-72a0-b791-5404-8d6c68e0aecd timestamp="2025-07-11T08:59:48.621+0200" +2025-07-11T08:59:48.621+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e744c8f5-72a0-b791-5404-8d6c68e0aecd tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm timestamp="2025-07-11T08:59:48.621+0200" +2025-07-11T08:59:48.621+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:48 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:59:48.621+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:48 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:59:48.621+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm tf_req_id=03f17213-6269-f08b-2177-2f4a22e6dcab config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" timestamp="2025-07-11T08:59:48.621+0200" +2025-07-11T08:59:48.622+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider tf_req_id=03f17213-6269-f08b-2177-2f4a22e6dcab timestamp="2025-07-11T08:59:48.621+0200" +2025-07-11T08:59:48.621+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: tf_req_id=f3cad9eb-442f-ae6d-1d57-a6c39f1569e1 @module=helm tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:48.621+0200" +2025-07-11T08:59:48.622+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f3cad9eb-442f-ae6d-1d57-a6c39f1569e1 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 timestamp="2025-07-11T08:59:48.621+0200" +2025-07-11T08:59:48.622+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_req_id=03f17213-6269-f08b-2177-2f4a22e6dcab tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:48.621+0200" +2025-07-11T08:59:48.622+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_namespace.redis" references: [] +2025-07-11T08:59:48.622+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_namespace.mongodb" references: [] +2025-07-11T08:59:48.622+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring" references: [] +2025-07-11T08:59:48.626+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T08:59:48.627+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=975234 +2025-07-11T08:59:48.627+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T08:59:48.644+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T08:59:48.644+0200" +2025-07-11T08:59:48.652+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:48.652+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1575328228 network=unix timestamp="2025-07-11T08:59:48.652+0200" +2025-07-11T08:59:48.659+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:48.659+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:48.664+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:59:48.664+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=975254 +2025-07-11T08:59:48.664+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:59:48.678+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:48.678+0200" +2025-07-11T08:59:48.690+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:48.690+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin3769809208 network=unix timestamp="2025-07-11T08:59:48.690+0200" +2025-07-11T08:59:48.698+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:48.698+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:48.698+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:48.699+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: tf_req_id=0adbcfa5-8f9b-043a-eb4e-5332f3727cf9 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" timestamp="2025-07-11T08:59:48.699+0200" +2025-07-11T08:59:48.699+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm tf_req_id=0adbcfa5-8f9b-043a-eb4e-5332f3727cf9 tf_rpc=ConfigureProvider settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:48.699+0200" +2025-07-11T08:59:48.699+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0adbcfa5-8f9b-043a-eb4e-5332f3727cf9 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 timestamp="2025-07-11T08:59:48.699+0200" +2025-07-11T08:59:48.703+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:59:48.703+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=975271 +2025-07-11T08:59:48.703+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:59:48.716+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:48.716+0200" +2025-07-11T08:59:48.728+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:48.728+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin3525294661 network=unix timestamp="2025-07-11T08:59:48.728+0200" +2025-07-11T08:59:48.736+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:48.737+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:48 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T08:59:48.737+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=bf3e02fd-d830-945a-9f2e-7248315fb901 tf_rpc=ConfigureProvider timestamp="2025-07-11T08:59:48.737+0200" +2025-07-11T08:59:48.737+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_req_id=bf3e02fd-d830-945a-9f2e-7248315fb901 timestamp="2025-07-11T08:59:48.737+0200" +2025-07-11T08:59:48.737+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=bf3e02fd-d830-945a-9f2e-7248315fb901 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 timestamp="2025-07-11T08:59:48.737+0200" +2025-07-11T08:59:48.738+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_namespace.postgresql[0]" references: [] +2025-07-11T08:59:48.738+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:48 [INFO] Reading secret bridge-tls +2025-07-11T08:59:48.738+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0cc59b69-645e-9a0c-fa8d-1b5b261a75b4 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 timestamp="2025-07-11T08:59:48.738+0200" +2025-07-11T08:59:48.738+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0cc59b69-645e-9a0c-fa8d-1b5b261a75b4 timestamp="2025-07-11T08:59:48.738+0200" +2025-07-11T08:59:48.739+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0cc59b69-645e-9a0c-fa8d-1b5b261a75b4 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 timestamp="2025-07-11T08:59:48.738+0200" +2025-07-11T08:59:48.739+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Host=rancher.bridge.fourlights.dev tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/cert-manager/secrets/bridge-tls tf_http_trans_id=564c066e-4b92-dfb3-75d0-17cf72c1bcef Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_op_type=request tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes Accept="application/json, */*" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 User-Agent="HashiCorp/1.0 Terraform/1.12.1" timestamp="2025-07-11T08:59:48.738+0200" +2025-07-11T08:59:48.739+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn" references: [] +2025-07-11T08:59:48.740+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_attribute_path=special tf_req_id=622df6cf-b10e-f5a1-b822-72943f1a2528 tf_resource_type=random_password timestamp="2025-07-11T08:59:48.740+0200" +2025-07-11T08:59:48.740+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=lower tf_req_id=622df6cf-b10e-f5a1-b822-72943f1a2528 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:59:48.740+0200" +2025-07-11T08:59:48.740+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource tf_req_id=ada25752-1e91-3f3a-beae-d45bad3b4ec1 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_lower timestamp="2025-07-11T08:59:48.740+0200" +2025-07-11T08:59:48.740+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework tf_req_id=6670d726-d902-3622-4926-c113c1a0efc6 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.740+0200" +2025-07-11T08:59:48.740+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=91ef2ee3-77c0-cb56-743f-4587728af69e tf_resource_type=random_password timestamp="2025-07-11T08:59:48.740+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=f9219f0e-215e-2f7c-fc25-8331bf081c01 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=result timestamp="2025-07-11T08:59:48.740+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=f9219f0e-215e-2f7c-fc25-8331bf081c01 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:59:48.740+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=622df6cf-b10e-f5a1-b822-72943f1a2528 tf_resource_type=random_password timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=91ef2ee3-77c0-cb56-743f-4587728af69e timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ada25752-1e91-3f3a-beae-d45bad3b4ec1 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=number tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ada25752-1e91-3f3a-beae-d45bad3b4ec1 tf_resource_type=random_password tf_attribute_path=result tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_req_id=6670d726-d902-3622-4926-c113c1a0efc6 timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=length tf_req_id=622df6cf-b10e-f5a1-b822-72943f1a2528 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f9219f0e-215e-2f7c-fc25-8331bf081c01 timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=bcrypt_hash tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6670d726-d902-3622-4926-c113c1a0efc6 tf_resource_type=random_password timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=622df6cf-b10e-f5a1-b822-72943f1a2528 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=bcrypt_hash tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f9219f0e-215e-2f7c-fc25-8331bf081c01 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @module=sdk.framework tf_attribute_path=special tf_req_id=f9219f0e-215e-2f7c-fc25-8331bf081c01 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f9219f0e-215e-2f7c-fc25-8331bf081c01 tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=override_special tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework tf_req_id=f9219f0e-215e-2f7c-fc25-8331bf081c01 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f9219f0e-215e-2f7c-fc25-8331bf081c01 tf_rpc=ReadResource tf_resource_type=random_password timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=numeric tf_req_id=f9219f0e-215e-2f7c-fc25-8331bf081c01 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @module=sdk.framework tf_req_id=ada25752-1e91-3f3a-beae-d45bad3b4ec1 tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=special @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=9e915be5-b324-e127-a6f2-881d5a727fb7 tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f9219f0e-215e-2f7c-fc25-8331bf081c01 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=id timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ada25752-1e91-3f3a-beae-d45bad3b4ec1 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=upper tf_req_id=9e915be5-b324-e127-a6f2-881d5a727fb7 tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.741+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=bcrypt_hash tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=9e915be5-b324-e127-a6f2-881d5a727fb7 tf_resource_type=random_password timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=9e915be5-b324-e127-a6f2-881d5a727fb7 tf_rpc=ReadResource tf_attribute_path=lower tf_resource_type=random_password timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6670d726-d902-3622-4926-c113c1a0efc6 tf_resource_type=random_password timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=id tf_req_id=9e915be5-b324-e127-a6f2-881d5a727fb7 tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=9e915be5-b324-e127-a6f2-881d5a727fb7 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=special tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_req_id=6670d726-d902-3622-4926-c113c1a0efc6 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_upper @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=622df6cf-b10e-f5a1-b822-72943f1a2528 tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6670d726-d902-3622-4926-c113c1a0efc6 tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=lower timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=622df6cf-b10e-f5a1-b822-72943f1a2528 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=result tf_resource_type=random_password timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=622df6cf-b10e-f5a1-b822-72943f1a2528 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=ada25752-1e91-3f3a-beae-d45bad3b4ec1 tf_resource_type=random_password tf_rpc=ReadResource tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ada25752-1e91-3f3a-beae-d45bad3b4ec1 timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=upper tf_req_id=91ef2ee3-77c0-cb56-743f-4587728af69e tf_resource_type=random_password tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=lower @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ada25752-1e91-3f3a-beae-d45bad3b4ec1 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=91ef2ee3-77c0-cb56-743f-4587728af69e tf_resource_type=random_password timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource tf_attribute_path=min_numeric tf_req_id=9e915be5-b324-e127-a6f2-881d5a727fb7 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource tf_attribute_path=number tf_req_id=9e915be5-b324-e127-a6f2-881d5a727fb7 timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_upper tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6670d726-d902-3622-4926-c113c1a0efc6 tf_resource_type=random_password timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=min_special tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=91ef2ee3-77c0-cb56-743f-4587728af69e tf_resource_type=random_password timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=bcrypt_hash tf_req_id=91ef2ee3-77c0-cb56-743f-4587728af69e timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @module=sdk.framework tf_req_id=9e915be5-b324-e127-a6f2-881d5a727fb7 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=91ef2ee3-77c0-cb56-743f-4587728af69e tf_rpc=ReadResource @module=sdk.framework tf_resource_type=random_password timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.742+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_special tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ada25752-1e91-3f3a-beae-d45bad3b4ec1 timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=numeric tf_req_id=ada25752-1e91-3f3a-beae-d45bad3b4ec1 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=6670d726-d902-3622-4926-c113c1a0efc6 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=upper tf_req_id=ada25752-1e91-3f3a-beae-d45bad3b4ec1 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:48.741+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=9e915be5-b324-e127-a6f2-881d5a727fb7 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6670d726-d902-3622-4926-c113c1a0efc6 tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=ada25752-1e91-3f3a-beae-d45bad3b4ec1 timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=6670d726-d902-3622-4926-c113c1a0efc6 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=91ef2ee3-77c0-cb56-743f-4587728af69e tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6670d726-d902-3622-4926-c113c1a0efc6 tf_resource_type=random_password @module=sdk.framework tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f9219f0e-215e-2f7c-fc25-8331bf081c01 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_lower tf_resource_type=random_password timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_attribute_path=id tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6670d726-d902-3622-4926-c113c1a0efc6 timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=622df6cf-b10e-f5a1-b822-72943f1a2528 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=result tf_req_id=9e915be5-b324-e127-a6f2-881d5a727fb7 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=622df6cf-b10e-f5a1-b822-72943f1a2528 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=bcrypt_hash tf_resource_type=random_password timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=622df6cf-b10e-f5a1-b822-72943f1a2528 tf_resource_type=random_password timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=random_password @module=sdk.framework tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=91ef2ee3-77c0-cb56-743f-4587728af69e tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @module=sdk.framework tf_req_id=f9219f0e-215e-2f7c-fc25-8331bf081c01 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=622df6cf-b10e-f5a1-b822-72943f1a2528 tf_resource_type=random_password @module=sdk.framework tf_attribute_path=min_special tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=length tf_req_id=f9219f0e-215e-2f7c-fc25-8331bf081c01 tf_resource_type=random_password @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=91ef2ee3-77c0-cb56-743f-4587728af69e tf_resource_type=random_password tf_attribute_path=lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_special tf_req_id=6670d726-d902-3622-4926-c113c1a0efc6 timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=91ef2ee3-77c0-cb56-743f-4587728af69e tf_resource_type=random_password @module=sdk.framework tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.743+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=91ef2ee3-77c0-cb56-743f-4587728af69e tf_resource_type=random_password tf_rpc=ReadResource tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.744+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=91ef2ee3-77c0-cb56-743f-4587728af69e tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.744+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_special tf_req_id=f9219f0e-215e-2f7c-fc25-8331bf081c01 tf_resource_type=random_password tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.744+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=622df6cf-b10e-f5a1-b822-72943f1a2528 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.744+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ada25752-1e91-3f3a-beae-d45bad3b4ec1 tf_attribute_path=bcrypt_hash tf_resource_type=random_password timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.744+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=9e915be5-b324-e127-a6f2-881d5a727fb7 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_lower tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.744+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=length tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=9e915be5-b324-e127-a6f2-881d5a727fb7 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:48.742+0200" +2025-07-11T08:59:48.744+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:48 [INFO] Checking namespace argocd +2025-07-11T08:59:48.744+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_trans_id=affa1b77-e686-9169-bdf1-999731e49a49 Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/argocd @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Accept="application/json, */*" Host=rancher.bridge.fourlights.dev tf_http_op_type=request tf_http_req_method=GET new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T08:59:48.740+0200" +2025-07-11T08:59:48.745+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=79a72ecb-976a-6d25-16c9-c330e0f88f05 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:59:48.744+0200" +2025-07-11T08:59:48.745+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=override_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=79a72ecb-976a-6d25-16c9-c330e0f88f05 timestamp="2025-07-11T08:59:48.745+0200" +2025-07-11T08:59:48.745+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=79a72ecb-976a-6d25-16c9-c330e0f88f05 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:48.745+0200" +2025-07-11T08:59:48.745+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=79a72ecb-976a-6d25-16c9-c330e0f88f05 timestamp="2025-07-11T08:59:48.745+0200" +2025-07-11T08:59:48.745+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=79a72ecb-976a-6d25-16c9-c330e0f88f05 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.745+0200" +2025-07-11T08:59:48.745+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=79a72ecb-976a-6d25-16c9-c330e0f88f05 tf_resource_type=random_password tf_attribute_path=min_lower tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.745+0200" +2025-07-11T08:59:48.746+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_req_id=79a72ecb-976a-6d25-16c9-c330e0f88f05 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=length timestamp="2025-07-11T08:59:48.745+0200" +2025-07-11T08:59:48.746+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password tf_attribute_path=special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=79a72ecb-976a-6d25-16c9-c330e0f88f05 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:48.745+0200" +2025-07-11T08:59:48.746+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=79a72ecb-976a-6d25-16c9-c330e0f88f05 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=random_password timestamp="2025-07-11T08:59:48.745+0200" +2025-07-11T08:59:48.746+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=79a72ecb-976a-6d25-16c9-c330e0f88f05 tf_rpc=ReadResource tf_attribute_path=min_special tf_resource_type=random_password timestamp="2025-07-11T08:59:48.746+0200" +2025-07-11T08:59:48.746+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @module=sdk.framework tf_attribute_path=min_numeric tf_req_id=79a72ecb-976a-6d25-16c9-c330e0f88f05 tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.746+0200" +2025-07-11T08:59:48.746+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource tf_attribute_path=bcrypt_hash tf_req_id=79a72ecb-976a-6d25-16c9-c330e0f88f05 timestamp="2025-07-11T08:59:48.746+0200" +2025-07-11T08:59:48.747+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=79a72ecb-976a-6d25-16c9-c330e0f88f05 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=upper timestamp="2025-07-11T08:59:48.746+0200" +2025-07-11T08:59:48.747+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password @module=sdk.framework tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=79a72ecb-976a-6d25-16c9-c330e0f88f05 timestamp="2025-07-11T08:59:48.746+0200" +2025-07-11T08:59:48.757+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=77e1dc7e-f9c3-41ee-7c50-13686714e4e0 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:59:48.756+0200" +2025-07-11T08:59:48.757+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=lower tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=77e1dc7e-f9c3-41ee-7c50-13686714e4e0 timestamp="2025-07-11T08:59:48.756+0200" +2025-07-11T08:59:48.757+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=77e1dc7e-f9c3-41ee-7c50-13686714e4e0 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:48.756+0200" +2025-07-11T08:59:48.757+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=upper tf_req_id=98069bca-f5fc-2fc7-9b4b-8f4fddc43cf9 tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.756+0200" +2025-07-11T08:59:48.757+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=77e1dc7e-f9c3-41ee-7c50-13686714e4e0 tf_resource_type=random_password tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:48.756+0200" +2025-07-11T08:59:48.757+0200 [DEBUG] UpgradeResourceState: ignoring dynamic block: map[string]interface {}{"type":[]interface {}{"object", map[string]interface {}{"apiVersion":"string", "kind":"string", "metadata":[]interface {}{"object", map[string]interface {}{"name":"string", "namespace":"string"}}, "spec":[]interface {}{"object", map[string]interface {}{"valuesContent":"string"}}}}, "value":map[string]interface {}{"apiVersion":"helm.cattle.io/v1", "kind":"HelmChartConfig", "metadata":map[string]interface {}{"name":"rke2-ingress-nginx", "namespace":"kube-system"}, "spec":map[string]interface {}{"valuesContent":"controller:\n config:\n use-forwarded-headers: \"true\"\n"}}} +2025-07-11T08:59:48.758+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=random_password tf_rpc=ReadResource tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=77e1dc7e-f9c3-41ee-7c50-13686714e4e0 timestamp="2025-07-11T08:59:48.756+0200" +2025-07-11T08:59:48.758+0200 [DEBUG] UpgradeResourceState: ignoring dynamic block: map[string]interface {}{"type":[]interface {}{"object", map[string]interface {}{"apiVersion":"string", "kind":"string", "metadata":[]interface {}{"object", map[string]interface {}{"annotations":[]interface {}{"map", "string"}, "creationTimestamp":"string", "deletionGracePeriodSeconds":"number", "deletionTimestamp":"string", "finalizers":[]interface {}{"list", "string"}, "generateName":"string", "generation":"number", "labels":[]interface {}{"map", "string"}, "managedFields":[]interface {}{"tuple", []interface {}{[]interface {}{"object", map[string]interface {}{"apiVersion":"string", "fieldsType":"string", "fieldsV1":"dynamic", "manager":"string", "operation":"string", "subresource":"string", "time":"string"}}}}, "name":"string", "namespace":"string", "ownerReferences":[]interface {}{"list", []interface {}{"object", map[string]interface {}{"apiVersion":"string", "blockOwnerDeletion":"bool", "controller":"bool", "kind":"string", "name":"string", "uid":"string"}}}, "resourceVersion":"string", "selfLink":"string", "uid":"string"}}, "spec":[]interface {}{"object", map[string]interface {}{"failurePolicy":"string", "valuesContent":"string"}}}}, "value":map[string]interface {}{"apiVersion":"helm.cattle.io/v1", "kind":"HelmChartConfig", "metadata":map[string]interface {}{"annotations":interface {}(nil), "creationTimestamp":interface {}(nil), "deletionGracePeriodSeconds":interface {}(nil), "deletionTimestamp":interface {}(nil), "finalizers":interface {}(nil), "generateName":interface {}(nil), "generation":interface {}(nil), "labels":interface {}(nil), "managedFields":interface {}(nil), "name":"rke2-ingress-nginx", "namespace":"kube-system", "ownerReferences":interface {}(nil), "resourceVersion":interface {}(nil), "selfLink":interface {}(nil), "uid":interface {}(nil)}, "spec":map[string]interface {}{"failurePolicy":interface {}(nil), "valuesContent":"controller:\n config:\n use-forwarded-headers: \"true\"\n"}}} +2025-07-11T08:59:48.758+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @module=sdk.framework tf_req_id=98069bca-f5fc-2fc7-9b4b-8f4fddc43cf9 tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.758+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=98069bca-f5fc-2fc7-9b4b-8f4fddc43cf9 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.758+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=98069bca-f5fc-2fc7-9b4b-8f4fddc43cf9 tf_resource_type=random_password @module=sdk.framework tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.758+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_attribute_path=length tf_req_id=77e1dc7e-f9c3-41ee-7c50-13686714e4e0 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.758+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=77e1dc7e-f9c3-41ee-7c50-13686714e4e0 tf_resource_type=random_password tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.758+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=77e1dc7e-f9c3-41ee-7c50-13686714e4e0 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.758+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password @module=sdk.framework tf_attribute_path=bcrypt_hash tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=77e1dc7e-f9c3-41ee-7c50-13686714e4e0 timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.758+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=random_password tf_attribute_path=special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=77e1dc7e-f9c3-41ee-7c50-13686714e4e0 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.758+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:48 [INFO] Checking namespace zitadel +2025-07-11T08:59:48.758+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=2d0f336c-bbd7-f608-abe6-d5d330201930 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.759+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=random_password tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=77e1dc7e-f9c3-41ee-7c50-13686714e4e0 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=upper timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.759+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/zitadel tf_http_req_version=HTTP/1.1 Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_body="" tf_http_trans_id=e52ab113-fe36-afae-5031-d30656550726 @module=kubernetes.Kubernetes Accept="application/json, */*" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept-Encoding=gzip timestamp="2025-07-11T08:59:48.759+0200" +2025-07-11T08:59:48.759+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=77e1dc7e-f9c3-41ee-7c50-13686714e4e0 tf_resource_type=random_password tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.759+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=77e1dc7e-f9c3-41ee-7c50-13686714e4e0 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.759+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=2d0f336c-bbd7-f608-abe6-d5d330201930 tf_resource_type=random_password tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.759+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=2d0f336c-bbd7-f608-abe6-d5d330201930 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.759+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_lower tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=98069bca-f5fc-2fc7-9b4b-8f4fddc43cf9 tf_resource_type=random_password timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.759+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=min_special tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=2d0f336c-bbd7-f608-abe6-d5d330201930 tf_resource_type=random_password timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.759+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=2d0f336c-bbd7-f608-abe6-d5d330201930 tf_resource_type=random_password @module=sdk.framework tf_attribute_path=number tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.759+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=numeric tf_req_id=2d0f336c-bbd7-f608-abe6-d5d330201930 timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.759+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=98069bca-f5fc-2fc7-9b4b-8f4fddc43cf9 @module=sdk.framework tf_resource_type=random_password timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.759+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=c66af48f-5327-edef-98e0-0f6099e604b3 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.759+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=number tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=c66af48f-5327-edef-98e0-0f6099e604b3 tf_resource_type=random_password timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.759+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=98069bca-f5fc-2fc7-9b4b-8f4fddc43cf9 tf_resource_type=random_password tf_attribute_path=special tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.757+0200" +2025-07-11T08:59:48.759+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=98069bca-f5fc-2fc7-9b4b-8f4fddc43cf9 tf_resource_type=random_password tf_attribute_path=lower timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.759+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_numeric tf_req_id=c66af48f-5327-edef-98e0-0f6099e604b3 tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.760+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=c66af48f-5327-edef-98e0-0f6099e604b3 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=override_special tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.760+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=numeric tf_req_id=c66af48f-5327-edef-98e0-0f6099e604b3 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.760+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=number tf_req_id=98069bca-f5fc-2fc7-9b4b-8f4fddc43cf9 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.760+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_upper tf_req_id=e1cd250f-1c21-b221-958f-94199b355bc2 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.760+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=e1cd250f-1c21-b221-958f-94199b355bc2 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.760+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_special tf_req_id=98069bca-f5fc-2fc7-9b4b-8f4fddc43cf9 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.760+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=2d0f336c-bbd7-f608-abe6-d5d330201930 @module=sdk.framework tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.760+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=special tf_req_id=2d0f336c-bbd7-f608-abe6-d5d330201930 tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.760+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=2d0f336c-bbd7-f608-abe6-d5d330201930 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.760+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=e1cd250f-1c21-b221-958f-94199b355bc2 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=random_password @module=sdk.framework tf_attribute_path=min_numeric timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.760+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource tf_req_id=e1cd250f-1c21-b221-958f-94199b355bc2 timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.760+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=lower tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework tf_req_id=e1cd250f-1c21-b221-958f-94199b355bc2 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.760+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=e1cd250f-1c21-b221-958f-94199b355bc2 tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.760+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=min_numeric tf_req_id=98069bca-f5fc-2fc7-9b4b-8f4fddc43cf9 tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.761+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource tf_attribute_path=min_upper tf_req_id=2d0f336c-bbd7-f608-abe6-d5d330201930 timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.761+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=e1cd250f-1c21-b221-958f-94199b355bc2 tf_rpc=ReadResource @module=sdk.framework tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.761+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=98069bca-f5fc-2fc7-9b4b-8f4fddc43cf9 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=bcrypt_hash tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.761+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=e1cd250f-1c21-b221-958f-94199b355bc2 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=bcrypt_hash timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.761+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_attribute_path=bcrypt_hash tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=2d0f336c-bbd7-f608-abe6-d5d330201930 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.761+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=e1cd250f-1c21-b221-958f-94199b355bc2 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.761+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=c66af48f-5327-edef-98e0-0f6099e604b3 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:59:48.758+0200" +2025-07-11T08:59:48.761+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=98069bca-f5fc-2fc7-9b4b-8f4fddc43cf9 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:59:48.759+0200" +2025-07-11T08:59:48.761+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=random_password @module=sdk.framework tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=e1cd250f-1c21-b221-958f-94199b355bc2 tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.759+0200" +2025-07-11T08:59:48.761+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=override_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=e1cd250f-1c21-b221-958f-94199b355bc2 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.759+0200" +2025-07-11T08:59:48.761+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=random_password tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=e1cd250f-1c21-b221-958f-94199b355bc2 timestamp="2025-07-11T08:59:48.759+0200" +2025-07-11T08:59:48.761+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=e1cd250f-1c21-b221-958f-94199b355bc2 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=numeric timestamp="2025-07-11T08:59:48.759+0200" +2025-07-11T08:59:48.761+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=special tf_req_id=e1cd250f-1c21-b221-958f-94199b355bc2 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:48.759+0200" +2025-07-11T08:59:48.761+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=min_upper tf_req_id=c66af48f-5327-edef-98e0-0f6099e604b3 tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.759+0200" +2025-07-11T08:59:48.761+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=c66af48f-5327-edef-98e0-0f6099e604b3 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.759+0200" +2025-07-11T08:59:48.762+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_lower tf_req_id=2d0f336c-bbd7-f608-abe6-d5d330201930 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.759+0200" +2025-07-11T08:59:48.762+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_req_id=2d0f336c-bbd7-f608-abe6-d5d330201930 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2025-07-11T08:59:48.759+0200" +2025-07-11T08:59:48.762+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=random_password tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=c66af48f-5327-edef-98e0-0f6099e604b3 tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.759+0200" +2025-07-11T08:59:48.762+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=c66af48f-5327-edef-98e0-0f6099e604b3 tf_resource_type=random_password tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=lower timestamp="2025-07-11T08:59:48.759+0200" +2025-07-11T08:59:48.762+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=min_special tf_req_id=c66af48f-5327-edef-98e0-0f6099e604b3 tf_resource_type=random_password timestamp="2025-07-11T08:59:48.760+0200" +2025-07-11T08:59:48.762+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=c66af48f-5327-edef-98e0-0f6099e604b3 tf_resource_type=random_password @module=sdk.framework tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:48.760+0200" +2025-07-11T08:59:48.762+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=bcrypt_hash tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=c66af48f-5327-edef-98e0-0f6099e604b3 tf_resource_type=random_password tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.760+0200" +2025-07-11T08:59:48.762+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password tf_rpc=ReadResource tf_attribute_path=length tf_req_id=c66af48f-5327-edef-98e0-0f6099e604b3 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:48.760+0200" +2025-07-11T08:59:48.768+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:48 [INFO] Checking namespace redis +2025-07-11T08:59:48.768+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/redis tf_http_req_version=HTTP/1.1 tf_http_trans_id=60be0d4c-d5b7-43cd-bdb4-3c85e563b651 Accept="application/json, */*" Accept-Encoding=gzip @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_body="" tf_http_req_method=GET @module=kubernetes.Kubernetes timestamp="2025-07-11T08:59:48.768+0200" +2025-07-11T08:59:48.771+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:48.771+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:48.776+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T08:59:48.776+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=975298 +2025-07-11T08:59:48.776+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T08:59:48.790+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T08:59:48.790+0200" +2025-07-11T08:59:48.802+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T08:59:48.802+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin512025219 network=unix timestamp="2025-07-11T08:59:48.802+0200" +2025-07-11T08:59:48.810+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:48.811+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:48 [INFO] Checking namespace monitoring +2025-07-11T08:59:48.811+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:48 [INFO] Checking namespace mongodb +2025-07-11T08:59:48.811+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_body="" tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes tf_http_op_type=request tf_http_req_method=GET Accept-Encoding=gzip tf_http_trans_id=d9157397-459f-62ad-db90-1ac2eb18ed28 timestamp="2025-07-11T08:59:48.811+0200" +2025-07-11T08:59:48.811+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @module=kubernetes.Kubernetes Accept="application/json, */*" tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/mongodb tf_http_trans_id=aef9da83-8a80-0c16-6140-425599e9dfe4 Accept-Encoding=gzip new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_body="" tf_http_req_version=HTTP/1.1 Host=rancher.bridge.fourlights.dev timestamp="2025-07-11T08:59:48.811+0200" +2025-07-11T08:59:48.812+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=aa816681-15c0-41f9-8294-d2e7bbc602a6 tf_rpc=ConfigureProvider timestamp="2025-07-11T08:59:48.812+0200" +2025-07-11T08:59:48.812+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm tf_req_id=aa816681-15c0-41f9-8294-d2e7bbc602a6 settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider timestamp="2025-07-11T08:59:48.812+0200" +2025-07-11T08:59:48.812+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=aa816681-15c0-41f9-8294-d2e7bbc602a6 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 timestamp="2025-07-11T08:59:48.812+0200" +2025-07-11T08:59:48.812+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:48 [INFO] Checking namespace postgresql +2025-07-11T08:59:48.812+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @module=kubernetes.Kubernetes tf_http_req_body="" tf_http_req_version=HTTP/1.1 Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request Host=rancher.bridge.fourlights.dev tf_http_req_method=GET Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/postgresql tf_http_trans_id=04278107-9195-58c2-3d8a-23c3d7088262 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 timestamp="2025-07-11T08:59:48.812+0200" +2025-07-11T08:59:48.812+0200 [DEBUG] ReferenceTransformer: "module.minio.helm_release.minio" references: [] +2025-07-11T08:59:48.816+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000000a80 Settings:0xc0004dc7e0 RegistryClient:0xc0004e0280 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 timestamp="2025-07-11T08:59:48.816+0200" +2025-07-11T08:59:48.816+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"longhorn" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"longhorn" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"v1.7.1","chart":"longhorn","first_deployed":1732547795,"last_deployed":1752215357,"name":"longhorn","namespace":"longhorn-system","notes":"Longhorn is now installed on the cluster!\n\nPlease wait a few minutes for other Longhorn components such as CSI deployments, Engine Images, and Instance Managers to be initialized.\n\nVisit our documentation at https://longhorn.io/docs/\n","revision":2,"values":"{\"csi\":{\"kubeletRootDir\":\"/var/lib/kubelet\"},\"defaultSettings\":{\"defaultDataLocality\":\"best-effort\",\"defaultDataPath\":\"/var/lib/longhorn/\",\"storageOverProvisioningPercentage\":90},\"enablePSP\":false,\"persistence\":{\"defaultClassReplicaCount\":1,\"defaultDataLocality\":\"best-effort\"},\"serviceMonitor\":{\"enabled\":true}}","version":"1.7.1"} Name:"longhorn" Namespace:"longhorn-system" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.longhorn.io" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"defaultSettings.defaultDataPath","type":"","value":"/var/lib/longhorn/"},{"name":"defaultSettings.defaultDataLocality","type":"","value":"best-effort"},{"name":"defaultSettings.storageOverProvisioningPercentage","type":"","value":"90"},{"name":"csi.kubeletRootDir","type":"","value":"/var/lib/kubelet"},{"name":"enablePSP","type":"","value":"false"},{"name":"serviceMonitor.enabled","type":"","value":"true"},{"name":"persistence.defaultClassReplicaCount","type":"","value":"1"},{"name":"persistence.defaultDataLocality","type":"","value":"best-effort"}] SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values: Verify:false Version:"1.7.1" Wait:true WaitForJobs:false}: @module=helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.816+0200" +2025-07-11T08:59:48.817+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: longhorn] Start: @module=helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 timestamp="2025-07-11T08:59:48.816+0200" +2025-07-11T08:59:48.817+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release timestamp="2025-07-11T08:59:48.816+0200" +2025-07-11T08:59:48.817+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm configPaths=[] tf_resource_type=helm_release timestamp="2025-07-11T08:59:48.817+0200" +2025-07-11T08:59:48.817+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:48.817+0200" +2025-07-11T08:59:48.817+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: longhorn getRelease post action created: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc timestamp="2025-07-11T08:59:48.817+0200" +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Audit-Id=db581c5b-8823-4ca8-91f4-359a7bee173f Content-Length=1231 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"postgresql","uid":"46aa35b4-b1f9-4a41-8246-7d98511837a8","resourceVersion":"109670601","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"postgresql"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Content-Type-Options=nosniff tf_http_res_status_reason="200 OK" Date="Fri, 11 Jul 2025 06:59:49 GMT" X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes Content-Type=application/json X-Api-Cattle-Auth=true tf_http_op_type=response tf_http_trans_id=04278107-9195-58c2-3d8a-23c3d7088262 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 timestamp="2025-07-11T08:59:49.328+0200" +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Namespace postgresql exists +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Reading namespace postgresql +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Api-Cattle-Auth=true X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"mongodb","uid":"eae31e15-ed78-4956-9278-4c39b87a8842","resourceVersion":"2007792","creationTimestamp":"2024-11-29T19:03:50Z","labels":{"kubernetes.io/metadata.name":"mongodb"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2024-11-29T19:03:51Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2024-11-29T19:03:51Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2024-11-29T19:03:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2024-11-29T19:03:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" tf_http_trans_id=aef9da83-8a80-0c16-6140-425599e9dfe4 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=9482b54f-2426-4190-88bc-b227e3b0ae62 Content-Type=application/json X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_op_type=response tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes Content-Length=1223 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:59:49 GMT" timestamp="2025-07-11T08:59:49.328+0200" +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Namespace mongodb exists +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Reading namespace mongodb +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Date="Fri, 11 Jul 2025 06:59:49 GMT" X-Api-Cattle-Auth=true tf_http_op_type=response Audit-Id=32c29909-9e7d-42ef-b797-ea6a4cbd441f Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Content-Type-Options=nosniff tf_http_res_version=HTTP/2.0 Content-Type=application/json X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"zitadel","uid":"2624b1c4-feb9-4c7a-aa15-4d2f7f5b89de","resourceVersion":"109670602","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"zitadel"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_code=200 Content-Length=1225 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_reason="200 OK" tf_http_trans_id=e52ab113-fe36-afae-5031-d30656550726 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes timestamp="2025-07-11T08:59:49.328+0200" +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Namespace zitadel exists +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"redis","uid":"3728ddfb-bb3d-47de-bdd5-6cf6ee0b93b7","resourceVersion":"109670608","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"redis"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_code=200 Date="Fri, 11 Jul 2025 06:59:49 GMT" X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Content-Type-Options=nosniff new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes Content-Length=1221 Content-Type=application/json tf_http_trans_id=60be0d4c-d5b7-43cd-bdb4-3c85e563b651 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=07731c4f-6a79-4c1e-a367-adadc81dec40 X-Api-Cattle-Auth=true timestamp="2025-07-11T08:59:49.328+0200" +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Namespace redis exists +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Reading namespace redis +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/redis tf_http_req_body="" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_version=HTTP/1.1 Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=3d27437e-ce90-f547-3fb9-bf09e7bed3c3 @module=kubernetes.Kubernetes Accept="application/json, */*" Accept-Encoding=gzip timestamp="2025-07-11T08:59:49.329+0200" +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Type=application/json @module=kubernetes.Kubernetes Audit-Id=ac2c90f6-7f7e-41c8-b52a-0367012779c8 Content-Length=194 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 + tf_http_res_body= + | {"kind":"Status","apiVersion":"v1","metadata":{},"status":"Failure","message":"secrets \"bridge-tls\" not found","reason":"NotFound","details":{"name":"bridge-tls","kind":"secrets"},"code":404} + tf_http_res_status_code=404 tf_http_trans_id=564c066e-4b92-dfb3-75d0-17cf72c1bcef X-Api-Cattle-Auth=true new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_version=HTTP/2.0 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:59:49 GMT" X-Content-Type-Options=nosniff tf_http_op_type=response tf_http_res_status_reason="404 Not Found" timestamp="2025-07-11T08:59:49.328+0200" +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Audit-Id=0dd36ffd-30a3-42ee-bdbc-7de0da0e303f Content-Type=application/json X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff tf_http_op_type=response + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"monitoring","uid":"4e752f54-5f50-4c50-9f26-9b0bc0d1b794","resourceVersion":"109681461","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"monitoring"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:58:49Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:58:49Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:58:48Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_reason="200 OK" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Date="Fri, 11 Jul 2025 06:59:49 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_version=HTTP/2.0 tf_http_trans_id=d9157397-459f-62ad-db90-1ac2eb18ed28 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=1231 tf_http_res_status_code=200 timestamp="2025-07-11T08:59:49.328+0200" +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Namespace monitoring exists +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Reading namespace monitoring +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Host=rancher.bridge.fourlights.dev tf_http_req_method=GET tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring Accept="application/json, */*" Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_trans_id=9492ce88-b1e4-5147-6b49-8d8df00306cc @module=kubernetes.Kubernetes new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." timestamp="2025-07-11T08:59:49.329+0200" +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_body="" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Accept-Encoding=gzip tf_http_req_method=GET Accept="application/json, */*" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/postgresql tf_http_req_version=HTTP/1.1 tf_http_trans_id=798d6a97-0b4d-0547-23bc-74747e23130c Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev timestamp="2025-07-11T08:59:49.329+0200" +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev Accept-Encoding=gzip tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/mongodb tf_http_req_version=HTTP/1.1 tf_http_trans_id=8b8562e2-7772-600c-8e4e-02d5e6f3976a tf_http_op_type=request tf_http_req_method=GET @module=kubernetes.Kubernetes Accept="application/json, */*" timestamp="2025-07-11T08:59:49.329+0200" +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Reading namespace zitadel +2025-07-11T08:59:49.330+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_method=GET tf_http_trans_id=8e0d0092-8fbf-93b9-75ab-0b96cf984d1d @module=kubernetes.Kubernetes Accept-Encoding=gzip new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_version=HTTP/1.1 Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request Host=rancher.bridge.fourlights.dev tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/zitadel @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 timestamp="2025-07-11T08:59:49.329+0200" +2025-07-11T08:59:49.329+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 X-Content-Type-Options=nosniff tf_http_op_type=response tf_http_res_status_code=200 tf_http_trans_id=affa1b77-e686-9169-bdf1-999731e49a49 @module=kubernetes.Kubernetes X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"argocd","uid":"8c7a5f8e-f333-455a-bc71-e979eafb6297","resourceVersion":"109670603","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"argocd"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_reason="200 OK" Audit-Id=20d715b4-c1f6-4ed5-b7f3-914019a1137e Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=1223 X-Api-Cattle-Auth=true Content-Type=application/json Date="Fri, 11 Jul 2025 06:59:49 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_version=HTTP/2.0 timestamp="2025-07-11T08:59:49.328+0200" +2025-07-11T08:59:49.330+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Namespace argocd exists +2025-07-11T08:59:49.330+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Reading namespace argocd +2025-07-11T08:59:49.330+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @module=kubernetes.Kubernetes Host=rancher.bridge.fourlights.dev tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/argocd @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET tf_http_trans_id=8817f4d5-7d75-1d78-fc0c-7b3c5f3933a8 User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_body="" tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T08:59:49.329+0200" +2025-07-11T08:59:49.332+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:49.333+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 id=974992 +2025-07-11T08:59:49.333+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:49.333+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.null_resource.health_check" references: [] +2025-07-11T08:59:49.338+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc00083c2a0 Settings:0xc000843440 RegistryClient:0xc0005c7600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:49.338+0200" +2025-07-11T08:59:49.338+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"minio" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"minio" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"2025.3.12","chart":"minio","first_deployed":1732564007,"last_deployed":1752215358,"name":"minio","namespace":"minio","notes":"CHART NAME: minio\nCHART VERSION: 16.0.0\nAPP VERSION: 2025.3.12\n\nDid you know there are enterprise versions of the Bitnami catalog? For enhanced secure software supply chain features, unlimited pulls from Docker, LTS support, or application customization, see Bitnami Premium or Tanzu Application Catalog. See https://www.arrow.com/globalecs/na/vendors/bitnami for more information.\n\n** Please be patient while the chart is being deployed **\n\nMinIO® can be accessed via port on the following DNS name from within your cluster:\n\n minio.minio.svc.cluster.local\n\nTo get your credentials run:\n\n export ROOT_USER=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-user}\" | base64 -d)\n export ROOT_PASSWORD=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-password}\" | base64 -d)\n\nTo connect to your MinIO® server using a client:\n\n- Run a MinIO® Client pod and append the desired command (e.g. 'admin info'):\n\n kubectl run --namespace minio minio-client \\\n --rm --tty -i --restart='Never' \\\n --env MINIO_SERVER_ROOT_USER=$ROOT_USER \\\n --env MINIO_SERVER_ROOT_PASSWORD=$ROOT_PASSWORD \\\n --env MINIO_SERVER_HOST=minio \\\n --image docker.io/bitnami/minio-client:2025.3.12-debian-12-r0 -- admin info minio\n\nTo access the MinIO® web UI:\n\n- Get the MinIO® URL:\n\n You should be able to access your new MinIO® web UI through\n\n http://storage-admin.365zon.fourlights.dev/minio/\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"apiIngress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"auth\":{\"rootPassword\":\"(sensitive value)\",\"rootUser\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage-admin.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"mode\":\"standalone\",\"persistence\":{\"size\":\"40Gi\"},\"resourcesPreset\":\"nano\",\"statefulset\":{\"drivesPerNode\":2,\"replicaCount\":1},\"tls\":{\"enabled\":false}}","version":"16.0.0"} Name:"minio" Namespace:"minio" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"mode","type":"","value":"standalone"},{"name":"resourcesPreset","type":"","value":"nano"},{"name":"statefulset.replicaCount","type":"","value":"1"},{"name":"statefulset.drivesPerNode","type":"","value":"2"},{"name":"persistence.size","type":"","value":"40Gi"}] SetList: SetSensitive:[{"name":"auth.rootUser","type":,"value":"Xg6VDlh9GVliFdnWnVec"},{"name":"auth.rootPassword","type":,"value":"j!4VaGixfD6f*nam7EeC0Sa*OogSqYA=cinX9bPj"}] SkipCrds:false Status:"deployed" Timeout:300 Values:["tls:\n enabled: false\n\ningress:\n enabled: true\n tls: false\n ingressClassName: nginx\n hostname: storage-admin.365zon.fourlights.dev\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n \n ingress.kubernetes.io/proxy-body-size: \"0\"\n nginx.ingress.kubernetes.io/proxy-body-size: \"0\"\n \n \n\napiIngress:\n enabled: true\n ingressClassName: nginx\n tls: false\n hostname: storage.365zon.fourlights.dev\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n \n ingress.kubernetes.io/proxy-body-size: \"0\"\n nginx.ingress.kubernetes.io/proxy-body-size: \"0\"\n \n"] Verify:false Version:"16.0.0" Wait:true WaitForJobs:true}: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource timestamp="2025-07-11T08:59:49.338+0200" +2025-07-11T08:59:49.338+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: minio] Start: tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 timestamp="2025-07-11T08:59:49.338+0200" +2025-07-11T08:59:49.338+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 KubernetesData=map[] tf_resource_type=helm_release timestamp="2025-07-11T08:59:49.338+0200" +2025-07-11T08:59:49.338+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:49.338+0200" +2025-07-11T08:59:49.338+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:49.338+0200" +2025-07-11T08:59:49.338+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: minio getRelease post action created: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 tf_rpc=ReadResource timestamp="2025-07-11T08:59:49.338+0200" +2025-07-11T08:59:49.470+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_reason="200 OK" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Type=application/json X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_code=200 @module=kubernetes.Kubernetes Audit-Id=8e7d4f4f-616b-48e9-8c01-82363b45fba6 tf_http_op_type=response tf_http_trans_id=798d6a97-0b4d-0547-23bc-74747e23130c Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Api-Cattle-Auth=true + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"postgresql","uid":"46aa35b4-b1f9-4a41-8246-7d98511837a8","resourceVersion":"109670601","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"postgresql"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_version=HTTP/2.0 Content-Length=1231 Date="Fri, 11 Jul 2025 06:59:49 GMT" timestamp="2025-07-11T08:59:49.470+0200" +2025-07-11T08:59:49.470+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"postgresql", GenerateName:"", Namespace:"", SelfLink:"", UID:"46aa35b4-b1f9-4a41-8246-7d98511837a8", ResourceVersion:"109670601", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"postgresql"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000aa9218), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000aa9248), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:59:49.470+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes X-Content-Type-Options=nosniff Audit-Id=006dc889-21fa-4e6b-9d30-1223c7a5851f Date="Fri, 11 Jul 2025 06:59:49 GMT" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_code=200 Content-Length=1223 X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_reason="200 OK" tf_http_trans_id=8817f4d5-7d75-1d78-fc0c-7b3c5f3933a8 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json tf_http_op_type=response + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"argocd","uid":"8c7a5f8e-f333-455a-bc71-e979eafb6297","resourceVersion":"109670603","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"argocd"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_version=HTTP/2.0 timestamp="2025-07-11T08:59:49.470+0200" +2025-07-11T08:59:49.470+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"argocd", GenerateName:"", Namespace:"", SelfLink:"", UID:"8c7a5f8e-f333-455a-bc71-e979eafb6297", ResourceVersion:"109670603", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"argocd"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000d8b470), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000d8b4a0), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:59:49.470+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Audit-Id=7735cea6-8c90-4ee9-b883-31806c9b0c55 Content-Type=application/json new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 Date="Fri, 11 Jul 2025 06:59:49 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 Content-Length=1225 X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff tf_http_res_status_code=200 tf_http_trans_id=8e0d0092-8fbf-93b9-75ab-0b96cf984d1d @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"zitadel","uid":"2624b1c4-feb9-4c7a-aa15-4d2f7f5b89de","resourceVersion":"109670602","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"zitadel"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + @module=kubernetes.Kubernetes timestamp="2025-07-11T08:59:49.470+0200" +2025-07-11T08:59:49.470+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"zitadel", GenerateName:"", Namespace:"", SelfLink:"", UID:"2624b1c4-feb9-4c7a-aa15-4d2f7f5b89de", ResourceVersion:"109670602", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"zitadel"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000d15db8), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000d15de8), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:59:49.470+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=1223 X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff tf_http_op_type=response tf_http_res_version=HTTP/2.0 Content-Type=application/json tf_http_res_status_reason="200 OK" tf_http_trans_id=8b8562e2-7772-600c-8e4e-02d5e6f3976a Audit-Id=4cacb611-2ae4-48f2-9e7e-721b71a331f3 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Date="Fri, 11 Jul 2025 06:59:49 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"mongodb","uid":"eae31e15-ed78-4956-9278-4c39b87a8842","resourceVersion":"2007792","creationTimestamp":"2024-11-29T19:03:50Z","labels":{"kubernetes.io/metadata.name":"mongodb"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2024-11-29T19:03:51Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2024-11-29T19:03:51Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2024-11-29T19:03:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2024-11-29T19:03:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_code=200 timestamp="2025-07-11T08:59:49.470+0200" +2025-07-11T08:59:49.470+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=42bb51d1-ad3b-40ac-86b0-94f2feac89ce + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"monitoring","uid":"4e752f54-5f50-4c50-9f26-9b0bc0d1b794","resourceVersion":"109681461","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"monitoring"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:58:49Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:58:49Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:58:48Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 tf_http_trans_id=9492ce88-b1e4-5147-6b49-8d8df00306cc Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=1231 Content-Type=application/json X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 Date="Fri, 11 Jul 2025 06:59:49 GMT" X-Api-Cattle-Auth=true tf_http_op_type=response @module=kubernetes.Kubernetes X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_reason="200 OK" timestamp="2025-07-11T08:59:49.470+0200" +2025-07-11T08:59:49.471+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"monitoring", GenerateName:"", Namespace:"", SelfLink:"", UID:"4e752f54-5f50-4c50-9f26-9b0bc0d1b794", ResourceVersion:"109681461", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"monitoring"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:58:49Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:58:49Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000c4d3c8), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 58, 48, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000c4d3f8), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:59:49.470+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:59:49 GMT" X-Api-Cattle-Auth=true tf_http_op_type=response + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"redis","uid":"3728ddfb-bb3d-47de-bdd5-6cf6ee0b93b7","resourceVersion":"109670608","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"redis"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + Content-Length=1221 X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Audit-Id=0be450ae-ea9a-41d8-b96f-b578363fd9ce new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=3d27437e-ce90-f547-3fb9-bf09e7bed3c3 Content-Type=application/json X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_code=200 timestamp="2025-07-11T08:59:49.470+0200" +2025-07-11T08:59:49.471+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"redis", GenerateName:"", Namespace:"", SelfLink:"", UID:"3728ddfb-bb3d-47de-bdd5-6cf6ee0b93b7", ResourceVersion:"109670608", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"redis"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:16Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000c97ad0), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000c97b00), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:59:49.471+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"mongodb", GenerateName:"", Namespace:"", SelfLink:"", UID:"eae31e15-ed78-4956-9278-4c39b87a8842", ResourceVersion:"2007792", Generation:0, CreationTimestamp:time.Date(2024, time.November, 29, 20, 3, 50, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"mongodb"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2024-11-29T19:03:51Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2024-11-29T19:03:51Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2024, time.November, 29, 20, 3, 50, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000d16468), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2024, time.November, 29, 20, 3, 50, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000d16498), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:59:49.473+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.argocd.kubernetes_namespace.argocd, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute +2025-07-11T08:59:49.473+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.mongodb.kubernetes_namespace.mongodb, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute +2025-07-11T08:59:49.473+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.redis.kubernetes_namespace.redis, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute +2025-07-11T08:59:49.473+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.monitoring.kubernetes_namespace.monitoring, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:59:49.473+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.postgresql.kubernetes_namespace.postgresql[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute +2025-07-11T08:59:49.473+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_secret.argocd-tls" references: [] +2025-07-11T08:59:49.473+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.zitadel.kubernetes_namespace.zitadel[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute +2025-07-11T08:59:49.474+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_secret.redis" references: [] +2025-07-11T08:59:49.474+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth" references: [] +2025-07-11T08:59:49.474+0200 [DEBUG] ReferenceTransformer: "module.redis.helm_release.redis" references: [] +2025-07-11T08:59:49.474+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_secret.zitadel[0]" references: [] +2025-07-11T08:59:49.474+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_secret.postgresql_auth[0]" references: [] +2025-07-11T08:59:49.476+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Checking secret redis +2025-07-11T08:59:49.476+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Checking secret argocd-tls +2025-07-11T08:59:49.476+0200 [DEBUG] provider.terraform-provider-null_v3.2.4_x5: Value switched to prior value due to semantic equality logic: tf_resource_type=null_resource tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/null tf_req_id=b976aeda-1964-f7d1-65b7-63ff64657065 @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:49.476+0200" +2025-07-11T08:59:49.476+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/argocd/secrets/argocd-tls Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev tf_http_op_type=request tf_http_req_version=HTTP/1.1 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" tf_http_req_method=GET tf_http_trans_id=acbc92fe-c12a-dd73-aa37-a39e491dc256 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" timestamp="2025-07-11T08:59:49.476+0200" +2025-07-11T08:59:49.476+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept="application/json, */*" tf_http_op_type=request tf_http_req_body="" tf_http_req_version=HTTP/1.1 tf_http_trans_id=e514e071-b371-95ed-ffdf-5420e86579f2 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_method=GET Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/redis/secrets/redis Accept-Encoding=gzip timestamp="2025-07-11T08:59:49.476+0200" +2025-07-11T08:59:49.476+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Checking secret prometheus-remote-write-auth +2025-07-11T08:59:49.476+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Checking secret zitadel +2025-07-11T08:59:49.476+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev tf_http_op_type=request tf_http_trans_id=0fb2cdbd-a4e3-c03d-3f8f-0a7783cce621 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_body="" tf_http_req_method=GET Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring/secrets/prometheus-remote-write-auth @module=kubernetes.Kubernetes tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T08:59:49.476+0200" +2025-07-11T08:59:49.476+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @module=kubernetes.Kubernetes Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/zitadel/secrets/zitadel @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_trans_id=9d037240-18d5-eb9b-5150-63b2fa74adf8 Accept-Encoding=gzip tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T08:59:49.476+0200" +2025-07-11T08:59:49.478+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000a007e0 Settings:0xc00079c240 RegistryClient:0xc0007a0380 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_rpc=ReadResource tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d timestamp="2025-07-11T08:59:49.478+0200" +2025-07-11T08:59:49.478+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"redis" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"redis" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"7.4.1","chart":"redis","first_deployed":1752215366,"last_deployed":1752215366,"name":"redis","namespace":"redis","notes":"CHART NAME: redis\nCHART VERSION: 20.1.7\nAPP VERSION: 7.4.1\n\n** Please be patient while the chart is being deployed **\n\nRedis® can be accessed via port 6379 on the following DNS name from within your cluster:\n\n redis-master.redis.svc.cluster.local\n\n\n\nTo get your password run:\n\n export REDIS_PASSWORD=$(kubectl get secret --namespace redis redis -o jsonpath=\"{.data.redis-password}\" | base64 -d)\n\nTo connect to your Redis® server:\n\n1. Run a Redis® pod that you can use as a client:\n\n kubectl run --namespace redis redis-client --restart='Never' --env REDIS_PASSWORD=$REDIS_PASSWORD --image docker.io/bitnami/redis:7.4.1-debian-12-r0 --command -- sleep infinity\n\n Use the following command to attach to the pod:\n\n kubectl exec --tty -i redis-client \\\n --namespace redis -- bash\n\n2. Connect using the Redis® CLI:\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h redis-master\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace redis svc/redis-master 6379:6379 &\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h 127.0.0.1 -p 6379\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - replica.resources\n - master.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"architecture\":\"standalone\",\"auth\":{\"enabled\":true,\"existingSecret\":\"redis\",\"existingSecretPasswordKey\":\"redis-password\"},\"master\":{\"persistence\":{\"size\":\"6Gi\"}},\"metrics\":{\"enabled\":false}}","version":"20.1.7"} Name:"redis" Namespace:"redis" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["metrics:\n enabled: false\n\narchitecture: standalone\n\nauth:\n enabled: true\n existingSecret: redis\n existingSecretPasswordKey: 'redis-password'\n\nmaster:\n persistence:\n size: 6Gi\n"] Verify:false Version:"20.1.7" Wait:true WaitForJobs:true}: tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:49.478+0200" +2025-07-11T08:59:49.478+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: redis] Start: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d @module=helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:49.478+0200" +2025-07-11T08:59:49.478+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 KubernetesData=map[] timestamp="2025-07-11T08:59:49.478+0200" +2025-07-11T08:59:49.478+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release @module=helm tf_rpc=ReadResource timestamp="2025-07-11T08:59:49.478+0200" +2025-07-11T08:59:49.478+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_rpc=ReadResource timestamp="2025-07-11T08:59:49.478+0200" +2025-07-11T08:59:49.479+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: redis getRelease post action created: tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:49.478+0200" +2025-07-11T08:59:49.479+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Checking secret postgresql-auth +2025-07-11T08:59:49.479+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" tf_http_trans_id=a3d0a69a-ae43-8bf9-07e3-fd6854ce59ea @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Accept="application/json, */*" tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/postgresql/secrets/postgresql-auth Host=rancher.bridge.fourlights.dev tf_http_req_method=GET tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T08:59:49.479+0200" +2025-07-11T08:59:49.629+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Audit-Id=4d7dcfa7-f966-4f6f-a6fa-80ae0856b4fb Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 06:59:49 GMT" + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"redis","namespace":"redis","uid":"8025a40f-6901-4ee8-92bb-bfaf43082625","resourceVersion":"109670611","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:redis-password":{}},"f:type":{}}}]},"data":{"redis-password":"ZVNPZkw0R1JGYmNEQDVJM0ZiJTBCT1dIS3NjelVySnI="},"type":"Opaque"} + tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff tf_http_op_type=response tf_http_res_status_reason="200 OK" Content-Length=491 Content-Type=application/json X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=e514e071-b371-95ed-ffdf-5420e86579f2 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 timestamp="2025-07-11T08:59:49.629+0200" +2025-07-11T08:59:49.629+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Content-Length=601 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"postgresql-auth","namespace":"postgresql","uid":"02e1e77a-2f52-472a-9f4e-58998a742cff","resourceVersion":"109670606","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:password":{},"f:rootpassword":{}},"f:type":{}}}]},"data":{"password":"NnspTnVjM3RaZU5SMFs/cVRmeGwoKmkwXWctP2tiM259S2U0X1V1eg==","rootpassword":"UHZ3TUl7THpuVmFTPHFfWyhyWEQwcF1jPl9XLTExMiRJWmZkQUgyUQ=="},"type":"generic"} + Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] tf_http_trans_id=a3d0a69a-ae43-8bf9-07e3-fd6854ce59ea Audit-Id=2dcff934-fe38-4711-9b38-15b860acbcf8 Date="Fri, 11 Jul 2025 06:59:49 GMT" X-Api-Cattle-Auth=true tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Content-Type=application/json X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_reason="200 OK" timestamp="2025-07-11T08:59:49.629+0200" +2025-07-11T08:59:49.629+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_res_version=HTTP/2.0 Content-Length=384 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"argocd-tls","namespace":"argocd","uid":"104b95c0-233e-4544-b94c-310faf05fc16","resourceVersion":"109670604","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:type":{}}}]},"type":"Opaque"} + X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=01f3cd26-297b-4502-adff-aee45b05424f Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] tf_http_trans_id=acbc92fe-c12a-dd73-aa37-a39e491dc256 Date="Fri, 11 Jul 2025 06:59:49 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_code=200 @module=kubernetes.Kubernetes Content-Type=application/json tf_http_op_type=response tf_http_res_status_reason="200 OK" timestamp="2025-07-11T08:59:49.629+0200" +2025-07-11T08:59:49.629+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Content-Type-Options=nosniff tf_http_trans_id=9d037240-18d5-eb9b-5150-63b2fa74adf8 @module=kubernetes.Kubernetes tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"zitadel","namespace":"zitadel","uid":"82dac3ea-12ea-4359-ba5c-04454217d607","resourceVersion":"109670607","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:masterkey":{}},"f:type":{}}}]},"data":{"masterkey":"Tm5nTm1VZmYleFZtc01IeUExbXktPk9lW04mRyFkKTo="},"type":"Opaque"} + tf_http_res_status_reason="200 OK" Content-Length=485 Content-Type=application/json X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_code=200 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=96c79ab6-31c9-4c37-b39e-b1564434914b Date="Fri, 11 Jul 2025 06:59:49 GMT" tf_http_res_version=HTTP/2.0 timestamp="2025-07-11T08:59:49.629+0200" +2025-07-11T08:59:49.630+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes tf_http_op_type=response tf_http_res_status_code=200 X-Api-Cattle-Auth=true X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 Audit-Id=54ba1278-5d35-4d4c-a1f0-2bc79272e7f9 Content-Length=537 Content-Type=application/json Date="Fri, 11 Jul 2025 06:59:49 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"prometheus-remote-write-auth","namespace":"monitoring","uid":"15a01c82-9a5b-4f4f-8a35-8710850a1aea","resourceVersion":"109670609","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:password":{},"f:username":{}},"f:type":{}}}]},"data":{"password":"eW91ci1zZWN1cmUtcGFzc3dvcmQ=","username":"cHJvbWV0aGV1cw=="},"type":"Opaque"} + tf_http_trans_id=0fb2cdbd-a4e3-c03d-3f8f-0a7783cce621 X-Content-Type-Options=nosniff @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] tf_http_res_status_reason="200 OK" timestamp="2025-07-11T08:59:49.629+0200" +2025-07-11T08:59:49.630+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Reading secret postgresql-auth +2025-07-11T08:59:49.630+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Reading secret argocd-tls +2025-07-11T08:59:49.630+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Reading secret redis +2025-07-11T08:59:49.630+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Reading secret zitadel +2025-07-11T08:59:49.630+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Reading secret prometheus-remote-write-auth +2025-07-11T08:59:49.630+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_op_type=request tf_http_req_body="" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=c1f27345-5d92-decb-196d-30acff41f3ec Accept="application/json, */*" Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/redis/secrets/redis tf_http_req_version=HTTP/1.1 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_method=GET @module=kubernetes.Kubernetes Host=rancher.bridge.fourlights.dev timestamp="2025-07-11T08:59:49.630+0200" +2025-07-11T08:59:49.630+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @module=kubernetes.Kubernetes tf_http_op_type=request tf_http_req_method=GET tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept-Encoding=gzip tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/argocd/secrets/argocd-tls Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=b2e8f044-5ba2-f5e2-7ed3-d9a19ac08f1c timestamp="2025-07-11T08:59:49.630+0200" +2025-07-11T08:59:49.630+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_op_type=request tf_http_req_body="" tf_http_trans_id=211128ef-2903-7dc9-0811-40190ccc8eaf Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/postgresql/secrets/postgresql-auth tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" Accept="application/json, */*" timestamp="2025-07-11T08:59:49.630+0200" +2025-07-11T08:59:49.630+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring/secrets/prometheus-remote-write-auth @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=d5cbd18f-a5d4-d901-41a9-311dc7cbe204 @module=kubernetes.Kubernetes User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_body="" Accept-Encoding=gzip tf_http_req_method=GET tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T08:59:49.630+0200" +2025-07-11T08:59:49.630+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/zitadel/secrets/zitadel tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_body="" Accept="application/json, */*" Accept-Encoding=gzip tf_http_trans_id=867b5b16-6da3-29b4-1de4-78bd735c2346 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 timestamp="2025-07-11T08:59:49.630+0200" +2025-07-11T08:59:49.773+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_trans_id=c1f27345-5d92-decb-196d-30acff41f3ec @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"redis","namespace":"redis","uid":"8025a40f-6901-4ee8-92bb-bfaf43082625","resourceVersion":"109670611","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:redis-password":{}},"f:type":{}}}]},"data":{"redis-password":"ZVNPZkw0R1JGYmNEQDVJM0ZiJTBCT1dIS3NjelVySnI="},"type":"Opaque"} + tf_http_res_status_code=200 Audit-Id=e4cff386-1ad3-468d-921a-a5c8d4bcbcc3 Content-Length=491 Content-Type=application/json tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes X-Api-Cattle-Auth=true new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." Date="Fri, 11 Jul 2025 06:59:49 GMT" X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response timestamp="2025-07-11T08:59:49.773+0200" +2025-07-11T08:59:49.773+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Received secret: v1.ObjectMeta{Name:"redis", GenerateName:"", Namespace:"redis", SelfLink:"", UID:"8025a40f-6901-4ee8-92bb-bfaf43082625", ResourceVersion:"109670611", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000bdb608), Subresource:""}}} +2025-07-11T08:59:49.773+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"postgresql-auth","namespace":"postgresql","uid":"02e1e77a-2f52-472a-9f4e-58998a742cff","resourceVersion":"109670606","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:password":{},"f:rootpassword":{}},"f:type":{}}}]},"data":{"password":"NnspTnVjM3RaZU5SMFs/cVRmeGwoKmkwXWctP2tiM259S2U0X1V1eg==","rootpassword":"UHZ3TUl7THpuVmFTPHFfWyhyWEQwcF1jPl9XLTExMiRJWmZkQUgyUQ=="},"type":"generic"} + tf_http_res_version=HTTP/2.0 tf_http_trans_id=211128ef-2903-7dc9-0811-40190ccc8eaf Audit-Id=277da5d4-b9d6-4f18-906a-ef338e7f84e6 X-Content-Type-Options=nosniff @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=601 Date="Fri, 11 Jul 2025 06:59:49 GMT" X-Api-Cattle-Auth=true X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Type=application/json X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 timestamp="2025-07-11T08:59:49.773+0200" +2025-07-11T08:59:49.773+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Received secret: v1.ObjectMeta{Name:"postgresql-auth", GenerateName:"", Namespace:"postgresql", SelfLink:"", UID:"02e1e77a-2f52-472a-9f4e-58998a742cff", ResourceVersion:"109670606", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000cc4c60), Subresource:""}}} +2025-07-11T08:59:49.773+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"argocd-tls","namespace":"argocd","uid":"104b95c0-233e-4544-b94c-310faf05fc16","resourceVersion":"109670604","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:type":{}}}]},"type":"Opaque"} + @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_res_status_reason="200 OK" tf_http_trans_id=b2e8f044-5ba2-f5e2-7ed3-d9a19ac08f1c X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 Audit-Id=5fdc057c-7d26-428e-b288-3a961787e7ee Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=384 Date="Fri, 11 Jul 2025 06:59:49 GMT" X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff @module=kubernetes.Kubernetes Content-Type=application/json new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." timestamp="2025-07-11T08:59:49.773+0200" +2025-07-11T08:59:49.774+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Received secret: v1.ObjectMeta{Name:"argocd-tls", GenerateName:"", Namespace:"argocd", SelfLink:"", UID:"104b95c0-233e-4544-b94c-310faf05fc16", ResourceVersion:"109670604", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc00122e2a0), Subresource:""}}} +2025-07-11T08:59:49.773+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:59:49 [ERROR] setting state: expires: '' expected type 'string', got unconvertible type 'time.Time', value: '0001-01-01 00:00:00 +0000 UTC': timestamp="2025-07-11T08:59:49.773+0200" +2025-07-11T08:59:49.774+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:59:49 [ERROR] setting state: last_modified: '' expected type 'string', got unconvertible type 'time.Time', value: '2024-11-25 13:55:45 +0000 UTC': timestamp="2025-07-11T08:59:49.773+0200" +2025-07-11T08:59:49.774+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Date="Fri, 11 Jul 2025 06:59:49 GMT" tf_http_res_version=HTTP/2.0 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] tf_http_res_status_code=200 tf_http_trans_id=867b5b16-6da3-29b4-1de4-78bd735c2346 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Audit-Id=53b29669-c369-4fb5-ad8c-6aa46f45b86f Content-Length=485 X-Content-Type-Options=nosniff new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_res_status_reason="200 OK" Content-Type=application/json X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"zitadel","namespace":"zitadel","uid":"82dac3ea-12ea-4359-ba5c-04454217d607","resourceVersion":"109670607","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:masterkey":{}},"f:type":{}}}]},"data":{"masterkey":"Tm5nTm1VZmYleFZtc01IeUExbXktPk9lW04mRyFkKTo="},"type":"Opaque"} + timestamp="2025-07-11T08:59:49.774+0200" +2025-07-11T08:59:49.774+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Received secret: v1.ObjectMeta{Name:"zitadel", GenerateName:"", Namespace:"zitadel", SelfLink:"", UID:"82dac3ea-12ea-4359-ba5c-04454217d607", ResourceVersion:"109670607", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001295158), Subresource:""}}} +2025-07-11T08:59:49.774+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Audit-Id=289c15a5-ed5d-492d-92c8-2605f9551e6d Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json X-Content-Type-Options=nosniff new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"prometheus-remote-write-auth","namespace":"monitoring","uid":"15a01c82-9a5b-4f4f-8a35-8710850a1aea","resourceVersion":"109670609","creationTimestamp":"2025-07-11T06:29:15Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:password":{},"f:username":{}},"f:type":{}}}]},"data":{"password":"eW91ci1zZWN1cmUtcGFzc3dvcmQ=","username":"cHJvbWV0aGV1cw=="},"type":"Opaque"} + Date="Fri, 11 Jul 2025 06:59:49 GMT" tf_http_res_version=HTTP/2.0 tf_http_trans_id=d5cbd18f-a5d4-d901-41a9-311dc7cbe204 @module=kubernetes.Kubernetes X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_reason="200 OK" Content-Length=537 X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_op_type=response tf_http_res_status_code=200 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 timestamp="2025-07-11T08:59:49.774+0200" +2025-07-11T08:59:49.774+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:49 [INFO] Received secret: v1.ObjectMeta{Name:"prometheus-remote-write-auth", GenerateName:"", Namespace:"monitoring", SelfLink:"", UID:"15a01c82-9a5b-4f4f-8a35-8710850a1aea", ResourceVersion:"109670609", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0010a4600), Subresource:""}}} +2025-07-11T08:59:49.774+0200 [DEBUG] created provider logger: level=debug +2025-07-11T08:59:49.774+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T08:59:49.779+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T08:59:49.779+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=975331 +2025-07-11T08:59:49.779+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T08:59:49.786+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T08:59:49.786+0200" +2025-07-11T08:59:49.786+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: longhorn getRelease post run: tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 @module=helm timestamp="2025-07-11T08:59:49.786+0200" +2025-07-11T08:59:49.786+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: longhorn getRelease completed: tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm timestamp="2025-07-11T08:59:49.786+0200" +2025-07-11T08:59:49.786+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: longhorn] Done: @module=helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 timestamp="2025-07-11T08:59:49.786+0200" +2025-07-11T08:59:49.786+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: longhorn] Started: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:49.786+0200" +2025-07-11T08:59:49.787+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:49.786+0200" +2025-07-11T08:59:49.787+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: configPaths=[] tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 timestamp="2025-07-11T08:59:49.787+0200" +2025-07-11T08:59:49.787+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release timestamp="2025-07-11T08:59:49.787+0200" +2025-07-11T08:59:49.787+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: longhorn getRelease post action created: tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:49.787+0200" +2025-07-11T08:59:49.813+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T08:59:49.813+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin1259736474 network=unix timestamp="2025-07-11T08:59:49.813+0200" +2025-07-11T08:59:49.826+0200 [WARN] ValidateProviderConfig from "module.tenant-365zon.module.minio.provider[\"registry.terraform.io/aminueza/minio\"]" changed the config value, but that value is unused +2025-07-11T08:59:49.826+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:59:49 [DEBUG] MinIO SSL client transport configured successfully: timestamp="2025-07-11T08:59:49.826+0200" +2025-07-11T08:59:49.827+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay" references: [] +2025-07-11T08:59:49.827+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay" references: [] +2025-07-11T08:59:49.827+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.monitoring.kubernetes_secret.prometheus_remote_write_auth, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .immutable: planned value cty.False for a non-computed attribute + - .type: planned value cty.StringVal("Opaque") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute +2025-07-11T08:59:49.827+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.redis.kubernetes_secret.redis, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:59:49.827+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.zitadel.kubernetes_secret.zitadel[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .type: planned value cty.StringVal("Opaque") for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute +2025-07-11T08:59:49.828+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:49.828+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.postgresql.kubernetes_secret.postgresql_auth[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute +2025-07-11T08:59:49.828+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.argocd.kubernetes_secret.argocd-tls, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .type: planned value cty.StringVal("Opaque") for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:59:49.829+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 id=974957 +2025-07-11T08:59:49.829+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:49.829+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:49.830+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=974980 +2025-07-11T08:59:49.830+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:49.830+0200 [DEBUG] ReferenceTransformer: "module.postgresql.helm_release.postgresql[0]" references: [] +2025-07-11T08:59:49.830+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:49.832+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=975173 +2025-07-11T08:59:49.832+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:49.832+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:49.833+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=975039 +2025-07-11T08:59:49.833+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:49.834+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:49.835+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=975234 +2025-07-11T08:59:49.835+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:49.835+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:49.836+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=975203 +2025-07-11T08:59:49.836+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:49.836+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:59:49 [DEBUG] Reading bucket [365zon2] in region [eu-central-1]: timestamp="2025-07-11T08:59:49.836+0200" +2025-07-11T08:59:49.840+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0008f62a0 Settings:0xc0008fd440 RegistryClient:0xc0006d3600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:49.839+0200" +2025-07-11T08:59:49.840+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"postgresql" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"postgresql" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"17.0.0","chart":"postgresql","first_deployed":1752215369,"last_deployed":1752215369,"name":"postgresql","namespace":"postgresql","notes":"CHART NAME: postgresql\nCHART VERSION: 16.0.5\nAPP VERSION: 17.0.0\n\n** Please be patient while the chart is being deployed **\n\nWARNING: PostgreSQL has been configured without authentication, this is not recommended for production environments.\n\nPostgreSQL can be accessed via port 5432 on the following DNS names from within your cluster:\n\n postgresql.postgresql.svc.cluster.local - Read/Write connection\n\nTo get the password for \"postgres\" run:\n\n export POSTGRES_ADMIN_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.rootpassword}\" | base64 -d)\n\nTo get the password for \"bridge\" run:\n\n export POSTGRES_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.password}\" | base64 -d)\n\nTo connect to your database run the following command:\n\n kubectl run postgresql-client --rm --tty -i --restart='Never' --namespace postgresql --image docker.io/bitnami/postgresql:17.0.0-debian-12-r6 \\\n --command -- psql --host postgresql -d postgres -p 5432\n\n > NOTE: If you access the container using bash, make sure that you execute \"/opt/bitnami/scripts/postgresql/entrypoint.sh /bin/bash\" in order to avoid the error \"psql: local user with ID 1001} does not exist\"\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace postgresql svc/postgresql 5432:5432 &\n psql --host 127.0.0.1 -d postgres -p 5432\n\nWARNING: The configured password will be ignored on new installation in case when previous PostgreSQL release was deleted through the helm command. In that case, old PVC will have an old password, and setting it through helm won't take effect. Deleting persistent volumes (PVs) will solve the issue.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - primary.resources\n - readReplicas.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"auth\":{\"existingSecret\":\"postgresql-auth\",\"secretKeys\":{\"adminPasswordKey\":\"rootpassword\",\"userPasswordKey\":\"password\"},\"username\":\"bridge\"}}","version":"16.0.5"} Name:"postgresql" Namespace:"postgresql" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["auth:\n existingSecret: postgresql-auth\n username: bridge\n secretKeys:\n adminPasswordKey: rootpassword\n userPasswordKey: password\n"] Verify:false Version:"16.0.5" Wait:true WaitForJobs:false}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 timestamp="2025-07-11T08:59:49.840+0200" +2025-07-11T08:59:49.840+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: postgresql] Start: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 tf_resource_type=helm_release tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 timestamp="2025-07-11T08:59:49.840+0200" +2025-07-11T08:59:49.840+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm tf_resource_type=helm_release KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_rpc=ReadResource timestamp="2025-07-11T08:59:49.840+0200" +2025-07-11T08:59:49.840+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @module=helm configPaths=[] tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_rpc=ReadResource timestamp="2025-07-11T08:59:49.840+0200" +2025-07-11T08:59:49.840+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:49.840+0200" +2025-07-11T08:59:49.840+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: postgresql getRelease post action created: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:49.840+0200" +2025-07-11T08:59:50.126+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: longhorn getRelease post run: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release @module=helm timestamp="2025-07-11T08:59:50.126+0200" +2025-07-11T08:59:50.126+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: longhorn getRelease completed: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.126+0200" +2025-07-11T08:59:50.126+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"v1.7.1","chart":"longhorn","first_deployed":1732547795,"last_deployed":1752215357,"name":"longhorn","namespace":"longhorn-system","notes":"Longhorn is now installed on the cluster!\n\nPlease wait a few minutes for other Longhorn components such as CSI deployments, Engine Images, and Instance Managers to be initialized.\n\nVisit our documentation at https://longhorn.io/docs/\n","revision":2,"values":"{\"csi\":{\"kubeletRootDir\":\"/var/lib/kubelet\"},\"defaultSettings\":{\"defaultDataLocality\":\"best-effort\",\"defaultDataPath\":\"/var/lib/longhorn/\",\"storageOverProvisioningPercentage\":90},\"enablePSP\":false,\"persistence\":{\"defaultClassReplicaCount\":1,\"defaultDataLocality\":\"best-effort\"},\"serviceMonitor\":{\"enabled\":true}}","version":"1.7.1"}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 @module=helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.126+0200" +2025-07-11T08:59:50.126+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=disable_crd_hooks tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc timestamp="2025-07-11T08:59:50.126+0200" +2025-07-11T08:59:50.126+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=timeout tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.126+0200" +2025-07-11T08:59:50.126+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=cleanup_on_fail tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:50.126+0200" +2025-07-11T08:59:50.126+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.126+0200" +2025-07-11T08:59:50.126+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_attribute_path=verify tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.126+0200" +2025-07-11T08:59:50.126+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=force_update tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.126+0200" +2025-07-11T08:59:50.126+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=atomic @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:50.126+0200" +2025-07-11T08:59:50.126+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=disable_openapi_validation tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.126+0200" +2025-07-11T08:59:50.126+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=create_namespace tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc timestamp="2025-07-11T08:59:50.126+0200" +2025-07-11T08:59:50.126+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=wait_for_jobs tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.126+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=repository tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.126+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=chart timestamp="2025-07-11T08:59:50.126+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=replace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=wait tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=pass_credentials tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=status tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=disable_webhooks tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=id timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=metadata.namespace timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource @module=sdk.framework tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.values tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.version tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.chart timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.app_version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=metadata.notes tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.revision tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=metadata.name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_attribute_path=metadata.last_deployed tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=metadata.first_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=render_subchart_notes tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[0].type tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[0].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_attribute_path=set[0].name tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource tf_attribute_path=set[0] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[1].name tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource tf_attribute_path=set[1].type tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[1].value timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set[1] tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[2].name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set[2].type tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set[2].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[2] tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc @module=sdk.framework tf_attribute_path=set[3].type tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[3].value timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set[3].name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[3] tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[4].type tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource @module=sdk.framework tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=set[4].value tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=set[4].name tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=set[4] timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[5].type timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[5].value tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=set[5].name tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_attribute_path=set[5] tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=set[6].type @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[6].value tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_attribute_path=set[6].name tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=set[6] tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_rpc=ReadResource tf_attribute_path=set[7].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=set[7].name tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.127+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[7].type tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.128+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[7] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.128+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.128+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc @module=sdk.framework tf_attribute_path=recreate_pods tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.128+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=reset_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.128+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=max_history tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc @module=sdk.framework timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.128+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=skip_crds tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.128+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=lint tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=sdk.framework tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.128+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=name timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.128+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=reuse_values tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.128+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=dependency_update tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=b860dce2-4888-6b57-e3d3-242b3cfac1dc tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.127+0200" +2025-07-11T08:59:50.129+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:50.130+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000000a80 Settings:0xc0004dc7e0 RegistryClient:0xc0004e0280 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ValidateResourceConfig @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_req_id=27c62491-cf3e-e2f0-948c-f97ecae022b3 tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.130+0200" +2025-07-11T08:59:50.133+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000000a80 Settings:0xc0004dc7e0 RegistryClient:0xc0004e0280 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_req_id=dfa38701-359b-2a59-55d6-90a83d754598 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:50.133+0200" +2025-07-11T08:59:50.139+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"longhorn" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"longhorn" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"v1.7.1","chart":"longhorn","first_deployed":1732547795,"last_deployed":1752215357,"name":"longhorn","namespace":"longhorn-system","notes":"Longhorn is now installed on the cluster!\n\nPlease wait a few minutes for other Longhorn components such as CSI deployments, Engine Images, and Instance Managers to be initialized.\n\nVisit our documentation at https://longhorn.io/docs/\n","revision":2,"values":"{\"csi\":{\"kubeletRootDir\":\"/var/lib/kubelet\"},\"defaultSettings\":{\"defaultDataLocality\":\"best-effort\",\"defaultDataPath\":\"/var/lib/longhorn/\",\"storageOverProvisioningPercentage\":90},\"enablePSP\":false,\"persistence\":{\"defaultClassReplicaCount\":1,\"defaultDataLocality\":\"best-effort\"},\"serviceMonitor\":{\"enabled\":true}}","version":"1.7.1"} Name:"longhorn" Namespace:"longhorn-system" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.longhorn.io" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"defaultSettings.defaultDataPath","type":"","value":"/var/lib/longhorn/"},{"name":"defaultSettings.defaultDataLocality","type":"","value":"best-effort"},{"name":"defaultSettings.storageOverProvisioningPercentage","type":"","value":"90"},{"name":"csi.kubeletRootDir","type":"","value":"/var/lib/kubelet"},{"name":"enablePSP","type":"","value":"false"},{"name":"serviceMonitor.enabled","type":"","value":"true"},{"name":"persistence.defaultClassReplicaCount","type":"","value":"1"},{"name":"persistence.defaultDataLocality","type":"","value":"best-effort"}] SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values: Verify:false Version:"1.7.1" Wait:true WaitForJobs:false}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=dfa38701-359b-2a59-55d6-90a83d754598 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 @module=helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:50.139+0200" +2025-07-11T08:59:50.139+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"longhorn" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"longhorn" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"v1.7.1","chart":"longhorn","first_deployed":1732547795,"last_deployed":1752215357,"name":"longhorn","namespace":"longhorn-system","notes":"Longhorn is now installed on the cluster!\n\nPlease wait a few minutes for other Longhorn components such as CSI deployments, Engine Images, and Instance Managers to be initialized.\n\nVisit our documentation at https://longhorn.io/docs/\n","revision":2,"values":"{\"csi\":{\"kubeletRootDir\":\"/var/lib/kubelet\"},\"defaultSettings\":{\"defaultDataLocality\":\"best-effort\",\"defaultDataPath\":\"/var/lib/longhorn/\",\"storageOverProvisioningPercentage\":90},\"enablePSP\":false,\"persistence\":{\"defaultClassReplicaCount\":1,\"defaultDataLocality\":\"best-effort\"},\"serviceMonitor\":{\"enabled\":true}}","version":"1.7.1"} Name:"longhorn" Namespace:"longhorn-system" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.longhorn.io" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"defaultSettings.defaultDataPath","type":"","value":"/var/lib/longhorn/"},{"name":"defaultSettings.defaultDataLocality","type":"","value":"best-effort"},{"name":"defaultSettings.storageOverProvisioningPercentage","type":"","value":"90"},{"name":"csi.kubeletRootDir","type":"","value":"/var/lib/kubelet"},{"name":"enablePSP","type":"","value":"false"},{"name":"serviceMonitor.enabled","type":"","value":"true"},{"name":"persistence.defaultClassReplicaCount","type":"","value":"1"},{"name":"persistence.defaultDataLocality","type":"","value":"best-effort"}] SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values: Verify:false Version:"1.7.1" Wait:true WaitForJobs:false}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=dfa38701-359b-2a59-55d6-90a83d754598 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 timestamp="2025-07-11T08:59:50.139+0200" +2025-07-11T08:59:50.139+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: longhorn] Start: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_req_id=dfa38701-359b-2a59-55d6-90a83d754598 timestamp="2025-07-11T08:59:50.139+0200" +2025-07-11T08:59:50.139+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange tf_req_id=dfa38701-359b-2a59-55d6-90a83d754598 tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.139+0200" +2025-07-11T08:59:50.139+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 configPaths=[] tf_req_id=dfa38701-359b-2a59-55d6-90a83d754598 tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:50.139+0200" +2025-07-11T08:59:50.139+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_req_id=dfa38701-359b-2a59-55d6-90a83d754598 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm timestamp="2025-07-11T08:59:50.139+0200" +2025-07-11T08:59:50.139+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: longhorn] Initial Values: Name=longhorn, Namespace=longhorn-system, Repository=https://charts.longhorn.io, Repository_Username=, Repository_Password=, Chart=longhorn: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=dfa38701-359b-2a59-55d6-90a83d754598 tf_rpc=PlanResourceChange tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.139+0200" +2025-07-11T08:59:50.139+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc0004dc900 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: @module=helm tf_req_id=dfa38701-359b-2a59-55d6-90a83d754598 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:50.139+0200" +2025-07-11T08:59:50.397+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: redis getRelease post run: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.397+0200" +2025-07-11T08:59:50.397+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: redis getRelease completed: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.397+0200" +2025-07-11T08:59:50.397+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: redis] Done: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:50.397+0200" +2025-07-11T08:59:50.397+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: redis] Started: tf_rpc=ReadResource @module=helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d timestamp="2025-07-11T08:59:50.397+0200" +2025-07-11T08:59:50.397+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 timestamp="2025-07-11T08:59:50.397+0200" +2025-07-11T08:59:50.397+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm timestamp="2025-07-11T08:59:50.397+0200" +2025-07-11T08:59:50.397+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @module=helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.397+0200" +2025-07-11T08:59:50.397+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: redis getRelease post action created: @module=helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.397+0200" +2025-07-11T08:59:50.445+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: minio getRelease post run: tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.444+0200" +2025-07-11T08:59:50.445+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: minio getRelease completed: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm timestamp="2025-07-11T08:59:50.444+0200" +2025-07-11T08:59:50.445+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: minio] Done: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.444+0200" +2025-07-11T08:59:50.445+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: minio] Started: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 timestamp="2025-07-11T08:59:50.444+0200" +2025-07-11T08:59:50.445+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_rpc=ReadResource @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 timestamp="2025-07-11T08:59:50.444+0200" +2025-07-11T08:59:50.445+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @module=helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 timestamp="2025-07-11T08:59:50.445+0200" +2025-07-11T08:59:50.445+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @module=helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.445+0200" +2025-07-11T08:59:50.445+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: minio getRelease post action created: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 timestamp="2025-07-11T08:59:50.445+0200" +2025-07-11T08:59:50.550+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:59:50 [WARN] ({ 365zon2 enabled [] 2025-07-11 06:46:17.754225947 +0000 UTC}): timestamp="2025-07-11T08:59:50.550+0200" +2025-07-11T08:59:50.552+0200 [WARN] Provider "registry.terraform.io/aminueza/minio" produced an invalid plan for module.tenant-365zon.module.minio.minio_iam_user.overlay, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .update_secret: planned value cty.False for a non-computed attribute + - .disable_user: planned value cty.False for a non-computed attribute + - .force_destroy: planned value cty.False for a non-computed attribute +2025-07-11T08:59:50.578+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:59:50 [DEBUG] Bucket [365zon2] exists!: timestamp="2025-07-11T08:59:50.578+0200" +2025-07-11T08:59:50.579+0200 [WARN] Provider "registry.terraform.io/aminueza/minio" produced an invalid plan for module.tenant-365zon.module.minio.minio_s3_bucket.overlay, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .force_destroy: planned value cty.False for a non-computed attribute + - .object_locking: planned value cty.False for a non-computed attribute +2025-07-11T08:59:50.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay" references: [] +2025-07-11T08:59:50.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay" references: [] +2025-07-11T08:59:50.580+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay" references: [] +2025-07-11T08:59:50.581+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:59:50 [DEBUG] Getting IAM Policy: 365zon2: timestamp="2025-07-11T08:59:50.581+0200" +2025-07-11T08:59:50.581+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:59:50 [DEBUG] S3 bucket policy, read for bucket: 365zon2: timestamp="2025-07-11T08:59:50.581+0200" +2025-07-11T08:59:50.716+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay" references: [] +2025-07-11T08:59:50.717+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:59:50 [DEBUG] Locking "365zon2": timestamp="2025-07-11T08:59:50.717+0200" +2025-07-11T08:59:50.717+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:59:50 [DEBUG] Locked "365zon2": timestamp="2025-07-11T08:59:50.717+0200" +2025-07-11T08:59:50.717+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:59:50 [DEBUG] UserPolicyAttachment: is user '365zon2' an LDAP user? false: timestamp="2025-07-11T08:59:50.717+0200" +2025-07-11T08:59:50.721+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: redis getRelease post run: tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d timestamp="2025-07-11T08:59:50.721+0200" +2025-07-11T08:59:50.721+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: redis getRelease completed: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.721+0200" +2025-07-11T08:59:50.721+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"7.4.1","chart":"redis","first_deployed":1752215366,"last_deployed":1752215366,"name":"redis","namespace":"redis","notes":"CHART NAME: redis\nCHART VERSION: 20.1.7\nAPP VERSION: 7.4.1\n\n** Please be patient while the chart is being deployed **\n\nRedis® can be accessed via port 6379 on the following DNS name from within your cluster:\n\n redis-master.redis.svc.cluster.local\n\n\n\nTo get your password run:\n\n export REDIS_PASSWORD=$(kubectl get secret --namespace redis redis -o jsonpath=\"{.data.redis-password}\" | base64 -d)\n\nTo connect to your Redis® server:\n\n1. Run a Redis® pod that you can use as a client:\n\n kubectl run --namespace redis redis-client --restart='Never' --env REDIS_PASSWORD=$REDIS_PASSWORD --image docker.io/bitnami/redis:7.4.1-debian-12-r0 --command -- sleep infinity\n\n Use the following command to attach to the pod:\n\n kubectl exec --tty -i redis-client \\\n --namespace redis -- bash\n\n2. Connect using the Redis® CLI:\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h redis-master\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace redis svc/redis-master 6379:6379 &\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h 127.0.0.1 -p 6379\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - replica.resources\n - master.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"architecture\":\"standalone\",\"auth\":{\"enabled\":true,\"existingSecret\":\"redis\",\"existingSecretPasswordKey\":\"redis-password\"},\"master\":{\"persistence\":{\"size\":\"6Gi\"}},\"metrics\":{\"enabled\":false}}","version":"20.1.7"}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 @module=helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d timestamp="2025-07-11T08:59:50.721+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=cleanup_on_fail tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=pass_credentials timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=reuse_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_rpc=ReadResource tf_attribute_path=chart tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=create_namespace tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=wait_for_jobs tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=disable_webhooks timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=skip_crds tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release tf_attribute_path=dependency_update tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=repository tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=wait tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=verify tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=status tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=force_update tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=disable_openapi_validation tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=metadata.app_version tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.last_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release @module=sdk.framework tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.revision tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d @module=sdk.framework timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.notes tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @module=sdk.framework tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.namespace tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_attribute_path=metadata.name tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework tf_attribute_path=metadata.chart tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=metadata.first_deployed timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_attribute_path=metadata.version tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.722+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=timeout tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=values[0] tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=values tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d timestamp="2025-07-11T08:59:50.722+0200" +2025-07-11T08:59:50.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=reset_values timestamp="2025-07-11T08:59:50.723+0200" +2025-07-11T08:59:50.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=lint tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:59:50.723+0200" +2025-07-11T08:59:50.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=recreate_pods tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:50.723+0200" +2025-07-11T08:59:50.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=replace tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:50.723+0200" +2025-07-11T08:59:50.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.723+0200" +2025-07-11T08:59:50.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=disable_crd_hooks tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.723+0200" +2025-07-11T08:59:50.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=atomic timestamp="2025-07-11T08:59:50.723+0200" +2025-07-11T08:59:50.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d @module=sdk.framework tf_attribute_path=render_subchart_notes tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.723+0200" +2025-07-11T08:59:50.723+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=max_history tf_req_id=95d194c8-ad92-6d3c-901f-1034d12b2f3d tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.723+0200" +2025-07-11T08:59:50.724+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:50.725+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000a007e0 Settings:0xc00079c240 RegistryClient:0xc0007a0380 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_req_id=d785fccc-f1ec-6a21-0d98-25a75e0375f6 tf_resource_type=helm_release tf_rpc=ValidateResourceConfig tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:50.725+0200" +2025-07-11T08:59:50.726+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000a007e0 Settings:0xc00079c240 RegistryClient:0xc0007a0380 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f478a758-4d67-25d9-f667-769a3c602a1e tf_resource_type=helm_release @module=helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:50.726+0200" +2025-07-11T08:59:50.732+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"redis" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"redis" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"7.4.1","chart":"redis","first_deployed":1752215366,"last_deployed":1752215366,"name":"redis","namespace":"redis","notes":"CHART NAME: redis\nCHART VERSION: 20.1.7\nAPP VERSION: 7.4.1\n\n** Please be patient while the chart is being deployed **\n\nRedis® can be accessed via port 6379 on the following DNS name from within your cluster:\n\n redis-master.redis.svc.cluster.local\n\n\n\nTo get your password run:\n\n export REDIS_PASSWORD=$(kubectl get secret --namespace redis redis -o jsonpath=\"{.data.redis-password}\" | base64 -d)\n\nTo connect to your Redis® server:\n\n1. Run a Redis® pod that you can use as a client:\n\n kubectl run --namespace redis redis-client --restart='Never' --env REDIS_PASSWORD=$REDIS_PASSWORD --image docker.io/bitnami/redis:7.4.1-debian-12-r0 --command -- sleep infinity\n\n Use the following command to attach to the pod:\n\n kubectl exec --tty -i redis-client \\\n --namespace redis -- bash\n\n2. Connect using the Redis® CLI:\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h redis-master\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace redis svc/redis-master 6379:6379 &\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h 127.0.0.1 -p 6379\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - replica.resources\n - master.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"architecture\":\"standalone\",\"auth\":{\"enabled\":true,\"existingSecret\":\"redis\",\"existingSecretPasswordKey\":\"redis-password\"},\"master\":{\"persistence\":{\"size\":\"6Gi\"}},\"metrics\":{\"enabled\":false}}","version":"20.1.7"} Name:"redis" Namespace:"redis" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["metrics:\n enabled: false\n\narchitecture: standalone\n\nauth:\n enabled: true\n existingSecret: redis\n existingSecretPasswordKey: 'redis-password'\n\nmaster:\n persistence:\n size: 6Gi\n"] Verify:false Version:"20.1.7" Wait:true WaitForJobs:true}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f478a758-4d67-25d9-f667-769a3c602a1e @module=helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:50.732+0200" +2025-07-11T08:59:50.732+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"redis" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"redis" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"7.4.1","chart":"redis","first_deployed":1752215366,"last_deployed":1752215366,"name":"redis","namespace":"redis","notes":"CHART NAME: redis\nCHART VERSION: 20.1.7\nAPP VERSION: 7.4.1\n\n** Please be patient while the chart is being deployed **\n\nRedis® can be accessed via port 6379 on the following DNS name from within your cluster:\n\n redis-master.redis.svc.cluster.local\n\n\n\nTo get your password run:\n\n export REDIS_PASSWORD=$(kubectl get secret --namespace redis redis -o jsonpath=\"{.data.redis-password}\" | base64 -d)\n\nTo connect to your Redis® server:\n\n1. Run a Redis® pod that you can use as a client:\n\n kubectl run --namespace redis redis-client --restart='Never' --env REDIS_PASSWORD=$REDIS_PASSWORD --image docker.io/bitnami/redis:7.4.1-debian-12-r0 --command -- sleep infinity\n\n Use the following command to attach to the pod:\n\n kubectl exec --tty -i redis-client \\\n --namespace redis -- bash\n\n2. Connect using the Redis® CLI:\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h redis-master\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace redis svc/redis-master 6379:6379 &\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h 127.0.0.1 -p 6379\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - replica.resources\n - master.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"architecture\":\"standalone\",\"auth\":{\"enabled\":true,\"existingSecret\":\"redis\",\"existingSecretPasswordKey\":\"redis-password\"},\"master\":{\"persistence\":{\"size\":\"6Gi\"}},\"metrics\":{\"enabled\":false}}","version":"20.1.7"} Name:"redis" Namespace:"redis" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["metrics:\n enabled: false\n\narchitecture: standalone\n\nauth:\n enabled: true\n existingSecret: redis\n existingSecretPasswordKey: 'redis-password'\n\nmaster:\n persistence:\n size: 6Gi\n"] Verify:false Version:"20.1.7" Wait:true WaitForJobs:true}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 @module=helm tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f478a758-4d67-25d9-f667-769a3c602a1e timestamp="2025-07-11T08:59:50.732+0200" +2025-07-11T08:59:50.732+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: redis] Start: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 @module=helm tf_req_id=f478a758-4d67-25d9-f667-769a3c602a1e tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:50.732+0200" +2025-07-11T08:59:50.732+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 KubernetesData=map[] tf_req_id=f478a758-4d67-25d9-f667-769a3c602a1e timestamp="2025-07-11T08:59:50.732+0200" +2025-07-11T08:59:50.732+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm tf_req_id=f478a758-4d67-25d9-f667-769a3c602a1e configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:50.732+0200" +2025-07-11T08:59:50.732+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f478a758-4d67-25d9-f667-769a3c602a1e tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.732+0200" +2025-07-11T08:59:50.732+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: redis] Initial Values: Name=redis, Namespace=redis, Repository=https://charts.bitnami.com/bitnami, Repository_Username=, Repository_Password=, Chart=redis: @module=helm tf_req_id=f478a758-4d67-25d9-f667-769a3c602a1e @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:50.732+0200" +2025-07-11T08:59:50.732+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc00079c360 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: tf_req_id=f478a758-4d67-25d9-f667-769a3c602a1e tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 timestamp="2025-07-11T08:59:50.732+0200" +2025-07-11T08:59:50.741+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: postgresql getRelease post run: tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 @module=helm timestamp="2025-07-11T08:59:50.741+0200" +2025-07-11T08:59:50.741+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: postgresql getRelease completed: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.741+0200" +2025-07-11T08:59:50.741+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: postgresql] Done: tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 timestamp="2025-07-11T08:59:50.741+0200" +2025-07-11T08:59:50.741+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: postgresql] Started: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release timestamp="2025-07-11T08:59:50.741+0200" +2025-07-11T08:59:50.741+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: KubernetesData=map[] tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.741+0200" +2025-07-11T08:59:50.741+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @module=helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.741+0200" +2025-07-11T08:59:50.741+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 @module=helm timestamp="2025-07-11T08:59:50.741+0200" +2025-07-11T08:59:50.741+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: postgresql getRelease post action created: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_rpc=ReadResource timestamp="2025-07-11T08:59:50.741+0200" +2025-07-11T08:59:51.005+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:59:51 [DEBUG] Unlocking "365zon2": timestamp="2025-07-11T08:59:51.005+0200" +2025-07-11T08:59:51.006+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:59:51 [DEBUG] Unlocked "365zon2": timestamp="2025-07-11T08:59:51.005+0200" +2025-07-11T08:59:51.030+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: minio getRelease post run: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef timestamp="2025-07-11T08:59:51.030+0200" +2025-07-11T08:59:51.030+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: minio getRelease completed: @module=helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:51.030+0200" +2025-07-11T08:59:51.030+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"2025.3.12","chart":"minio","first_deployed":1732564007,"last_deployed":1752215358,"name":"minio","namespace":"minio","notes":"CHART NAME: minio\nCHART VERSION: 16.0.0\nAPP VERSION: 2025.3.12\n\nDid you know there are enterprise versions of the Bitnami catalog? For enhanced secure software supply chain features, unlimited pulls from Docker, LTS support, or application customization, see Bitnami Premium or Tanzu Application Catalog. See https://www.arrow.com/globalecs/na/vendors/bitnami for more information.\n\n** Please be patient while the chart is being deployed **\n\nMinIO® can be accessed via port on the following DNS name from within your cluster:\n\n minio.minio.svc.cluster.local\n\nTo get your credentials run:\n\n export ROOT_USER=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-user}\" | base64 -d)\n export ROOT_PASSWORD=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-password}\" | base64 -d)\n\nTo connect to your MinIO® server using a client:\n\n- Run a MinIO® Client pod and append the desired command (e.g. 'admin info'):\n\n kubectl run --namespace minio minio-client \\\n --rm --tty -i --restart='Never' \\\n --env MINIO_SERVER_ROOT_USER=$ROOT_USER \\\n --env MINIO_SERVER_ROOT_PASSWORD=$ROOT_PASSWORD \\\n --env MINIO_SERVER_HOST=minio \\\n --image docker.io/bitnami/minio-client:2025.3.12-debian-12-r0 -- admin info minio\n\nTo access the MinIO® web UI:\n\n- Get the MinIO® URL:\n\n You should be able to access your new MinIO® web UI through\n\n http://storage-admin.365zon.fourlights.dev/minio/\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"apiIngress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"auth\":{\"rootPassword\":\"(sensitive value)\",\"rootUser\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage-admin.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"mode\":\"standalone\",\"persistence\":{\"size\":\"40Gi\"},\"resourcesPreset\":\"nano\",\"statefulset\":{\"drivesPerNode\":2,\"replicaCount\":1},\"tls\":{\"enabled\":false}}","version":"16.0.0"}: tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 @module=helm timestamp="2025-07-11T08:59:51.030+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework tf_attribute_path=create_namespace tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @module=sdk.framework tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=disable_webhooks tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=name tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=disable_crd_hooks tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=wait_for_jobs tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=lint tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef @module=sdk.framework tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=dependency_update timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_attribute_path=wait tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @module=sdk.framework tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=chart tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=metadata.app_version tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.values tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_attribute_path=metadata.version tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.revision tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef @module=sdk.framework tf_attribute_path=metadata.notes tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource tf_attribute_path=metadata.name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=metadata.last_deployed tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.chart tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=metadata.first_deployed @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=metadata tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=pass_credentials timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=recreate_pods tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=repository tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=atomic tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=status tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=verify tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=max_history @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource tf_attribute_path=reuse_values tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_attribute_path=render_subchart_notes timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=skip_crds tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=force_update tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=disable_openapi_validation tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=timeout tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource tf_attribute_path=values[0] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=cleanup_on_fail tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_attribute_path=id tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=replace tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=version tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set_sensitive[0].value tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set_sensitive[0].name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.031+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set_sensitive[0] tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource tf_attribute_path=set_sensitive[1].value tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.031+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=set_sensitive[1].name tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource tf_attribute_path=set_sensitive[1] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set_sensitive tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set[0].name @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=set[0].type timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource tf_attribute_path=set[0].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[0] tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[1].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[1].name tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=set[1].type tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=set[1] tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[2].type tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_attribute_path=set[2].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=set[2].name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[2] @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[3].value tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=set[3].name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[3].type tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_rpc=ReadResource @module=sdk.framework tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[3] tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[4].name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set[4].type tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[4].value tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[4] tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.032+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=reset_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_req_id=95d301eb-56c8-39ca-9638-7e192cd108ef tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.032+0200" +2025-07-11T08:59:51.034+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:51.035+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc00083c2a0 Settings:0xc000843440 RegistryClient:0xc0005c7600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ValidateResourceConfig tf_req_id=6325c38c-a24a-67af-492b-bda7ed3058cb tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 timestamp="2025-07-11T08:59:51.035+0200" +2025-07-11T08:59:51.038+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc00083c2a0 Settings:0xc000843440 RegistryClient:0xc0005c7600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_req_id=042e2134-0c7e-8e0d-0c87-943e19ddb710 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:51.038+0200" +2025-07-11T08:59:51.044+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"minio" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"minio" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"2025.3.12","chart":"minio","first_deployed":1732564007,"last_deployed":1752215358,"name":"minio","namespace":"minio","notes":"CHART NAME: minio\nCHART VERSION: 16.0.0\nAPP VERSION: 2025.3.12\n\nDid you know there are enterprise versions of the Bitnami catalog? For enhanced secure software supply chain features, unlimited pulls from Docker, LTS support, or application customization, see Bitnami Premium or Tanzu Application Catalog. See https://www.arrow.com/globalecs/na/vendors/bitnami for more information.\n\n** Please be patient while the chart is being deployed **\n\nMinIO® can be accessed via port on the following DNS name from within your cluster:\n\n minio.minio.svc.cluster.local\n\nTo get your credentials run:\n\n export ROOT_USER=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-user}\" | base64 -d)\n export ROOT_PASSWORD=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-password}\" | base64 -d)\n\nTo connect to your MinIO® server using a client:\n\n- Run a MinIO® Client pod and append the desired command (e.g. 'admin info'):\n\n kubectl run --namespace minio minio-client \\\n --rm --tty -i --restart='Never' \\\n --env MINIO_SERVER_ROOT_USER=$ROOT_USER \\\n --env MINIO_SERVER_ROOT_PASSWORD=$ROOT_PASSWORD \\\n --env MINIO_SERVER_HOST=minio \\\n --image docker.io/bitnami/minio-client:2025.3.12-debian-12-r0 -- admin info minio\n\nTo access the MinIO® web UI:\n\n- Get the MinIO® URL:\n\n You should be able to access your new MinIO® web UI through\n\n http://storage-admin.365zon.fourlights.dev/minio/\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"apiIngress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"auth\":{\"rootPassword\":\"(sensitive value)\",\"rootUser\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage-admin.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"mode\":\"standalone\",\"persistence\":{\"size\":\"40Gi\"},\"resourcesPreset\":\"nano\",\"statefulset\":{\"drivesPerNode\":2,\"replicaCount\":1},\"tls\":{\"enabled\":false}}","version":"16.0.0"} Name:"minio" Namespace:"minio" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"mode","type":"","value":"standalone"},{"name":"resourcesPreset","type":"","value":"nano"},{"name":"statefulset.replicaCount","type":"","value":"1"},{"name":"statefulset.drivesPerNode","type":"","value":"2"},{"name":"persistence.size","type":"","value":"40Gi"}] SetList: SetSensitive:[{"name":"auth.rootUser","type":,"value":"Xg6VDlh9GVliFdnWnVec"},{"name":"auth.rootPassword","type":,"value":"j!4VaGixfD6f*nam7EeC0Sa*OogSqYA=cinX9bPj"}] SkipCrds:false Status:"deployed" Timeout:300 Values:["tls:\n enabled: false\n\ningress:\n enabled: true\n tls: false\n ingressClassName: nginx\n hostname: storage-admin.365zon.fourlights.dev\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n \n ingress.kubernetes.io/proxy-body-size: \"0\"\n nginx.ingress.kubernetes.io/proxy-body-size: \"0\"\n \n \n\napiIngress:\n enabled: true\n ingressClassName: nginx\n tls: false\n hostname: storage.365zon.fourlights.dev\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n \n ingress.kubernetes.io/proxy-body-size: \"0\"\n nginx.ingress.kubernetes.io/proxy-body-size: \"0\"\n \n"] Verify:false Version:"16.0.0" Wait:true WaitForJobs:true}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm tf_req_id=042e2134-0c7e-8e0d-0c87-943e19ddb710 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:51.044+0200" +2025-07-11T08:59:51.044+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"minio" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"minio" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"2025.3.12","chart":"minio","first_deployed":1732564007,"last_deployed":1752215358,"name":"minio","namespace":"minio","notes":"CHART NAME: minio\nCHART VERSION: 16.0.0\nAPP VERSION: 2025.3.12\n\nDid you know there are enterprise versions of the Bitnami catalog? For enhanced secure software supply chain features, unlimited pulls from Docker, LTS support, or application customization, see Bitnami Premium or Tanzu Application Catalog. See https://www.arrow.com/globalecs/na/vendors/bitnami for more information.\n\n** Please be patient while the chart is being deployed **\n\nMinIO® can be accessed via port on the following DNS name from within your cluster:\n\n minio.minio.svc.cluster.local\n\nTo get your credentials run:\n\n export ROOT_USER=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-user}\" | base64 -d)\n export ROOT_PASSWORD=$(kubectl get secret --namespace minio minio -o jsonpath=\"{.data.root-password}\" | base64 -d)\n\nTo connect to your MinIO® server using a client:\n\n- Run a MinIO® Client pod and append the desired command (e.g. 'admin info'):\n\n kubectl run --namespace minio minio-client \\\n --rm --tty -i --restart='Never' \\\n --env MINIO_SERVER_ROOT_USER=$ROOT_USER \\\n --env MINIO_SERVER_ROOT_PASSWORD=$ROOT_PASSWORD \\\n --env MINIO_SERVER_HOST=minio \\\n --image docker.io/bitnami/minio-client:2025.3.12-debian-12-r0 -- admin info minio\n\nTo access the MinIO® web UI:\n\n- Get the MinIO® URL:\n\n You should be able to access your new MinIO® web UI through\n\n http://storage-admin.365zon.fourlights.dev/minio/\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"apiIngress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"auth\":{\"rootPassword\":\"(sensitive value)\",\"rootUser\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"ingress.kubernetes.io/proxy-body-size\":\"0\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/proxy-body-size\":\"0\"},\"enabled\":true,\"hostname\":\"storage-admin.365zon.fourlights.dev\",\"ingressClassName\":\"nginx\",\"tls\":false},\"mode\":\"standalone\",\"persistence\":{\"size\":\"40Gi\"},\"resourcesPreset\":\"nano\",\"statefulset\":{\"drivesPerNode\":2,\"replicaCount\":1},\"tls\":{\"enabled\":false}}","version":"16.0.0"} Name:"minio" Namespace:"minio" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"mode","type":"","value":"standalone"},{"name":"resourcesPreset","type":"","value":"nano"},{"name":"statefulset.replicaCount","type":"","value":"1"},{"name":"statefulset.drivesPerNode","type":"","value":"2"},{"name":"persistence.size","type":"","value":"40Gi"}] SetList: SetSensitive:[{"name":"auth.rootUser","type":,"value":"Xg6VDlh9GVliFdnWnVec"},{"name":"auth.rootPassword","type":,"value":"j!4VaGixfD6f*nam7EeC0Sa*OogSqYA=cinX9bPj"}] SkipCrds:false Status:"deployed" Timeout:300 Values:["tls:\n enabled: false\n\ningress:\n enabled: true\n tls: false\n ingressClassName: nginx\n hostname: storage-admin.365zon.fourlights.dev\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n \n ingress.kubernetes.io/proxy-body-size: \"0\"\n nginx.ingress.kubernetes.io/proxy-body-size: \"0\"\n \n \n\napiIngress:\n enabled: true\n ingressClassName: nginx\n tls: false\n hostname: storage.365zon.fourlights.dev\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n \n ingress.kubernetes.io/proxy-body-size: \"0\"\n nginx.ingress.kubernetes.io/proxy-body-size: \"0\"\n \n"] Verify:false Version:"16.0.0" Wait:true WaitForJobs:true}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=042e2134-0c7e-8e0d-0c87-943e19ddb710 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:51.044+0200" +2025-07-11T08:59:51.044+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: minio] Start: @module=helm tf_req_id=042e2134-0c7e-8e0d-0c87-943e19ddb710 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:51.044+0200" +2025-07-11T08:59:51.044+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm tf_req_id=042e2134-0c7e-8e0d-0c87-943e19ddb710 tf_rpc=PlanResourceChange KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.044+0200" +2025-07-11T08:59:51.044+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @module=helm configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 tf_req_id=042e2134-0c7e-8e0d-0c87-943e19ddb710 timestamp="2025-07-11T08:59:51.044+0200" +2025-07-11T08:59:51.044+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=042e2134-0c7e-8e0d-0c87-943e19ddb710 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 timestamp="2025-07-11T08:59:51.044+0200" +2025-07-11T08:59:51.044+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: minio] Initial Values: Name=minio, Namespace=minio, Repository=oci://registry-1.docker.io/bitnamicharts, Repository_Username=, Repository_Password=, Chart=minio: tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm tf_req_id=042e2134-0c7e-8e0d-0c87-943e19ddb710 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 timestamp="2025-07-11T08:59:51.044+0200" +2025-07-11T08:59:51.044+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc000843560 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=042e2134-0c7e-8e0d-0c87-943e19ddb710 tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:51.044+0200" +2025-07-11T08:59:51.063+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025-07-11T08:59:51.063+0200 [DEBUG] [UpgradeResourceState]: +2025-07-11T08:59:51.063+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: morphed object= +2025-07-11T08:59:51.063+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | tftypes.Object["apiVersion":tftypes.String, "kind":tftypes.String, "metadata":tftypes.Object["annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String, "namespace":tftypes.String, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String], "spec":tftypes.Object["failurePolicy":tftypes.String, "valuesContent":tftypes.String]]<"apiVersion":tftypes.String<"helm.cattle.io/v1">, "kind":tftypes.String<"HelmChartConfig">, "metadata":tftypes.Object["annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String, "namespace":tftypes.String, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String]<"annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String<"rke2-ingress-nginx">, "namespace":tftypes.String<"kube-system">, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String>, "spec":tftypes.Object["failurePolicy":tftypes.String, "valuesContent":tftypes.String]<"failurePolicy":tftypes.String, "valuesContent":tftypes.String<"controller: +2025-07-11T08:59:51.063+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | config: +2025-07-11T08:59:51.063+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | use-forwarded-headers: "true" +2025-07-11T08:59:51.063+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | ">>> +2025-07-11T08:59:51.063+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: postgresql getRelease post run: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release tf_rpc=ReadResource @module=helm timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: postgresql getRelease completed: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"17.0.0","chart":"postgresql","first_deployed":1752215369,"last_deployed":1752215369,"name":"postgresql","namespace":"postgresql","notes":"CHART NAME: postgresql\nCHART VERSION: 16.0.5\nAPP VERSION: 17.0.0\n\n** Please be patient while the chart is being deployed **\n\nWARNING: PostgreSQL has been configured without authentication, this is not recommended for production environments.\n\nPostgreSQL can be accessed via port 5432 on the following DNS names from within your cluster:\n\n postgresql.postgresql.svc.cluster.local - Read/Write connection\n\nTo get the password for \"postgres\" run:\n\n export POSTGRES_ADMIN_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.rootpassword}\" | base64 -d)\n\nTo get the password for \"bridge\" run:\n\n export POSTGRES_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.password}\" | base64 -d)\n\nTo connect to your database run the following command:\n\n kubectl run postgresql-client --rm --tty -i --restart='Never' --namespace postgresql --image docker.io/bitnami/postgresql:17.0.0-debian-12-r6 \\\n --command -- psql --host postgresql -d postgres -p 5432\n\n > NOTE: If you access the container using bash, make sure that you execute \"/opt/bitnami/scripts/postgresql/entrypoint.sh /bin/bash\" in order to avoid the error \"psql: local user with ID 1001} does not exist\"\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace postgresql svc/postgresql 5432:5432 &\n psql --host 127.0.0.1 -d postgres -p 5432\n\nWARNING: The configured password will be ignored on new installation in case when previous PostgreSQL release was deleted through the helm command. In that case, old PVC will have an old password, and setting it through helm won't take effect. Deleting persistent volumes (PVs) will solve the issue.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - primary.resources\n - readReplicas.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"auth\":{\"existingSecret\":\"postgresql-auth\",\"secretKeys\":{\"adminPasswordKey\":\"rootpassword\",\"userPasswordKey\":\"password\"},\"username\":\"bridge\"}}","version":"16.0.5"}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release tf_rpc=ReadResource @module=helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=chart tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=force_update tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=reuse_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_attribute_path=render_subchart_notes timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=helm_release tf_attribute_path=name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=disable_webhooks tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=reset_values tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=verify tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=repository tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=atomic tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=status tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=wait tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=create_namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=cleanup_on_fail tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.notes tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.last_deployed tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.revision tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_attribute_path=metadata.namespace tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.app_version @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_attribute_path=metadata.version tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.170+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.chart tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.171+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.first_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.171+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.name tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.171+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=metadata.values timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.171+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release @module=sdk.framework tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata timestamp="2025-07-11T08:59:51.170+0200" +2025-07-11T08:59:51.171+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=lint tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.171+0200" +2025-07-11T08:59:51.171+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=max_history tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 timestamp="2025-07-11T08:59:51.171+0200" +2025-07-11T08:59:51.171+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.171+0200" +2025-07-11T08:59:51.171+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=disable_openapi_validation tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release @module=sdk.framework tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.171+0200" +2025-07-11T08:59:51.171+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=dependency_update tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.171+0200" +2025-07-11T08:59:51.171+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=disable_crd_hooks tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:51.171+0200" +2025-07-11T08:59:51.171+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=timeout tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:51.171+0200" +2025-07-11T08:59:51.171+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=skip_crds tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.171+0200" +2025-07-11T08:59:51.171+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 timestamp="2025-07-11T08:59:51.171+0200" +2025-07-11T08:59:51.171+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=pass_credentials tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:51.171+0200" +2025-07-11T08:59:51.171+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=values[0] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 timestamp="2025-07-11T08:59:51.171+0200" +2025-07-11T08:59:51.171+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:51.171+0200" +2025-07-11T08:59:51.171+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=namespace tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:51.171+0200" +2025-07-11T08:59:51.171+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=replace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.171+0200" +2025-07-11T08:59:51.171+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=wait_for_jobs tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release @module=sdk.framework tf_rpc=ReadResource timestamp="2025-07-11T08:59:51.171+0200" +2025-07-11T08:59:51.171+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=recreate_pods tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=70a3282e-4a8e-c472-e730-4757543bfd51 tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.171+0200" +2025-07-11T08:59:51.172+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:51.173+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0008f62a0 Settings:0xc0008fd440 RegistryClient:0xc0006d3600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_rpc=ValidateResourceConfig tf_req_id=ecb7726b-35de-6899-3695-2859da1ef9d4 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:51.173+0200" +2025-07-11T08:59:51.174+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0008f62a0 Settings:0xc0008fd440 RegistryClient:0xc0006d3600 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0ddc54d8-846e-7127-4b5d-aaf6e4b0a1b7 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:51.174+0200" +2025-07-11T08:59:51.179+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"postgresql" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"postgresql" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"17.0.0","chart":"postgresql","first_deployed":1752215369,"last_deployed":1752215369,"name":"postgresql","namespace":"postgresql","notes":"CHART NAME: postgresql\nCHART VERSION: 16.0.5\nAPP VERSION: 17.0.0\n\n** Please be patient while the chart is being deployed **\n\nWARNING: PostgreSQL has been configured without authentication, this is not recommended for production environments.\n\nPostgreSQL can be accessed via port 5432 on the following DNS names from within your cluster:\n\n postgresql.postgresql.svc.cluster.local - Read/Write connection\n\nTo get the password for \"postgres\" run:\n\n export POSTGRES_ADMIN_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.rootpassword}\" | base64 -d)\n\nTo get the password for \"bridge\" run:\n\n export POSTGRES_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.password}\" | base64 -d)\n\nTo connect to your database run the following command:\n\n kubectl run postgresql-client --rm --tty -i --restart='Never' --namespace postgresql --image docker.io/bitnami/postgresql:17.0.0-debian-12-r6 \\\n --command -- psql --host postgresql -d postgres -p 5432\n\n > NOTE: If you access the container using bash, make sure that you execute \"/opt/bitnami/scripts/postgresql/entrypoint.sh /bin/bash\" in order to avoid the error \"psql: local user with ID 1001} does not exist\"\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace postgresql svc/postgresql 5432:5432 &\n psql --host 127.0.0.1 -d postgres -p 5432\n\nWARNING: The configured password will be ignored on new installation in case when previous PostgreSQL release was deleted through the helm command. In that case, old PVC will have an old password, and setting it through helm won't take effect. Deleting persistent volumes (PVs) will solve the issue.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - primary.resources\n - readReplicas.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"auth\":{\"existingSecret\":\"postgresql-auth\",\"secretKeys\":{\"adminPasswordKey\":\"rootpassword\",\"userPasswordKey\":\"password\"},\"username\":\"bridge\"}}","version":"16.0.5"} Name:"postgresql" Namespace:"postgresql" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["auth:\n existingSecret: postgresql-auth\n username: bridge\n secretKeys:\n adminPasswordKey: rootpassword\n userPasswordKey: password\n"] Verify:false Version:"16.0.5" Wait:true WaitForJobs:false}: tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0ddc54d8-846e-7127-4b5d-aaf6e4b0a1b7 tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.179+0200" +2025-07-11T08:59:51.179+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"postgresql" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"postgresql" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"17.0.0","chart":"postgresql","first_deployed":1752215369,"last_deployed":1752215369,"name":"postgresql","namespace":"postgresql","notes":"CHART NAME: postgresql\nCHART VERSION: 16.0.5\nAPP VERSION: 17.0.0\n\n** Please be patient while the chart is being deployed **\n\nWARNING: PostgreSQL has been configured without authentication, this is not recommended for production environments.\n\nPostgreSQL can be accessed via port 5432 on the following DNS names from within your cluster:\n\n postgresql.postgresql.svc.cluster.local - Read/Write connection\n\nTo get the password for \"postgres\" run:\n\n export POSTGRES_ADMIN_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.rootpassword}\" | base64 -d)\n\nTo get the password for \"bridge\" run:\n\n export POSTGRES_PASSWORD=$(kubectl get secret --namespace postgresql postgresql-auth -o jsonpath=\"{.data.password}\" | base64 -d)\n\nTo connect to your database run the following command:\n\n kubectl run postgresql-client --rm --tty -i --restart='Never' --namespace postgresql --image docker.io/bitnami/postgresql:17.0.0-debian-12-r6 \\\n --command -- psql --host postgresql -d postgres -p 5432\n\n > NOTE: If you access the container using bash, make sure that you execute \"/opt/bitnami/scripts/postgresql/entrypoint.sh /bin/bash\" in order to avoid the error \"psql: local user with ID 1001} does not exist\"\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace postgresql svc/postgresql 5432:5432 &\n psql --host 127.0.0.1 -d postgres -p 5432\n\nWARNING: The configured password will be ignored on new installation in case when previous PostgreSQL release was deleted through the helm command. In that case, old PVC will have an old password, and setting it through helm won't take effect. Deleting persistent volumes (PVs) will solve the issue.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - primary.resources\n - readReplicas.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"auth\":{\"existingSecret\":\"postgresql-auth\",\"secretKeys\":{\"adminPasswordKey\":\"rootpassword\",\"userPasswordKey\":\"password\"},\"username\":\"bridge\"}}","version":"16.0.5"} Name:"postgresql" Namespace:"postgresql" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["auth:\n existingSecret: postgresql-auth\n username: bridge\n secretKeys:\n adminPasswordKey: rootpassword\n userPasswordKey: password\n"] Verify:false Version:"16.0.5" Wait:true WaitForJobs:false}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0ddc54d8-846e-7127-4b5d-aaf6e4b0a1b7 tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 @module=helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:51.179+0200" +2025-07-11T08:59:51.179+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: postgresql] Start: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 tf_req_id=0ddc54d8-846e-7127-4b5d-aaf6e4b0a1b7 @module=helm timestamp="2025-07-11T08:59:51.179+0200" +2025-07-11T08:59:51.179+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 KubernetesData=map[] tf_req_id=0ddc54d8-846e-7127-4b5d-aaf6e4b0a1b7 @module=helm timestamp="2025-07-11T08:59:51.179+0200" +2025-07-11T08:59:51.179+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_req_id=0ddc54d8-846e-7127-4b5d-aaf6e4b0a1b7 tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 timestamp="2025-07-11T08:59:51.179+0200" +2025-07-11T08:59:51.179+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_req_id=0ddc54d8-846e-7127-4b5d-aaf6e4b0a1b7 timestamp="2025-07-11T08:59:51.179+0200" +2025-07-11T08:59:51.179+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: postgresql] Initial Values: Name=postgresql, Namespace=postgresql, Repository=https://charts.bitnami.com/bitnami, Repository_Username=, Repository_Password=, Chart=postgresql: tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0ddc54d8-846e-7127-4b5d-aaf6e4b0a1b7 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 timestamp="2025-07-11T08:59:51.179+0200" +2025-07-11T08:59:51.179+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc0008fd560 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0ddc54d8-846e-7127-4b5d-aaf6e4b0a1b7 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 timestamp="2025-07-11T08:59:51.179+0200" +2025-07-11T08:59:51.929+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: longhorn] Got chart: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 @module=helm tf_req_id=dfa38701-359b-2a59-55d6-90a83d754598 timestamp="2025-07-11T08:59:51.929+0200" +2025-07-11T08:59:51.930+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 tf_req_id=dfa38701-359b-2a59-55d6-90a83d754598 tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:51.929+0200" +2025-07-11T08:59:51.930+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: longhorn] Release validated: tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=dfa38701-359b-2a59-55d6-90a83d754598 timestamp="2025-07-11T08:59:51.929+0200" +2025-07-11T08:59:51.930+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: longhorn] Done: @module=helm tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=dfa38701-359b-2a59-55d6-90a83d754598 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 timestamp="2025-07-11T08:59:51.929+0200" +2025-07-11T08:59:51.932+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:51.934+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=975271 +2025-07-11T08:59:51.934+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:52.088+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:52.736+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025-07-11T08:59:52.736+0200 [DEBUG] [PlanUpdateResource]: OAPI type="tftypes.Object[\"apiVersion\":tftypes.String, \"kind\":tftypes.String, \"metadata\":tftypes.Object[\"annotations\":tftypes.Map[tftypes.String], \"creationTimestamp\":tftypes.String, \"deletionGracePeriodSeconds\":tftypes.Number, \"deletionTimestamp\":tftypes.String, \"finalizers\":tftypes.List[tftypes.String], \"generateName\":tftypes.String, \"generation\":tftypes.Number, \"labels\":tftypes.Map[tftypes.String], \"managedFields\":tftypes.Tuple[tftypes.Object[\"apiVersion\":tftypes.String, \"fieldsType\":tftypes.String, \"fieldsV1\":tftypes.DynamicPseudoType, \"manager\":tftypes.String, \"operation\":tftypes.String, \"subresource\":tftypes.String, \"time\":tftypes.String]], \"name\":tftypes.String, \"namespace\":tftypes.String, \"ownerReferences\":tftypes.List[tftypes.Object[\"apiVersion\":tftypes.String, \"blockOwnerDeletion\":tftypes.Bool, \"controller\":tftypes.Bool, \"kind\":tftypes.String, \"name\":tftypes.String, \"uid\":tftypes.String]], \"resourceVersion\":tftypes.String, \"selfLink\":tftypes.String, \"uid\":tftypes.String], \"spec\":tftypes.Object[\"failurePolicy\":tftypes.String, \"valuesContent\":tftypes.String]]" +2025-07-11T08:59:52.736+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025-07-11T08:59:52.736+0200 [DEBUG] [PlanResourceChange]: +2025-07-11T08:59:52.736+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: morphed manifest= +2025-07-11T08:59:52.736+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | tftypes.Object["apiVersion":tftypes.String, "kind":tftypes.String, "metadata":tftypes.Object["annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String, "namespace":tftypes.String, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String], "spec":tftypes.Object["failurePolicy":tftypes.String, "valuesContent":tftypes.String]]<"apiVersion":tftypes.String<"helm.cattle.io/v1">, "kind":tftypes.String<"HelmChartConfig">, "metadata":tftypes.Object["annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String, "namespace":tftypes.String, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String]<"annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String<"rke2-ingress-nginx">, "namespace":tftypes.String<"kube-system">, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String>, "spec":tftypes.Object["failurePolicy":tftypes.String, "valuesContent":tftypes.String]<"failurePolicy":tftypes.String, "valuesContent":tftypes.String<"controller: +2025-07-11T08:59:52.736+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | config: +2025-07-11T08:59:52.736+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | use-forwarded-headers: "true" +2025-07-11T08:59:52.736+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | ">>> +2025-07-11T08:59:52.736+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: +2025-07-11T08:59:52.736+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025-07-11T08:59:52.736+0200 [DEBUG] [PlanResourceChange]: +2025-07-11T08:59:52.736+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: backfilled manifest= +2025-07-11T08:59:52.736+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | tftypes.Object["apiVersion":tftypes.String, "kind":tftypes.String, "metadata":tftypes.Object["annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String, "namespace":tftypes.String, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String], "spec":tftypes.Object["failurePolicy":tftypes.String, "valuesContent":tftypes.String]]<"apiVersion":tftypes.String<"helm.cattle.io/v1">, "kind":tftypes.String<"HelmChartConfig">, "metadata":tftypes.Object["annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String, "namespace":tftypes.String, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String]<"annotations":tftypes.Map[tftypes.String], "creationTimestamp":tftypes.String, "deletionGracePeriodSeconds":tftypes.Number, "deletionTimestamp":tftypes.String, "finalizers":tftypes.List[tftypes.String], "generateName":tftypes.String, "generation":tftypes.Number, "labels":tftypes.Map[tftypes.String], "managedFields":tftypes.Tuple[tftypes.Object["apiVersion":tftypes.String, "fieldsType":tftypes.String, "fieldsV1":tftypes.DynamicPseudoType, "manager":tftypes.String, "operation":tftypes.String, "subresource":tftypes.String, "time":tftypes.String]], "name":tftypes.String<"rke2-ingress-nginx">, "namespace":tftypes.String<"kube-system">, "ownerReferences":tftypes.List[tftypes.Object["apiVersion":tftypes.String, "blockOwnerDeletion":tftypes.Bool, "controller":tftypes.Bool, "kind":tftypes.String, "name":tftypes.String, "uid":tftypes.String]], "resourceVersion":tftypes.String, "selfLink":tftypes.String, "uid":tftypes.String>, "spec":tftypes.Object["failurePolicy":tftypes.String, "valuesContent":tftypes.String]<"failurePolicy":tftypes.String, "valuesContent":tftypes.String<"controller: +2025-07-11T08:59:52.736+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | config: +2025-07-11T08:59:52.736+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | use-forwarded-headers: "true" +2025-07-11T08:59:52.736+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: | ">>> +2025-07-11T08:59:52.736+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: +2025-07-11T08:59:52.738+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:52.738+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_secret.mongodb_auth" references: [] +2025-07-11T08:59:52.738+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.helm_release.rabbitmq" references: [] +2025-07-11T08:59:52.739+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=975071 +2025-07-11T08:59:52.739+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:52.741+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:52 [INFO] Checking secret mongodb-auth +2025-07-11T08:59:52.741+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @module=kubernetes.Kubernetes Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/mongodb/secrets/mongodb-auth tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Host=rancher.bridge.fourlights.dev tf_http_req_body="" tf_http_trans_id=faa2f1cc-da45-3452-5b3f-8e6538f2b347 Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request timestamp="2025-07-11T08:59:52.741+0200" +2025-07-11T08:59:52.743+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0005ec540 Settings:0xc000776b40 RegistryClient:0xc0005ca080 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 timestamp="2025-07-11T08:59:52.743+0200" +2025-07-11T08:59:52.743+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"rabbitmq" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"rabbitmq" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"4.0.4","chart":"rabbitmq","first_deployed":1732607998,"last_deployed":1752215414,"name":"rabbitmq","namespace":"rabbitmq","notes":"CHART NAME: rabbitmq\nCHART VERSION: 15.1.0\nAPP VERSION: 4.0.4** Please be patient while the chart is being deployed **\n\nCredentials:\n echo \"Username : user\"\n echo \"Password : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-password}\" | base64 -d)\"\n echo \"ErLang Cookie : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-erlang-cookie}\" | base64 -d)\"\n\nNote that the credentials are saved in persistent volume claims and will not be changed upon upgrade or reinstallation unless the persistent volume claim has been deleted. If this is not the first installation of this chart, the credentials may not be valid.\nThis is applicable when no passwords are set and therefore the random password is autogenerated. In case of using a fixed password, you should specify it when upgrading.\nMore information about the credentials may be found at https://docs.bitnami.com/general/how-to/troubleshoot-helm-chart-issues/#credential-errors-while-upgrading-chart-releases.\n\nRabbitMQ can be accessed within the cluster on port 5672 at rabbitmq.rabbitmq.svc.cluster.local\n\nTo access for outside the cluster, perform the following steps:\n\nTo Access the RabbitMQ AMQP port:\n\n1. Create a port-forward to the AMQP port:\n\n kubectl port-forward --namespace rabbitmq svc/rabbitmq 5672:5672 &\n echo \"URL : amqp://127.0.0.1:5672/\"\n\n2. Access RabbitMQ using using the obtained URL.\n\nTo Access the RabbitMQ Management interface:\n\n1. Get the RabbitMQ Management URL and associate its hostname to your cluster external IP:\n\n export CLUSTER_IP=$(minikube ip) # On Minikube. Use: `kubectl cluster-info` on others K8s clusters\n echo \"RabbitMQ Management: http://rabbitmq.local/\"\n echo \"$CLUSTER_IP rabbitmq.local\" | sudo tee -a /etc/hosts\n\n2. Open a browser and access RabbitMQ Management using the obtained URL.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"auth\":{\"password\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"kubernetes.io/ingress.class\":\"nginx\"},\"enabled\":true,\"hostname\":\"rabbitmq.local\",\"ingressClassName\":\"nginx\",\"tls\":false},\"persistence\":{\"size\":\"4Gi\"},\"replicaCount\":1}","version":"15.1.0"} Name:"rabbitmq" Namespace:"rabbitmq" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"replicaCount","type":"","value":"1"},{"name":"persistence.size","type":"","value":"4Gi"}] SetList: SetSensitive:[{"name":"auth.password","type":,"value":"QA3UNmEGovybKcT415K6"}] SkipCrds:false Status:"deployed" Timeout:300 Values:["ingress:\n enabled: true\n tls: false\n ingressClassName: nginx\n hostname: rabbitmq.local\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n"] Verify:false Version:"15.1.0" Wait:true WaitForJobs:false}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_rpc=ReadResource @module=helm timestamp="2025-07-11T08:59:52.743+0200" +2025-07-11T08:59:52.743+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: rabbitmq] Start: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 @module=helm timestamp="2025-07-11T08:59:52.743+0200" +2025-07-11T08:59:52.743+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: KubernetesData=map[] tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm timestamp="2025-07-11T08:59:52.743+0200" +2025-07-11T08:59:52.743+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:52.743+0200" +2025-07-11T08:59:52.743+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 timestamp="2025-07-11T08:59:52.743+0200" +2025-07-11T08:59:52.743+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: rabbitmq getRelease post action created: @module=helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:52.743+0200" +2025-07-11T08:59:53.013+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_reason="200 OK" @module=kubernetes.Kubernetes Audit-Id=bbfbc808-1836-4a19-9209-b66c4ba56275 X-Content-Type-Options=nosniff + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"mongodb-auth","namespace":"mongodb","uid":"ca8368a6-42ac-4451-9d7b-003bd0dedf8b","resourceVersion":"2012002","creationTimestamp":"2024-11-29T19:03:50Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2024-11-29T19:14:42Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:mongodb-replica-set-key":{},"f:mongodb-root-password":{}},"f:type":{}}}]},"data":{"mongodb-replica-set-key":"ejl1Y2xzcWZIN1l3cVpmTE9nNTg3bEN5UzV2aVFUdDhkQ21yWGFyNw==","mongodb-root-password":"RzJNNWNrMzlCWDY3SDdMMkRvQjVMcVJGeHZQMTJ2SUxKVnc2V05aUg=="},"type":"generic"} + tf_http_res_version=HTTP/2.0 Date="Fri, 11 Jul 2025 06:59:52 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_op_type=response tf_http_res_status_code=200 tf_http_trans_id=faa2f1cc-da45-3452-5b3f-8e6538f2b347 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=641 Content-Type=application/json X-Api-Cattle-Auth=true timestamp="2025-07-11T08:59:53.013+0200" +2025-07-11T08:59:53.013+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:53 [INFO] Reading secret mongodb-auth +2025-07-11T08:59:53.014+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_op_type=request Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev tf_http_req_method=GET tf_http_trans_id=df95b62b-fcf5-4034-65bb-40f03db234b1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/mongodb/secrets/mongodb-auth Accept="application/json, */*" tf_http_req_body="" tf_http_req_version=HTTP/1.1 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." timestamp="2025-07-11T08:59:53.013+0200" +2025-07-11T08:59:53.173+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Api-Cattle-Auth=true tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"mongodb-auth","namespace":"mongodb","uid":"ca8368a6-42ac-4451-9d7b-003bd0dedf8b","resourceVersion":"2012002","creationTimestamp":"2024-11-29T19:03:50Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2024-11-29T19:14:42Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:mongodb-replica-set-key":{},"f:mongodb-root-password":{}},"f:type":{}}}]},"data":{"mongodb-replica-set-key":"ejl1Y2xzcWZIN1l3cVpmTE9nNTg3bEN5UzV2aVFUdDhkQ21yWGFyNw==","mongodb-root-password":"RzJNNWNrMzlCWDY3SDdMMkRvQjVMcVJGeHZQMTJ2SUxKVnc2V05aUg=="},"type":"generic"} + @module=kubernetes.Kubernetes Audit-Id=1decb55d-e6d2-418d-8aa0-23bf658922c0 tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" tf_http_trans_id=df95b62b-fcf5-4034-65bb-40f03db234b1 X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Date="Fri, 11 Jul 2025 06:59:53 GMT" X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_version=HTTP/2.0 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=641 Content-Type=application/json timestamp="2025-07-11T08:59:53.173+0200" +2025-07-11T08:59:53.173+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:53 [INFO] Received secret: v1.ObjectMeta{Name:"mongodb-auth", GenerateName:"", Namespace:"mongodb", SelfLink:"", UID:"ca8368a6-42ac-4451-9d7b-003bd0dedf8b", ResourceVersion:"2012002", Generation:0, CreationTimestamp:time.Date(2024, time.November, 29, 20, 3, 50, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2024, time.November, 29, 20, 14, 42, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000c15d58), Subresource:""}}} +2025-07-11T08:59:53.175+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.mongodb.kubernetes_secret.mongodb_auth, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:59:53.176+0200 [DEBUG] ReferenceTransformer: "module.mongodb.helm_release.mongodb" references: [] +2025-07-11T08:59:53.176+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:53.178+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=975138 +2025-07-11T08:59:53.178+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:53.182+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc00081c700 Settings:0xc0008ac360 RegistryClient:0xc0008b2080 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_rpc=ReadResource timestamp="2025-07-11T08:59:53.182+0200" +2025-07-11T08:59:53.182+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"mongodb" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"mongodb" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"8.0.3","chart":"mongodb","first_deployed":1732907685,"last_deployed":1752215413,"name":"mongodb","namespace":"mongodb","notes":"CHART NAME: mongodb\nCHART VERSION: 16.3.1\nAPP VERSION: 8.0.3\n\n** Please be patient while the chart is being deployed **\n\nMongoDB® can be accessed on the following DNS name(s) and ports from within your cluster:\n\n mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\n\nTo get the root password run:\n\n export MONGODB_ROOT_PASSWORD=$(kubectl get secret --namespace mongodb mongodb-auth -o jsonpath=\"{.data.mongodb-root-password}\" | base64 -d)\n\nTo connect to your database, create a MongoDB® client container:\n\n kubectl run --namespace mongodb mongodb-client --rm --tty -i --restart='Never' --env=\"MONGODB_ROOT_PASSWORD=$MONGODB_ROOT_PASSWORD\" --image docker.io/bitnami/mongodb:8.0.3-debian-12-r0 --command -- bash\n\nThen, run the following command:\n mongosh admin --host \"mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\" --authenticationDatabase admin -u $MONGODB_ROOT_USER -p $MONGODB_ROOT_PASSWORD\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - arbiter.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":3,"values":"{\"affinity\":{\"podAntiAffinity\":{\"requiredDuringSchedulingIgnoredDuringExecution\":[{\"labelSelector\":{\"matchLabels\":{\"app.kubernetes.io/component\":\"mongodb\"}},\"topologyKey\":\"kubernetes.io/hostname\"}]}},\"architecture\":\"replicaset\",\"auth\":{\"enabled\":true,\"existingSecret\":\"mongodb-auth\"},\"commonAnnotations\":{\"mongodb.com/timeouts\":\"true\"},\"livenessProbe\":{\"failureThreshold\":6,\"initialDelaySeconds\":60,\"periodSeconds\":20,\"timeoutSeconds\":15},\"mongodb\":{\"extraFlags\":[\"--oplogSizeMB=10240\",\"--setParameter=electionTimeoutMillis=10000\",\"--setParameter=heartbeatIntervalMillis=2000\",\"--setParameter=catchUpTimeoutMillis=30000\",\"--setParameter=catchUpTakeoverDelayMillis=30000\"]},\"readinessProbe\":{\"failureThreshold\":3,\"initialDelaySeconds\":30,\"periodSeconds\":10,\"successThreshold\":1,\"timeoutSeconds\":15},\"replicaCount\":3,\"resources\":{\"limits\":{\"cpu\":\"1000m\",\"memory\":\"1.5Gi\"},\"requests\":{\"cpu\":\"500m\",\"memory\":\"1Gi\"}},\"terminationGracePeriodSeconds\":300}","version":"16.3.1"} Name:"mongodb" Namespace:"mongodb" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["architecture: replicaset\nreplicaCount: 3\n\ncommonAnnotations:\n mongodb.com/timeouts: \"true\"\n\nmongodb:\n extraFlags:\n - \"--oplogSizeMB=10240\"\n - \"--setParameter=electionTimeoutMillis=10000\"\n - \"--setParameter=heartbeatIntervalMillis=2000\"\n - \"--setParameter=catchUpTimeoutMillis=30000\"\n - \"--setParameter=catchUpTakeoverDelayMillis=30000\"\n\n# More forgiving probe settings\nreadinessProbe:\n initialDelaySeconds: 30\n periodSeconds: 10\n timeoutSeconds: 15\n failureThreshold: 3\n successThreshold: 1\n\nlivenessProbe:\n initialDelaySeconds: 60\n periodSeconds: 20\n timeoutSeconds: 15\n failureThreshold: 6\n\n# Proper shutdown handling\nterminationGracePeriodSeconds: 300\n\n# Ensure pods are distributed across nodes\naffinity:\n podAntiAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n - labelSelector:\n matchLabels:\n app.kubernetes.io/component: mongodb\n topologyKey: kubernetes.io/hostname\n\nauth:\n enabled: true\n existingSecret: mongodb-auth\n\n \n\n \n\nresources:\n limits:\n cpu: 1000m\n memory: 1.5Gi\n requests:\n cpu: 500m\n memory: 1Gi\n"] Verify:false Version:"16.3.1" Wait:true WaitForJobs:true}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 timestamp="2025-07-11T08:59:53.182+0200" +2025-07-11T08:59:53.182+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: mongodb] Start: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release tf_rpc=ReadResource @module=helm timestamp="2025-07-11T08:59:53.182+0200" +2025-07-11T08:59:53.182+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_rpc=ReadResource timestamp="2025-07-11T08:59:53.182+0200" +2025-07-11T08:59:53.182+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @module=helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:53.182+0200" +2025-07-11T08:59:53.182+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:53.182+0200" +2025-07-11T08:59:53.182+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: mongodb getRelease post action created: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 timestamp="2025-07-11T08:59:53.182+0200" +2025-07-11T08:59:53.647+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: minio] Got chart: tf_req_id=042e2134-0c7e-8e0d-0c87-943e19ddb710 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 @module=helm timestamp="2025-07-11T08:59:53.647+0200" +2025-07-11T08:59:53.647+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=042e2134-0c7e-8e0d-0c87-943e19ddb710 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 @module=helm timestamp="2025-07-11T08:59:53.647+0200" +2025-07-11T08:59:53.647+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: minio] Release validated: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange tf_req_id=042e2134-0c7e-8e0d-0c87-943e19ddb710 tf_resource_type=helm_release timestamp="2025-07-11T08:59:53.647+0200" +2025-07-11T08:59:53.647+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: minio] Done: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 tf_req_id=042e2134-0c7e-8e0d-0c87-943e19ddb710 tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:53.647+0200" +2025-07-11T08:59:53.649+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:53.649+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_namespace.tenant" references: [] +2025-07-11T08:59:53.652+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=975298 +2025-07-11T08:59:53.652+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:53.654+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:53 [INFO] Checking namespace 365zon +2025-07-11T08:59:53.654+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept="application/json, */*" Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon tf_http_trans_id=a4b09134-8f13-88ea-d520-91de78456538 @module=kubernetes.Kubernetes Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request timestamp="2025-07-11T08:59:53.654+0200" +2025-07-11T08:59:54.248+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 tf_http_trans_id=a4b09134-8f13-88ea-d520-91de78456538 @module=kubernetes.Kubernetes Audit-Id=a43580f7-afe2-4d40-8266-c7cf5687b458 Content-Length=1223 Content-Type=application/json tf_http_op_type=response + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"365zon","uid":"20230e1f-afa5-430b-9720-e3668166b470","resourceVersion":"109671116","creationTimestamp":"2025-07-11T06:29:49Z","labels":{"kubernetes.io/metadata.name":"365zon"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:51Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:51Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:49Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Date="Fri, 11 Jul 2025 06:59:54 GMT" X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_reason="200 OK" Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff timestamp="2025-07-11T08:59:54.248+0200" +2025-07-11T08:59:54.248+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:54 [INFO] Namespace 365zon exists +2025-07-11T08:59:54.248+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:54 [INFO] Reading namespace 365zon +2025-07-11T08:59:54.249+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept="application/json, */*" Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev tf_http_req_body="" tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_trans_id=1fa0dbbe-f4e4-92b6-1ee8-a3795726c8e4 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_op_type=request tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." timestamp="2025-07-11T08:59:54.249+0200" +2025-07-11T08:59:54.270+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: rabbitmq getRelease post run: @module=helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 timestamp="2025-07-11T08:59:54.270+0200" +2025-07-11T08:59:54.270+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: rabbitmq getRelease completed: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 tf_resource_type=helm_release timestamp="2025-07-11T08:59:54.270+0200" +2025-07-11T08:59:54.270+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: rabbitmq] Done: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 @module=helm timestamp="2025-07-11T08:59:54.270+0200" +2025-07-11T08:59:54.271+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: rabbitmq] Started: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 timestamp="2025-07-11T08:59:54.270+0200" +2025-07-11T08:59:54.271+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm KubernetesData=map[] tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_rpc=ReadResource timestamp="2025-07-11T08:59:54.270+0200" +2025-07-11T08:59:54.271+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_rpc=ReadResource configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm timestamp="2025-07-11T08:59:54.271+0200" +2025-07-11T08:59:54.271+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:59:54.271+0200" +2025-07-11T08:59:54.271+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: rabbitmq getRelease post action created: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 timestamp="2025-07-11T08:59:54.271+0200" +2025-07-11T08:59:54.570+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: mongodb getRelease post run: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 timestamp="2025-07-11T08:59:54.569+0200" +2025-07-11T08:59:54.570+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: mongodb getRelease completed: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release timestamp="2025-07-11T08:59:54.570+0200" +2025-07-11T08:59:54.570+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: mongodb] Done: tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 timestamp="2025-07-11T08:59:54.570+0200" +2025-07-11T08:59:54.570+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: mongodb] Started: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 tf_resource_type=helm_release tf_rpc=ReadResource @module=helm timestamp="2025-07-11T08:59:54.570+0200" +2025-07-11T08:59:54.570+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 KubernetesData=map[] tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:59:54.570+0200" +2025-07-11T08:59:54.570+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @module=helm configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_rpc=ReadResource tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 timestamp="2025-07-11T08:59:54.570+0200" +2025-07-11T08:59:54.570+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 timestamp="2025-07-11T08:59:54.570+0200" +2025-07-11T08:59:54.570+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: mongodb getRelease post action created: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:59:54.570+0200" +2025-07-11T08:59:54.698+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Audit-Id=758ff1ec-c6f1-4776-bea5-22cc6b5088c2 X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_code=200 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Length=1223 Date="Fri, 11 Jul 2025 06:59:54 GMT" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=1fa0dbbe-f4e4-92b6-1ee8-a3795726c8e4 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] tf_http_op_type=response + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"365zon","uid":"20230e1f-afa5-430b-9720-e3668166b470","resourceVersion":"109671116","creationTimestamp":"2025-07-11T06:29:49Z","labels":{"kubernetes.io/metadata.name":"365zon"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:51Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:51Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:49Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + @module=kubernetes.Kubernetes Content-Type=application/json X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 timestamp="2025-07-11T08:59:54.698+0200" +2025-07-11T08:59:54.698+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:54 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"365zon", GenerateName:"", Namespace:"", SelfLink:"", UID:"20230e1f-afa5-430b-9720-e3668166b470", ResourceVersion:"109671116", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 49, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"365zon"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:51Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T06:29:51Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 49, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0011800a8), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 50, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0011800d8), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T08:59:54.701+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.kubernetes_namespace.tenant, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute +2025-07-11T08:59:54.701+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings" references: [] +2025-07-11T08:59:54.702+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:54 [INFO] Checking secret connection-strings +2025-07-11T08:59:54.702+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept-Encoding=gzip new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_version=HTTP/1.1 Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/connection-strings tf_http_trans_id=6967cf65-069a-5673-171f-d3233947581c Accept="application/json, */*" timestamp="2025-07-11T08:59:54.702+0200" +2025-07-11T08:59:54.861+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"connection-strings","namespace":"365zon","uid":"47f6eb88-7be7-4756-ac01-6857de56e2e4","resourceVersion":"109671119","creationTimestamp":"2025-07-11T06:29:50Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:ConnectionStrings__DocumentDb":{},"f:ConnectionStrings__ServiceBus":{}},"f:type":{}}}]},"data":{"ConnectionStrings__DocumentDb":"bW9uZ29kYjovL3Jvb3Q6RzJNNWNrMzlCWDY3SDdMMkRvQjVMcVJGeHZQMTJ2SUxKVnc2V05aUkBtb25nb2RiLTAubW9uZ29kYi1oZWFkbGVzcy5tb25nb2RiLnN2Yy5jbHVzdGVyLmxvY2FsOjI3MDE3LG1vbmdvZGItMS5tb25nb2RiLWhlYWRsZXNzLm1vbmdvZGIuc3ZjLmNsdXN0ZXIubG9jYWw6MjcwMTcsbW9uZ29kYi0yLm1vbmdvZGItaGVhZGxlc3MubW9uZ29kYi5zdmMuY2x1c3Rlci5sb2NhbDoyNzAxNy9hZG1pbj9yZXBsaWNhU2V0PXJzMCZhdXRoU291cmNlPWFkbWlu","ConnectionStrings__ServiceBus":"cmFiYml0bXE6Ly91c2VyOlFBM1VObUVHb3Z5YktjVDQxNUs2QHJhYmJpdG1xLWhlYWRsZXNzLnJhYmJpdG1xLnN2Yy5jbHVzdGVyLmxvY2FsOjU2NzIv"},"type":"Opaque"} + tf_http_trans_id=6967cf65-069a-5673-171f-d3233947581c Audit-Id=09f1961f-2c65-4dea-bd57-108304d03139 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=1039 X-Content-Type-Options=nosniff tf_http_op_type=response Content-Type=application/json X-Api-Cattle-Auth=true X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_reason="200 OK" @module=kubernetes.Kubernetes Date="Fri, 11 Jul 2025 06:59:54 GMT" tf_http_res_status_code=200 timestamp="2025-07-11T08:59:54.861+0200" +2025-07-11T08:59:54.861+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:54 [INFO] Reading secret connection-strings +2025-07-11T08:59:54.861+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_body="" tf_http_trans_id=c4687033-0153-f777-86c2-2b0972c2c6e2 @module=kubernetes.Kubernetes User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/connection-strings tf_http_req_version=HTTP/1.1 Accept="application/json, */*" Accept-Encoding=gzip tf_http_req_method=GET timestamp="2025-07-11T08:59:54.861+0200" +2025-07-11T08:59:55.005+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=1039 Content-Type=application/json X-Api-Cattle-Auth=true Date="Fri, 11 Jul 2025 06:59:54 GMT" X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_code=200 tf_http_trans_id=c4687033-0153-f777-86c2-2b0972c2c6e2 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 Audit-Id=4a8e83b8-544d-466d-bb30-31da8c26bc43 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"connection-strings","namespace":"365zon","uid":"47f6eb88-7be7-4756-ac01-6857de56e2e4","resourceVersion":"109671119","creationTimestamp":"2025-07-11T06:29:50Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:50Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:ConnectionStrings__DocumentDb":{},"f:ConnectionStrings__ServiceBus":{}},"f:type":{}}}]},"data":{"ConnectionStrings__DocumentDb":"bW9uZ29kYjovL3Jvb3Q6RzJNNWNrMzlCWDY3SDdMMkRvQjVMcVJGeHZQMTJ2SUxKVnc2V05aUkBtb25nb2RiLTAubW9uZ29kYi1oZWFkbGVzcy5tb25nb2RiLnN2Yy5jbHVzdGVyLmxvY2FsOjI3MDE3LG1vbmdvZGItMS5tb25nb2RiLWhlYWRsZXNzLm1vbmdvZGIuc3ZjLmNsdXN0ZXIubG9jYWw6MjcwMTcsbW9uZ29kYi0yLm1vbmdvZGItaGVhZGxlc3MubW9uZ29kYi5zdmMuY2x1c3Rlci5sb2NhbDoyNzAxNy9hZG1pbj9yZXBsaWNhU2V0PXJzMCZhdXRoU291cmNlPWFkbWlu","ConnectionStrings__ServiceBus":"cmFiYml0bXE6Ly91c2VyOlFBM1VObUVHb3Z5YktjVDQxNUs2QHJhYmJpdG1xLWhlYWRsZXNzLnJhYmJpdG1xLnN2Yy5jbHVzdGVyLmxvY2FsOjU2NzIv"},"type":"Opaque"} + timestamp="2025-07-11T08:59:55.005+0200" +2025-07-11T08:59:55.005+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:55 [INFO] Received secret: v1.ObjectMeta{Name:"connection-strings", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"47f6eb88-7be7-4756-ac01-6857de56e2e4", ResourceVersion:"109671119", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 50, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 50, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001292018), Subresource:""}}} +2025-07-11T08:59:55.009+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.kubernetes_secret.connection_strings, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .type: planned value cty.StringVal("Opaque") for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:59:55.022+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: mongodb getRelease post run: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 @module=helm timestamp="2025-07-11T08:59:55.022+0200" +2025-07-11T08:59:55.022+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: mongodb getRelease completed: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.022+0200" +2025-07-11T08:59:55.022+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"8.0.3","chart":"mongodb","first_deployed":1732907685,"last_deployed":1752215413,"name":"mongodb","namespace":"mongodb","notes":"CHART NAME: mongodb\nCHART VERSION: 16.3.1\nAPP VERSION: 8.0.3\n\n** Please be patient while the chart is being deployed **\n\nMongoDB® can be accessed on the following DNS name(s) and ports from within your cluster:\n\n mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\n\nTo get the root password run:\n\n export MONGODB_ROOT_PASSWORD=$(kubectl get secret --namespace mongodb mongodb-auth -o jsonpath=\"{.data.mongodb-root-password}\" | base64 -d)\n\nTo connect to your database, create a MongoDB® client container:\n\n kubectl run --namespace mongodb mongodb-client --rm --tty -i --restart='Never' --env=\"MONGODB_ROOT_PASSWORD=$MONGODB_ROOT_PASSWORD\" --image docker.io/bitnami/mongodb:8.0.3-debian-12-r0 --command -- bash\n\nThen, run the following command:\n mongosh admin --host \"mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\" --authenticationDatabase admin -u $MONGODB_ROOT_USER -p $MONGODB_ROOT_PASSWORD\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - arbiter.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":3,"values":"{\"affinity\":{\"podAntiAffinity\":{\"requiredDuringSchedulingIgnoredDuringExecution\":[{\"labelSelector\":{\"matchLabels\":{\"app.kubernetes.io/component\":\"mongodb\"}},\"topologyKey\":\"kubernetes.io/hostname\"}]}},\"architecture\":\"replicaset\",\"auth\":{\"enabled\":true,\"existingSecret\":\"mongodb-auth\"},\"commonAnnotations\":{\"mongodb.com/timeouts\":\"true\"},\"livenessProbe\":{\"failureThreshold\":6,\"initialDelaySeconds\":60,\"periodSeconds\":20,\"timeoutSeconds\":15},\"mongodb\":{\"extraFlags\":[\"--oplogSizeMB=10240\",\"--setParameter=electionTimeoutMillis=10000\",\"--setParameter=heartbeatIntervalMillis=2000\",\"--setParameter=catchUpTimeoutMillis=30000\",\"--setParameter=catchUpTakeoverDelayMillis=30000\"]},\"readinessProbe\":{\"failureThreshold\":3,\"initialDelaySeconds\":30,\"periodSeconds\":10,\"successThreshold\":1,\"timeoutSeconds\":15},\"replicaCount\":3,\"resources\":{\"limits\":{\"cpu\":\"1000m\",\"memory\":\"1.5Gi\"},\"requests\":{\"cpu\":\"500m\",\"memory\":\"1Gi\"}},\"terminationGracePeriodSeconds\":300}","version":"16.3.1"}: tf_rpc=ReadResource @module=helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release timestamp="2025-07-11T08:59:55.022+0200" +2025-07-11T08:59:55.022+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=reuse_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.022+0200" +2025-07-11T08:59:55.022+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=replace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:55.022+0200" +2025-07-11T08:59:55.022+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=reset_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:55.022+0200" +2025-07-11T08:59:55.022+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=render_subchart_notes tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:55.022+0200" +2025-07-11T08:59:55.022+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=repository tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba timestamp="2025-07-11T08:59:55.022+0200" +2025-07-11T08:59:55.022+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_attribute_path=wait_for_jobs tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:55.022+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=pass_credentials timestamp="2025-07-11T08:59:55.022+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=recreate_pods tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:55.022+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=disable_openapi_validation tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:55.022+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=lint tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.022+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_attribute_path=disable_crd_hooks tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:55.022+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=sdk.framework tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release timestamp="2025-07-11T08:59:55.022+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=status tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=dependency_update timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=wait tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=cleanup_on_fail tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=create_namespace tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=values[0] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_rpc=ReadResource @module=sdk.framework tf_resource_type=helm_release timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=disable_webhooks tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=atomic tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=verify @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_attribute_path=namespace tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=force_update tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_attribute_path=max_history tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba @module=sdk.framework tf_attribute_path=skip_crds timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=version tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=timeout timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.023+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=chart tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.024+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.first_deployed tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.024+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.values tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.024+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.revision tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.024+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.last_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.024+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_attribute_path=metadata.version tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.024+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_rpc=ReadResource tf_attribute_path=metadata.namespace tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.024+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.app_version tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.024+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.notes tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.024+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.name tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.024+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.chart tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.024+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata tf_req_id=c3d6f6f9-0de4-e74c-29be-1420151995ba @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:55.023+0200" +2025-07-11T08:59:55.024+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:55.026+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc00081c700 Settings:0xc0008ac360 RegistryClient:0xc0008b2080 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ValidateResourceConfig @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_req_id=ccb0f1bf-e117-c018-1dc8-72a6572f6730 tf_resource_type=helm_release timestamp="2025-07-11T08:59:55.026+0200" +2025-07-11T08:59:55.027+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc00081c700 Settings:0xc0008ac360 RegistryClient:0xc0008b2080 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_req_id=83656fc1-d8a7-032a-f59b-5b81b55c53bc tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:55.027+0200" +2025-07-11T08:59:55.033+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"mongodb" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"mongodb" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"8.0.3","chart":"mongodb","first_deployed":1732907685,"last_deployed":1752215413,"name":"mongodb","namespace":"mongodb","notes":"CHART NAME: mongodb\nCHART VERSION: 16.3.1\nAPP VERSION: 8.0.3\n\n** Please be patient while the chart is being deployed **\n\nMongoDB® can be accessed on the following DNS name(s) and ports from within your cluster:\n\n mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\n\nTo get the root password run:\n\n export MONGODB_ROOT_PASSWORD=$(kubectl get secret --namespace mongodb mongodb-auth -o jsonpath=\"{.data.mongodb-root-password}\" | base64 -d)\n\nTo connect to your database, create a MongoDB® client container:\n\n kubectl run --namespace mongodb mongodb-client --rm --tty -i --restart='Never' --env=\"MONGODB_ROOT_PASSWORD=$MONGODB_ROOT_PASSWORD\" --image docker.io/bitnami/mongodb:8.0.3-debian-12-r0 --command -- bash\n\nThen, run the following command:\n mongosh admin --host \"mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\" --authenticationDatabase admin -u $MONGODB_ROOT_USER -p $MONGODB_ROOT_PASSWORD\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - arbiter.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":3,"values":"{\"affinity\":{\"podAntiAffinity\":{\"requiredDuringSchedulingIgnoredDuringExecution\":[{\"labelSelector\":{\"matchLabels\":{\"app.kubernetes.io/component\":\"mongodb\"}},\"topologyKey\":\"kubernetes.io/hostname\"}]}},\"architecture\":\"replicaset\",\"auth\":{\"enabled\":true,\"existingSecret\":\"mongodb-auth\"},\"commonAnnotations\":{\"mongodb.com/timeouts\":\"true\"},\"livenessProbe\":{\"failureThreshold\":6,\"initialDelaySeconds\":60,\"periodSeconds\":20,\"timeoutSeconds\":15},\"mongodb\":{\"extraFlags\":[\"--oplogSizeMB=10240\",\"--setParameter=electionTimeoutMillis=10000\",\"--setParameter=heartbeatIntervalMillis=2000\",\"--setParameter=catchUpTimeoutMillis=30000\",\"--setParameter=catchUpTakeoverDelayMillis=30000\"]},\"readinessProbe\":{\"failureThreshold\":3,\"initialDelaySeconds\":30,\"periodSeconds\":10,\"successThreshold\":1,\"timeoutSeconds\":15},\"replicaCount\":3,\"resources\":{\"limits\":{\"cpu\":\"1000m\",\"memory\":\"1.5Gi\"},\"requests\":{\"cpu\":\"500m\",\"memory\":\"1Gi\"}},\"terminationGracePeriodSeconds\":300}","version":"16.3.1"} Name:"mongodb" Namespace:"mongodb" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["architecture: replicaset\nreplicaCount: 3\n\ncommonAnnotations:\n mongodb.com/timeouts: \"true\"\n\nmongodb:\n extraFlags:\n - \"--oplogSizeMB=10240\"\n - \"--setParameter=electionTimeoutMillis=10000\"\n - \"--setParameter=heartbeatIntervalMillis=2000\"\n - \"--setParameter=catchUpTimeoutMillis=30000\"\n - \"--setParameter=catchUpTakeoverDelayMillis=30000\"\n\n# More forgiving probe settings\nreadinessProbe:\n initialDelaySeconds: 30\n periodSeconds: 10\n timeoutSeconds: 15\n failureThreshold: 3\n successThreshold: 1\n\nlivenessProbe:\n initialDelaySeconds: 60\n periodSeconds: 20\n timeoutSeconds: 15\n failureThreshold: 6\n\n# Proper shutdown handling\nterminationGracePeriodSeconds: 300\n\n# Ensure pods are distributed across nodes\naffinity:\n podAntiAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n - labelSelector:\n matchLabels:\n app.kubernetes.io/component: mongodb\n topologyKey: kubernetes.io/hostname\n\nauth:\n enabled: true\n existingSecret: mongodb-auth\n\n \n\n \n\nresources:\n limits:\n cpu: 1000m\n memory: 1.5Gi\n requests:\n cpu: 500m\n memory: 1Gi\n"] Verify:false Version:"16.3.1" Wait:true WaitForJobs:true}: @module=helm tf_req_id=83656fc1-d8a7-032a-f59b-5b81b55c53bc tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:55.032+0200" +2025-07-11T08:59:55.033+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"mongodb" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"mongodb" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"8.0.3","chart":"mongodb","first_deployed":1732907685,"last_deployed":1752215413,"name":"mongodb","namespace":"mongodb","notes":"CHART NAME: mongodb\nCHART VERSION: 16.3.1\nAPP VERSION: 8.0.3\n\n** Please be patient while the chart is being deployed **\n\nMongoDB® can be accessed on the following DNS name(s) and ports from within your cluster:\n\n mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017\n mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\n\nTo get the root password run:\n\n export MONGODB_ROOT_PASSWORD=$(kubectl get secret --namespace mongodb mongodb-auth -o jsonpath=\"{.data.mongodb-root-password}\" | base64 -d)\n\nTo connect to your database, create a MongoDB® client container:\n\n kubectl run --namespace mongodb mongodb-client --rm --tty -i --restart='Never' --env=\"MONGODB_ROOT_PASSWORD=$MONGODB_ROOT_PASSWORD\" --image docker.io/bitnami/mongodb:8.0.3-debian-12-r0 --command -- bash\n\nThen, run the following command:\n mongosh admin --host \"mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017\" --authenticationDatabase admin -u $MONGODB_ROOT_USER -p $MONGODB_ROOT_PASSWORD\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - arbiter.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":3,"values":"{\"affinity\":{\"podAntiAffinity\":{\"requiredDuringSchedulingIgnoredDuringExecution\":[{\"labelSelector\":{\"matchLabels\":{\"app.kubernetes.io/component\":\"mongodb\"}},\"topologyKey\":\"kubernetes.io/hostname\"}]}},\"architecture\":\"replicaset\",\"auth\":{\"enabled\":true,\"existingSecret\":\"mongodb-auth\"},\"commonAnnotations\":{\"mongodb.com/timeouts\":\"true\"},\"livenessProbe\":{\"failureThreshold\":6,\"initialDelaySeconds\":60,\"periodSeconds\":20,\"timeoutSeconds\":15},\"mongodb\":{\"extraFlags\":[\"--oplogSizeMB=10240\",\"--setParameter=electionTimeoutMillis=10000\",\"--setParameter=heartbeatIntervalMillis=2000\",\"--setParameter=catchUpTimeoutMillis=30000\",\"--setParameter=catchUpTakeoverDelayMillis=30000\"]},\"readinessProbe\":{\"failureThreshold\":3,\"initialDelaySeconds\":30,\"periodSeconds\":10,\"successThreshold\":1,\"timeoutSeconds\":15},\"replicaCount\":3,\"resources\":{\"limits\":{\"cpu\":\"1000m\",\"memory\":\"1.5Gi\"},\"requests\":{\"cpu\":\"500m\",\"memory\":\"1Gi\"}},\"terminationGracePeriodSeconds\":300}","version":"16.3.1"} Name:"mongodb" Namespace:"mongodb" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["architecture: replicaset\nreplicaCount: 3\n\ncommonAnnotations:\n mongodb.com/timeouts: \"true\"\n\nmongodb:\n extraFlags:\n - \"--oplogSizeMB=10240\"\n - \"--setParameter=electionTimeoutMillis=10000\"\n - \"--setParameter=heartbeatIntervalMillis=2000\"\n - \"--setParameter=catchUpTimeoutMillis=30000\"\n - \"--setParameter=catchUpTakeoverDelayMillis=30000\"\n\n# More forgiving probe settings\nreadinessProbe:\n initialDelaySeconds: 30\n periodSeconds: 10\n timeoutSeconds: 15\n failureThreshold: 3\n successThreshold: 1\n\nlivenessProbe:\n initialDelaySeconds: 60\n periodSeconds: 20\n timeoutSeconds: 15\n failureThreshold: 6\n\n# Proper shutdown handling\nterminationGracePeriodSeconds: 300\n\n# Ensure pods are distributed across nodes\naffinity:\n podAntiAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n - labelSelector:\n matchLabels:\n app.kubernetes.io/component: mongodb\n topologyKey: kubernetes.io/hostname\n\nauth:\n enabled: true\n existingSecret: mongodb-auth\n\n \n\n \n\nresources:\n limits:\n cpu: 1000m\n memory: 1.5Gi\n requests:\n cpu: 500m\n memory: 1Gi\n"] Verify:false Version:"16.3.1" Wait:true WaitForJobs:true}: tf_rpc=PlanResourceChange @module=helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=83656fc1-d8a7-032a-f59b-5b81b55c53bc timestamp="2025-07-11T08:59:55.032+0200" +2025-07-11T08:59:55.033+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: mongodb] Start: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 tf_req_id=83656fc1-d8a7-032a-f59b-5b81b55c53bc tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:55.033+0200" +2025-07-11T08:59:55.033+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @module=helm KubernetesData=map[] tf_req_id=83656fc1-d8a7-032a-f59b-5b81b55c53bc @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:55.033+0200" +2025-07-11T08:59:55.033+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @module=helm tf_req_id=83656fc1-d8a7-032a-f59b-5b81b55c53bc tf_rpc=PlanResourceChange configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 timestamp="2025-07-11T08:59:55.033+0200" +2025-07-11T08:59:55.033+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=83656fc1-d8a7-032a-f59b-5b81b55c53bc tf_resource_type=helm_release timestamp="2025-07-11T08:59:55.033+0200" +2025-07-11T08:59:55.033+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: mongodb] Initial Values: Name=mongodb, Namespace=mongodb, Repository=oci://registry-1.docker.io/bitnamicharts, Repository_Username=, Repository_Password=, Chart=mongodb: tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 @module=helm tf_req_id=83656fc1-d8a7-032a-f59b-5b81b55c53bc tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:55.033+0200" +2025-07-11T08:59:55.033+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc0008ac480 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_req_id=83656fc1-d8a7-032a-f59b-5b81b55c53bc @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:55.033+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: rabbitmq getRelease post run: @module=helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: rabbitmq getRelease completed: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"4.0.4","chart":"rabbitmq","first_deployed":1732607998,"last_deployed":1752215414,"name":"rabbitmq","namespace":"rabbitmq","notes":"CHART NAME: rabbitmq\nCHART VERSION: 15.1.0\nAPP VERSION: 4.0.4** Please be patient while the chart is being deployed **\n\nCredentials:\n echo \"Username : user\"\n echo \"Password : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-password}\" | base64 -d)\"\n echo \"ErLang Cookie : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-erlang-cookie}\" | base64 -d)\"\n\nNote that the credentials are saved in persistent volume claims and will not be changed upon upgrade or reinstallation unless the persistent volume claim has been deleted. If this is not the first installation of this chart, the credentials may not be valid.\nThis is applicable when no passwords are set and therefore the random password is autogenerated. In case of using a fixed password, you should specify it when upgrading.\nMore information about the credentials may be found at https://docs.bitnami.com/general/how-to/troubleshoot-helm-chart-issues/#credential-errors-while-upgrading-chart-releases.\n\nRabbitMQ can be accessed within the cluster on port 5672 at rabbitmq.rabbitmq.svc.cluster.local\n\nTo access for outside the cluster, perform the following steps:\n\nTo Access the RabbitMQ AMQP port:\n\n1. Create a port-forward to the AMQP port:\n\n kubectl port-forward --namespace rabbitmq svc/rabbitmq 5672:5672 &\n echo \"URL : amqp://127.0.0.1:5672/\"\n\n2. Access RabbitMQ using using the obtained URL.\n\nTo Access the RabbitMQ Management interface:\n\n1. Get the RabbitMQ Management URL and associate its hostname to your cluster external IP:\n\n export CLUSTER_IP=$(minikube ip) # On Minikube. Use: `kubectl cluster-info` on others K8s clusters\n echo \"RabbitMQ Management: http://rabbitmq.local/\"\n echo \"$CLUSTER_IP rabbitmq.local\" | sudo tee -a /etc/hosts\n\n2. Open a browser and access RabbitMQ Management using the obtained URL.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"auth\":{\"password\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"kubernetes.io/ingress.class\":\"nginx\"},\"enabled\":true,\"hostname\":\"rabbitmq.local\",\"ingressClassName\":\"nginx\",\"tls\":false},\"persistence\":{\"size\":\"4Gi\"},\"replicaCount\":1}","version":"15.1.0"}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=render_subchart_notes tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=disable_crd_hooks tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=status tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=cleanup_on_fail tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=pass_credentials tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=replace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.revision tf_resource_type=helm_release timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=metadata.app_version tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.chart tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.last_deployed tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.name timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=metadata.namespace tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.notes tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.first_deployed tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_attribute_path=metadata.values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.version tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=chart tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=dependency_update tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=disable_webhooks tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.039+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ReadResource tf_attribute_path=max_history timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=values[0] tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=verify tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=force_update tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_rpc=ReadResource tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_rpc=ReadResource tf_attribute_path=wait_for_jobs tf_resource_type=helm_release timestamp="2025-07-11T08:59:55.039+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set_sensitive[0].name tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=set_sensitive[0].value tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set_sensitive[0] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 @module=sdk.framework tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=set_sensitive tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=reuse_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_rpc=ReadResource tf_attribute_path=timeout tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=skip_crds tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=create_namespace tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=wait tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set[0].value tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=set[0].name tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[0].type tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[0] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=set[1].type tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[1].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set[1].name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=set[1] tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=set timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=recreate_pods tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=version tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=namespace tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=lint tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_rpc=ReadResource tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=disable_openapi_validation tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=repository tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 @module=sdk.framework tf_attribute_path=reset_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.040+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=atomic tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=97e3b6e5-621b-0b67-7aa7-091258dcae77 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T08:59:55.040+0200" +2025-07-11T08:59:55.042+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T08:59:55.043+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0005ec540 Settings:0xc000776b40 RegistryClient:0xc0005ca080 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=c2b03ee5-5d95-102d-441b-b1b62d29865f tf_resource_type=helm_release tf_rpc=ValidateResourceConfig @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 timestamp="2025-07-11T08:59:55.043+0200" +2025-07-11T08:59:55.046+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0005ec540 Settings:0xc000776b40 RegistryClient:0xc0005ca080 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_req_id=061a0945-8a92-02a6-781c-97e270271485 tf_resource_type=helm_release timestamp="2025-07-11T08:59:55.046+0200" +2025-07-11T08:59:55.050+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"rabbitmq" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"rabbitmq" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"4.0.4","chart":"rabbitmq","first_deployed":1732607998,"last_deployed":1752215414,"name":"rabbitmq","namespace":"rabbitmq","notes":"CHART NAME: rabbitmq\nCHART VERSION: 15.1.0\nAPP VERSION: 4.0.4** Please be patient while the chart is being deployed **\n\nCredentials:\n echo \"Username : user\"\n echo \"Password : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-password}\" | base64 -d)\"\n echo \"ErLang Cookie : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-erlang-cookie}\" | base64 -d)\"\n\nNote that the credentials are saved in persistent volume claims and will not be changed upon upgrade or reinstallation unless the persistent volume claim has been deleted. If this is not the first installation of this chart, the credentials may not be valid.\nThis is applicable when no passwords are set and therefore the random password is autogenerated. In case of using a fixed password, you should specify it when upgrading.\nMore information about the credentials may be found at https://docs.bitnami.com/general/how-to/troubleshoot-helm-chart-issues/#credential-errors-while-upgrading-chart-releases.\n\nRabbitMQ can be accessed within the cluster on port 5672 at rabbitmq.rabbitmq.svc.cluster.local\n\nTo access for outside the cluster, perform the following steps:\n\nTo Access the RabbitMQ AMQP port:\n\n1. Create a port-forward to the AMQP port:\n\n kubectl port-forward --namespace rabbitmq svc/rabbitmq 5672:5672 &\n echo \"URL : amqp://127.0.0.1:5672/\"\n\n2. Access RabbitMQ using using the obtained URL.\n\nTo Access the RabbitMQ Management interface:\n\n1. Get the RabbitMQ Management URL and associate its hostname to your cluster external IP:\n\n export CLUSTER_IP=$(minikube ip) # On Minikube. Use: `kubectl cluster-info` on others K8s clusters\n echo \"RabbitMQ Management: http://rabbitmq.local/\"\n echo \"$CLUSTER_IP rabbitmq.local\" | sudo tee -a /etc/hosts\n\n2. Open a browser and access RabbitMQ Management using the obtained URL.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"auth\":{\"password\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"kubernetes.io/ingress.class\":\"nginx\"},\"enabled\":true,\"hostname\":\"rabbitmq.local\",\"ingressClassName\":\"nginx\",\"tls\":false},\"persistence\":{\"size\":\"4Gi\"},\"replicaCount\":1}","version":"15.1.0"} Name:"rabbitmq" Namespace:"rabbitmq" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"replicaCount","type":"","value":"1"},{"name":"persistence.size","type":"","value":"4Gi"}] SetList: SetSensitive:[{"name":"auth.password","type":,"value":"QA3UNmEGovybKcT415K6"}] SkipCrds:false Status:"deployed" Timeout:300 Values:["ingress:\n enabled: true\n tls: false\n ingressClassName: nginx\n hostname: rabbitmq.local\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n"] Verify:false Version:"15.1.0" Wait:true WaitForJobs:false}: tf_rpc=PlanResourceChange @module=helm tf_req_id=061a0945-8a92-02a6-781c-97e270271485 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:55.050+0200" +2025-07-11T08:59:55.050+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"rabbitmq" CleanupOnFail:false CreateNamespace:true DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"rabbitmq" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"4.0.4","chart":"rabbitmq","first_deployed":1732607998,"last_deployed":1752215414,"name":"rabbitmq","namespace":"rabbitmq","notes":"CHART NAME: rabbitmq\nCHART VERSION: 15.1.0\nAPP VERSION: 4.0.4** Please be patient while the chart is being deployed **\n\nCredentials:\n echo \"Username : user\"\n echo \"Password : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-password}\" | base64 -d)\"\n echo \"ErLang Cookie : $(kubectl get secret --namespace rabbitmq rabbitmq -o jsonpath=\"{.data.rabbitmq-erlang-cookie}\" | base64 -d)\"\n\nNote that the credentials are saved in persistent volume claims and will not be changed upon upgrade or reinstallation unless the persistent volume claim has been deleted. If this is not the first installation of this chart, the credentials may not be valid.\nThis is applicable when no passwords are set and therefore the random password is autogenerated. In case of using a fixed password, you should specify it when upgrading.\nMore information about the credentials may be found at https://docs.bitnami.com/general/how-to/troubleshoot-helm-chart-issues/#credential-errors-while-upgrading-chart-releases.\n\nRabbitMQ can be accessed within the cluster on port 5672 at rabbitmq.rabbitmq.svc.cluster.local\n\nTo access for outside the cluster, perform the following steps:\n\nTo Access the RabbitMQ AMQP port:\n\n1. Create a port-forward to the AMQP port:\n\n kubectl port-forward --namespace rabbitmq svc/rabbitmq 5672:5672 &\n echo \"URL : amqp://127.0.0.1:5672/\"\n\n2. Access RabbitMQ using using the obtained URL.\n\nTo Access the RabbitMQ Management interface:\n\n1. Get the RabbitMQ Management URL and associate its hostname to your cluster external IP:\n\n export CLUSTER_IP=$(minikube ip) # On Minikube. Use: `kubectl cluster-info` on others K8s clusters\n echo \"RabbitMQ Management: http://rabbitmq.local/\"\n echo \"$CLUSTER_IP rabbitmq.local\" | sudo tee -a /etc/hosts\n\n2. Open a browser and access RabbitMQ Management using the obtained URL.\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n","revision":10,"values":"{\"auth\":{\"password\":\"(sensitive value)\"},\"ingress\":{\"annotations\":{\"kubernetes.io/ingress.class\":\"nginx\"},\"enabled\":true,\"hostname\":\"rabbitmq.local\",\"ingressClassName\":\"nginx\",\"tls\":false},\"persistence\":{\"size\":\"4Gi\"},\"replicaCount\":1}","version":"15.1.0"} Name:"rabbitmq" Namespace:"rabbitmq" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"oci://registry-1.docker.io/bitnamicharts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set:[{"name":"replicaCount","type":"","value":"1"},{"name":"persistence.size","type":"","value":"4Gi"}] SetList: SetSensitive:[{"name":"auth.password","type":,"value":"QA3UNmEGovybKcT415K6"}] SkipCrds:false Status:"deployed" Timeout:300 Values:["ingress:\n enabled: true\n tls: false\n ingressClassName: nginx\n hostname: rabbitmq.local\n annotations:\n kubernetes.io/ingress.class: nginx\n \n \n \n \n"] Verify:false Version:"15.1.0" Wait:true WaitForJobs:false}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=061a0945-8a92-02a6-781c-97e270271485 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 @module=helm timestamp="2025-07-11T08:59:55.050+0200" +2025-07-11T08:59:55.050+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: rabbitmq] Start: tf_req_id=061a0945-8a92-02a6-781c-97e270271485 tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:55.050+0200" +2025-07-11T08:59:55.050+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=061a0945-8a92-02a6-781c-97e270271485 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm timestamp="2025-07-11T08:59:55.050+0200" +2025-07-11T08:59:55.050+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm tf_req_id=061a0945-8a92-02a6-781c-97e270271485 tf_resource_type=helm_release tf_rpc=PlanResourceChange configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T08:59:55.050+0200" +2025-07-11T08:59:55.050+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=061a0945-8a92-02a6-781c-97e270271485 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:55.050+0200" +2025-07-11T08:59:55.051+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: rabbitmq] Initial Values: Name=rabbitmq, Namespace=rabbitmq, Repository=oci://registry-1.docker.io/bitnamicharts, Repository_Username=, Repository_Password=, Chart=rabbitmq: tf_req_id=061a0945-8a92-02a6-781c-97e270271485 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 @module=helm timestamp="2025-07-11T08:59:55.050+0200" +2025-07-11T08:59:55.051+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc000776c60 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: @module=helm tf_req_id=061a0945-8a92-02a6-781c-97e270271485 tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T08:59:55.050+0200" +2025-07-11T08:59:55.486+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 08:59:55 [DEBUG] ({365zon2 on false { + "Version": "2012-10-17", + "Statement": [ + { + "Effect": "Allow", + "Action": [ + "s3:ListBucket" + ], + "Resource": [ + "arn:aws:s3:::365zon2" + ] + }, + { + "Effect": "Allow", + "Action": [ + "s3:DeleteObject", + "s3:GetObject", + "s3:PutObject" + ], + "Resource": [ + "arn:aws:s3:::365zon2/*" + ] + } + ] +} }): timestamp="2025-07-11T08:59:55.485+0200" +2025-07-11T08:59:55.487+0200 [WARN] Provider "registry.terraform.io/aminueza/minio" produced an invalid plan for module.tenant-365zon.module.minio.minio_iam_service_account.overlay, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .expiration: planned value cty.StringVal("1970-01-01T00:00:00Z") for a non-computed attribute + - .name: planned value cty.StringVal("") for a non-computed attribute + - .disable_user: planned value cty.False for a non-computed attribute + - .update_secret: planned value cty.False for a non-computed attribute + - .description: planned value cty.StringVal("") for a non-computed attribute +2025-07-11T08:59:55.488+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:55.488+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.storage" references: [] +2025-07-11T08:59:55.489+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=975331 +2025-07-11T08:59:55.489+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:55.491+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:55 [INFO] Checking secret storage +2025-07-11T08:59:55.491+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Accept="application/json, */*" Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/storage tf_http_req_version=HTTP/1.1 Host=rancher.bridge.fourlights.dev tf_http_trans_id=49ebfc02-7572-7fe7-1342-14b9c7ec5a9c timestamp="2025-07-11T08:59:55.491+0200" +2025-07-11T08:59:55.616+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Audit-Id=489ca172-fea6-408f-9c19-34993669b495 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"storage","namespace":"365zon","uid":"ef14e016-33d3-4f6d-8de9-1120ea8c2fd0","resourceVersion":"109677334","creationTimestamp":"2025-07-11T06:46:34Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:46:34Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:Storage__AccountKey":{},"f:Storage__AccountName":{},"f:Storage__BlobUri":{},"f:Storage__S3BucketName":{}},"f:type":{}}}]},"data":{"Storage__AccountKey":"RFJzblhXNm5ZVklWN2w4RlVtb2dkeDN5VU9XY2JmWjM0VUVkK0cyag==","Storage__AccountName":"RUFHVDNTMzY1SzlITElMQlcwTTU=","Storage__BlobUri":"aHR0cHM6Ly9zdG9yYWdlLjM2NXpvbi5mb3VybGlnaHRzLmRldg==","Storage__S3BucketName":"MzY1em9uMg=="},"type":"Opaque"} + tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 tf_http_trans_id=49ebfc02-7572-7fe7-1342-14b9c7ec5a9c @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Content-Type=application/json tf_http_res_status_reason="200 OK" Content-Length=764 Date="Fri, 11 Jul 2025 06:59:55 GMT" tf_http_op_type=response Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 timestamp="2025-07-11T08:59:55.615+0200" +2025-07-11T08:59:55.616+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:55 [INFO] Reading secret storage +2025-07-11T08:59:55.616+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/storage @module=kubernetes.Kubernetes Host=rancher.bridge.fourlights.dev tf_http_req_body="" tf_http_req_method=GET @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request Accept="application/json, */*" tf_http_req_version=HTTP/1.1 tf_http_trans_id=2d9f1939-4c15-d466-37ec-5154344d928a Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." timestamp="2025-07-11T08:59:55.616+0200" +2025-07-11T08:59:55.779+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Length=764 Content-Type=application/json tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 tf_http_trans_id=2d9f1939-4c15-d466-37ec-5154344d928a @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." Audit-Id=28923c7c-fb3b-4c23-830d-772efd978626 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response Date="Fri, 11 Jul 2025 06:59:55 GMT" X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"storage","namespace":"365zon","uid":"ef14e016-33d3-4f6d-8de9-1120ea8c2fd0","resourceVersion":"109677334","creationTimestamp":"2025-07-11T06:46:34Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:46:34Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:Storage__AccountKey":{},"f:Storage__AccountName":{},"f:Storage__BlobUri":{},"f:Storage__S3BucketName":{}},"f:type":{}}}]},"data":{"Storage__AccountKey":"RFJzblhXNm5ZVklWN2w4RlVtb2dkeDN5VU9XY2JmWjM0VUVkK0cyag==","Storage__AccountName":"RUFHVDNTMzY1SzlITElMQlcwTTU=","Storage__BlobUri":"aHR0cHM6Ly9zdG9yYWdlLjM2NXpvbi5mb3VybGlnaHRzLmRldg==","Storage__S3BucketName":"MzY1em9uMg=="},"type":"Opaque"} + tf_http_res_status_code=200 timestamp="2025-07-11T08:59:55.779+0200" +2025-07-11T08:59:55.779+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 08:59:55 [INFO] Received secret: v1.ObjectMeta{Name:"storage", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"ef14e016-33d3-4f6d-8de9-1120ea8c2fd0", ResourceVersion:"109677334", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 46, 34, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 46, 34, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000e86558), Subresource:""}}} +2025-07-11T08:59:55.781+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.kubernetes_secret.storage, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .type: planned value cty.StringVal("Opaque") for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T08:59:56.870+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: rabbitmq] Got chart: tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=061a0945-8a92-02a6-781c-97e270271485 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 timestamp="2025-07-11T08:59:56.870+0200" +2025-07-11T08:59:56.870+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 @module=helm tf_req_id=061a0945-8a92-02a6-781c-97e270271485 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:56.870+0200" +2025-07-11T08:59:56.870+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: rabbitmq] Release validated: tf_req_id=061a0945-8a92-02a6-781c-97e270271485 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:56.870+0200" +2025-07-11T08:59:56.870+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: rabbitmq] Done: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=061a0945-8a92-02a6-781c-97e270271485 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 @module=helm timestamp="2025-07-11T08:59:56.870+0200" +2025-07-11T08:59:56.872+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:56.874+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=975188 +2025-07-11T08:59:56.875+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:56.885+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: mongodb] Got chart: @module=helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=83656fc1-d8a7-032a-f59b-5b81b55c53bc tf_resource_type=helm_release timestamp="2025-07-11T08:59:56.885+0200" +2025-07-11T08:59:56.885+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=83656fc1-d8a7-032a-f59b-5b81b55c53bc @module=helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:56.885+0200" +2025-07-11T08:59:56.885+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: mongodb] Release validated: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=83656fc1-d8a7-032a-f59b-5b81b55c53bc @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 @module=helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:56.885+0200" +2025-07-11T08:59:56.885+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: mongodb] Done: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=83656fc1-d8a7-032a-f59b-5b81b55c53bc tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 @module=helm timestamp="2025-07-11T08:59:56.885+0200" +2025-07-11T08:59:56.887+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:56.889+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=975221 +2025-07-11T08:59:56.889+0200 [DEBUG] provider: plugin exited +2025-07-11T08:59:58.257+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: redis] Got chart: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 @module=helm tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f478a758-4d67-25d9-f667-769a3c602a1e timestamp="2025-07-11T08:59:58.257+0200" +2025-07-11T08:59:58.257+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm tf_req_id=f478a758-4d67-25d9-f667-769a3c602a1e timestamp="2025-07-11T08:59:58.257+0200" +2025-07-11T08:59:58.257+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: redis] Release validated: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f478a758-4d67-25d9-f667-769a3c602a1e @module=helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T08:59:58.257+0200" +2025-07-11T08:59:58.257+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: redis] Done: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f478a758-4d67-25d9-f667-769a3c602a1e tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm timestamp="2025-07-11T08:59:58.257+0200" +2025-07-11T08:59:58.259+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T08:59:58.264+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=975123 +2025-07-11T08:59:58.264+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:03.274+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: postgresql] Got chart: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0ddc54d8-846e-7127-4b5d-aaf6e4b0a1b7 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 @module=helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T09:00:03.274+0200" +2025-07-11T09:00:03.274+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: tf_req_id=0ddc54d8-846e-7127-4b5d-aaf6e4b0a1b7 tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T09:00:03.274+0200" +2025-07-11T09:00:03.274+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: postgresql] Release validated: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0ddc54d8-846e-7127-4b5d-aaf6e4b0a1b7 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 tf_rpc=PlanResourceChange timestamp="2025-07-11T09:00:03.274+0200" +2025-07-11T09:00:03.274+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: postgresql] Done: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 @module=helm tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0ddc54d8-846e-7127-4b5d-aaf6e4b0a1b7 tf_rpc=PlanResourceChange timestamp="2025-07-11T09:00:03.274+0200" +2025-07-11T09:00:03.276+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:03.276+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.kubernetes_job.create-tenant[0]" references: [] +2025-07-11T09:00:03.281+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=975254 +2025-07-11T09:00:03.281+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:03.290+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:03 [INFO] Checking job create-tenant-zitadel +2025-07-11T09:00:03.291+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" tf_http_req_method=GET tf_http_req_version=HTTP/1.1 Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev tf_http_op_type=request @module=kubernetes.Kubernetes User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/apis/batch/v1/namespaces/postgresql/jobs/create-tenant-zitadel Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_trans_id=ac119cf3-bbec-c6c9-4ccc-2c10c6b4773f timestamp="2025-07-11T09:00:03.290+0200" +2025-07-11T09:00:03.423+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_reason="200 OK" tf_http_trans_id=ac119cf3-bbec-c6c9-4ccc-2c10c6b4773f @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=85bbafb2-4490-47fb-a035-1d1282142f07 Content-Type=application/json X-Content-Type-Options=nosniff tf_http_op_type=response + tf_http_res_body= + | {"kind":"Job","apiVersion":"batch/v1","metadata":{"name":"create-tenant-zitadel","namespace":"postgresql","uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","resourceVersion":"109671658","generation":1,"creationTimestamp":"2025-07-11T06:30:35Z","labels":{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","batch.kubernetes.io/job-name":"create-tenant-zitadel","controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","job-name":"create-tenant-zitadel"},"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"batch/v1","time":"2025-07-11T06:30:35Z","fieldsType":"FieldsV1","fieldsV1":{"f:spec":{"f:backoffLimit":{},"f:completionMode":{},"f:completions":{},"f:manualSelector":{},"f:parallelism":{},"f:podReplacementPolicy":{},"f:suspend":{},"f:template":{"f:spec":{"f:automountServiceAccountToken":{},"f:containers":{"k:{\"name\":\"create-db-user\"}":{".":{},"f:args":{},"f:command":{},"f:env":{".":{},"k:{\"name\":\"DB_NAME\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"DB_PASSWORD\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"DB_USER\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"POSTGRES_HOST\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"ROOT_DATABASE\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"ROOT_PASSWORD\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"ROOT_USERNAME\"}":{".":{},"f:name":{},"f:value":{}}},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:shareProcessNamespace":{},"f:terminationGracePeriodSeconds":{}}}}}},{"manager":"kube-controller-manager","operation":"Update","apiVersion":"batch/v1","time":"2025-07-11T06:30:48Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:completionTime":{},"f:conditions":{},"f:ready":{},"f:startTime":{},"f:succeeded":{},"f:terminating":{},"f:uncountedTerminatedPods":{}}},"subresource":"status"}]},"spec":{"parallelism":1,"completions":1,"backoffLimit":6,"selector":{"matchLabels":{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6"}},"manualSelector":false,"template":{"metadata":{"creationTimestamp":null,"labels":{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","batch.kubernetes.io/job-name":"create-tenant-zitadel","controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","job-name":"create-tenant-zitadel"}},"spec":{"containers":[{"name":"create-db-user","image":"postgres:17-alpine","command":["/bin/sh","-c"],"args":["# Wait for postgres to be ready\nuntil PGPASSWORD=$ROOT_PASSWORD psql -h $POSTGRES_HOST -U $ROOT_USERNAME -d $ROOT_DATABASE -c '\\l'; do\n echo \"Waiting for postgres...\"\n sleep 2\ndone\n\n# Create user and database\nPGPASSWORD=$ROOT_PASSWORD psql -v ON_ERROR_STOP=1 -h $POSTGRES_HOST -U $ROOT_USERNAME -d $ROOT_DATABASE \u003c\u003c-EOSQL\n CREATE USER $DB_USER WITH PASSWORD '$DB_PASSWORD';\n CREATE DATABASE $DB_NAME OWNER $DB_USER;\n GRANT ALL PRIVILEGES ON DATABASE $DB_NAME TO $DB_USER;\nEOSQL\n"],"env":[{"name":"POSTGRES_HOST","value":"postgresql-hl.postgresql.svc.cluster.local"},{"name":"ROOT_USERNAME","value":"postgres"},{"name":"ROOT_PASSWORD","value":"PvwMI{LznVaS\u003cq_[(rXD0p]c\u003e_W-112$IZfdAH2Q"},{"name":"ROOT_DATABASE","value":"postgres"},{"name":"DB_NAME","value":"zitadel"},{"name":"DB_USER","value":"zitadel"},{"name":"DB_PASSWORD","value":"LW+70S#T8*TcfX]HQ*w12\u003eB\u0026"}],"resources":{},"terminationMessagePath":"/dev/termination-log","terminationMessagePolicy":"File","imagePullPolicy":"IfNotPresent"}],"restartPolicy":"Never","terminationGracePeriodSeconds":30,"dnsPolicy":"ClusterFirst","automountServiceAccountToken":true,"shareProcessNamespace":false,"securityContext":{},"schedulerName":"default-scheduler","enableServiceLinks":true}},"completionMode":"NonIndexed","suspend":false,"podReplacementPolicy":"TerminatingOrFailed"},"status":{"conditions":[{"type":"Complete","status":"True","lastProbeTime":"2025-07-11T06:30:48Z","lastTransitionTime":"2025-07-11T06:30:48Z"}],"startTime":"2025-07-11T06:30:35Z","completionTime":"2025-07-11T06:30:48Z","succeeded":1,"terminating":0,"uncountedTerminatedPods":{},"ready":0}} + tf_http_res_version=HTTP/2.0 Date="Fri, 11 Jul 2025 07:00:03 GMT" X-Api-Cattle-Auth=true X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_code=200 @module=kubernetes.Kubernetes X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 timestamp="2025-07-11T09:00:03.423+0200" +2025-07-11T09:00:03.425+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:03 [INFO] Reading job create-tenant-zitadel +2025-07-11T09:00:03.425+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes Accept="application/json, */*" Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev tf_http_op_type=request tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/apis/batch/v1/namespaces/postgresql/jobs/create-tenant-zitadel User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_trans_id=0c5b741c-628d-28da-266c-df490114af00 timestamp="2025-07-11T09:00:03.425+0200" +2025-07-11T09:00:03.470+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Content-Type=application/json tf_http_res_status_reason="200 OK" Audit-Id=3a7c516f-25c0-4e0b-9527-c202d45bb3fd Date="Fri, 11 Jul 2025 07:00:03 GMT" X-Content-Type-Options=nosniff tf_http_op_type=response tf_http_res_status_code=200 tf_http_trans_id=0c5b741c-628d-28da-266c-df490114af00 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 + tf_http_res_body= + | {"kind":"Job","apiVersion":"batch/v1","metadata":{"name":"create-tenant-zitadel","namespace":"postgresql","uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","resourceVersion":"109671658","generation":1,"creationTimestamp":"2025-07-11T06:30:35Z","labels":{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","batch.kubernetes.io/job-name":"create-tenant-zitadel","controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","job-name":"create-tenant-zitadel"},"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"batch/v1","time":"2025-07-11T06:30:35Z","fieldsType":"FieldsV1","fieldsV1":{"f:spec":{"f:backoffLimit":{},"f:completionMode":{},"f:completions":{},"f:manualSelector":{},"f:parallelism":{},"f:podReplacementPolicy":{},"f:suspend":{},"f:template":{"f:spec":{"f:automountServiceAccountToken":{},"f:containers":{"k:{\"name\":\"create-db-user\"}":{".":{},"f:args":{},"f:command":{},"f:env":{".":{},"k:{\"name\":\"DB_NAME\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"DB_PASSWORD\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"DB_USER\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"POSTGRES_HOST\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"ROOT_DATABASE\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"ROOT_PASSWORD\"}":{".":{},"f:name":{},"f:value":{}},"k:{\"name\":\"ROOT_USERNAME\"}":{".":{},"f:name":{},"f:value":{}}},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:shareProcessNamespace":{},"f:terminationGracePeriodSeconds":{}}}}}},{"manager":"kube-controller-manager","operation":"Update","apiVersion":"batch/v1","time":"2025-07-11T06:30:48Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:completionTime":{},"f:conditions":{},"f:ready":{},"f:startTime":{},"f:succeeded":{},"f:terminating":{},"f:uncountedTerminatedPods":{}}},"subresource":"status"}]},"spec":{"parallelism":1,"completions":1,"backoffLimit":6,"selector":{"matchLabels":{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6"}},"manualSelector":false,"template":{"metadata":{"creationTimestamp":null,"labels":{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","batch.kubernetes.io/job-name":"create-tenant-zitadel","controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6","job-name":"create-tenant-zitadel"}},"spec":{"containers":[{"name":"create-db-user","image":"postgres:17-alpine","command":["/bin/sh","-c"],"args":["# Wait for postgres to be ready\nuntil PGPASSWORD=$ROOT_PASSWORD psql -h $POSTGRES_HOST -U $ROOT_USERNAME -d $ROOT_DATABASE -c '\\l'; do\n echo \"Waiting for postgres...\"\n sleep 2\ndone\n\n# Create user and database\nPGPASSWORD=$ROOT_PASSWORD psql -v ON_ERROR_STOP=1 -h $POSTGRES_HOST -U $ROOT_USERNAME -d $ROOT_DATABASE \u003c\u003c-EOSQL\n CREATE USER $DB_USER WITH PASSWORD '$DB_PASSWORD';\n CREATE DATABASE $DB_NAME OWNER $DB_USER;\n GRANT ALL PRIVILEGES ON DATABASE $DB_NAME TO $DB_USER;\nEOSQL\n"],"env":[{"name":"POSTGRES_HOST","value":"postgresql-hl.postgresql.svc.cluster.local"},{"name":"ROOT_USERNAME","value":"postgres"},{"name":"ROOT_PASSWORD","value":"PvwMI{LznVaS\u003cq_[(rXD0p]c\u003e_W-112$IZfdAH2Q"},{"name":"ROOT_DATABASE","value":"postgres"},{"name":"DB_NAME","value":"zitadel"},{"name":"DB_USER","value":"zitadel"},{"name":"DB_PASSWORD","value":"LW+70S#T8*TcfX]HQ*w12\u003eB\u0026"}],"resources":{},"terminationMessagePath":"/dev/termination-log","terminationMessagePolicy":"File","imagePullPolicy":"IfNotPresent"}],"restartPolicy":"Never","terminationGracePeriodSeconds":30,"dnsPolicy":"ClusterFirst","automountServiceAccountToken":true,"shareProcessNamespace":false,"securityContext":{},"schedulerName":"default-scheduler","enableServiceLinks":true}},"completionMode":"NonIndexed","suspend":false,"podReplacementPolicy":"TerminatingOrFailed"},"status":{"conditions":[{"type":"Complete","status":"True","lastProbeTime":"2025-07-11T06:30:48Z","lastTransitionTime":"2025-07-11T06:30:48Z"}],"startTime":"2025-07-11T06:30:35Z","completionTime":"2025-07-11T06:30:48Z","succeeded":1,"terminating":0,"uncountedTerminatedPods":{},"ready":0}} + @module=kubernetes.Kubernetes X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 timestamp="2025-07-11T09:00:03.470+0200" +2025-07-11T09:00:03.470+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:03 [INFO] Received job: &v1.Job{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"create-tenant-zitadel", GenerateName:"", Namespace:"postgresql", SelfLink:"", UID:"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6", ResourceVersion:"109671658", Generation:1, CreationTimestamp:time.Date(2025, time.July, 11, 8, 30, 35, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6", "batch.kubernetes.io/job-name":"create-tenant-zitadel", "controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6", "job-name":"create-tenant-zitadel"}, Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"batch/v1", Time:time.Date(2025, time.July, 11, 8, 30, 35, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000e9a630), Subresource:""}, v1.ManagedFieldsEntry{Manager:"kube-controller-manager", Operation:"Update", APIVersion:"batch/v1", Time:time.Date(2025, time.July, 11, 8, 30, 48, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000e9a660), Subresource:"status"}}}, Spec:v1.JobSpec{Parallelism:(*int32)(0xc000012740), Completions:(*int32)(0xc000012744), ActiveDeadlineSeconds:(*int64)(nil), PodFailurePolicy:(*v1.PodFailurePolicy)(nil), BackoffLimit:(*int32)(0xc000012748), BackoffLimitPerIndex:(*int32)(nil), MaxFailedIndexes:(*int32)(nil), Selector:(*v1.LabelSelector)(0xc000fa04c0), ManualSelector:(*bool)(0xc00001274c), Template:v1.PodTemplateSpec{ObjectMeta:v1.ObjectMeta{Name:"", GenerateName:"", Namespace:"", SelfLink:"", UID:"", ResourceVersion:"", Generation:0, CreationTimestamp:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"batch.kubernetes.io/controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6", "batch.kubernetes.io/job-name":"create-tenant-zitadel", "controller-uid":"0a8b48b3-0c8c-4dcc-8736-fb3bd93decb6", "job-name":"create-tenant-zitadel"}, Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry(nil)}, Spec:v1.PodSpec{Volumes:[]v1.Volume(nil), InitContainers:[]v1.Container(nil), Containers:[]v1.Container{v1.Container{Name:"create-db-user", Image:"postgres:17-alpine", Command:[]string{"/bin/sh", "-c"}, Args:[]string{"# Wait for postgres to be ready\nuntil PGPASSWORD=$ROOT_PASSWORD psql -h $POSTGRES_HOST -U $ROOT_USERNAME -d $ROOT_DATABASE -c '\\l'; do\n echo \"Waiting for postgres...\"\n sleep 2\ndone\n\n# Create user and database\nPGPASSWORD=$ROOT_PASSWORD psql -v ON_ERROR_STOP=1 -h $POSTGRES_HOST -U $ROOT_USERNAME -d $ROOT_DATABASE <<-EOSQL\n CREATE USER $DB_USER WITH PASSWORD '$DB_PASSWORD';\n CREATE DATABASE $DB_NAME OWNER $DB_USER;\n GRANT ALL PRIVILEGES ON DATABASE $DB_NAME TO $DB_USER;\nEOSQL\n"}, WorkingDir:"", Ports:[]v1.ContainerPort(nil), EnvFrom:[]v1.EnvFromSource(nil), Env:[]v1.EnvVar{v1.EnvVar{Name:"POSTGRES_HOST", Value:"postgresql-hl.postgresql.svc.cluster.local", ValueFrom:(*v1.EnvVarSource)(nil)}, v1.EnvVar{Name:"ROOT_USERNAME", Value:"postgres", ValueFrom:(*v1.EnvVarSource)(nil)}, v1.EnvVar{Name:"ROOT_PASSWORD", Value:"PvwMI{LznVaS_W-112$IZfdAH2Q", ValueFrom:(*v1.EnvVarSource)(nil)}, v1.EnvVar{Name:"ROOT_DATABASE", Value:"postgres", ValueFrom:(*v1.EnvVarSource)(nil)}, v1.EnvVar{Name:"DB_NAME", Value:"zitadel", ValueFrom:(*v1.EnvVarSource)(nil)}, v1.EnvVar{Name:"DB_USER", Value:"zitadel", ValueFrom:(*v1.EnvVarSource)(nil)}, v1.EnvVar{Name:"DB_PASSWORD", Value:"LW+70S#T8*TcfX]HQ*w12>B&", ValueFrom:(*v1.EnvVarSource)(nil)}}, Resources:v1.ResourceRequirements{Limits:v1.ResourceList(nil), Requests:v1.ResourceList(nil), Claims:[]v1.ResourceClaim(nil)}, ResizePolicy:[]v1.ContainerResizePolicy(nil), RestartPolicy:(*v1.ContainerRestartPolicy)(nil), VolumeMounts:[]v1.VolumeMount(nil), VolumeDevices:[]v1.VolumeDevice(nil), LivenessProbe:(*v1.Probe)(nil), ReadinessProbe:(*v1.Probe)(nil), StartupProbe:(*v1.Probe)(nil), Lifecycle:(*v1.Lifecycle)(nil), TerminationMessagePath:"/dev/termination-log", TerminationMessagePolicy:"File", ImagePullPolicy:"IfNotPresent", SecurityContext:(*v1.SecurityContext)(nil), Stdin:false, StdinOnce:false, TTY:false}}, EphemeralContainers:[]v1.EphemeralContainer(nil), RestartPolicy:"Never", TerminationGracePeriodSeconds:(*int64)(0xc000012a18), ActiveDeadlineSeconds:(*int64)(nil), DNSPolicy:"ClusterFirst", NodeSelector:map[string]string(nil), ServiceAccountName:"", DeprecatedServiceAccount:"", AutomountServiceAccountToken:(*bool)(0xc000012a30), NodeName:"", HostNetwork:false, HostPID:false, HostIPC:false, ShareProcessNamespace:(*bool)(0xc000012a31), SecurityContext:(*v1.PodSecurityContext)(0xc000270230), ImagePullSecrets:[]v1.LocalObjectReference(nil), Hostname:"", Subdomain:"", Affinity:(*v1.Affinity)(nil), SchedulerName:"default-scheduler", Tolerations:[]v1.Toleration(nil), HostAliases:[]v1.HostAlias(nil), PriorityClassName:"", Priority:(*int32)(nil), DNSConfig:(*v1.PodDNSConfig)(nil), ReadinessGates:[]v1.PodReadinessGate(nil), RuntimeClassName:(*string)(nil), EnableServiceLinks:(*bool)(0xc000012a32), PreemptionPolicy:(*v1.PreemptionPolicy)(nil), Overhead:v1.ResourceList(nil), TopologySpreadConstraints:[]v1.TopologySpreadConstraint(nil), SetHostnameAsFQDN:(*bool)(nil), OS:(*v1.PodOS)(nil), HostUsers:(*bool)(nil), SchedulingGates:[]v1.PodSchedulingGate(nil), ResourceClaims:[]v1.PodResourceClaim(nil)}}, TTLSecondsAfterFinished:(*int32)(nil), CompletionMode:(*v1.CompletionMode)(0xc001141b10), Suspend:(*bool)(0xc000012a3e), PodReplacementPolicy:(*v1.PodReplacementPolicy)(0xc001141b20)}, Status:v1.JobStatus{Conditions:[]v1.JobCondition{v1.JobCondition{Type:"Complete", Status:"True", LastProbeTime:time.Date(2025, time.July, 11, 8, 30, 48, 0, time.Local), LastTransitionTime:time.Date(2025, time.July, 11, 8, 30, 48, 0, time.Local), Reason:"", Message:""}}, StartTime:time.Date(2025, time.July, 11, 8, 30, 35, 0, time.Local), CompletionTime:time.Date(2025, time.July, 11, 8, 30, 48, 0, time.Local), Active:0, Succeeded:1, Failed:0, Terminating:(*int32)(0xc000012a4c), CompletedIndexes:"", FailedIndexes:(*string)(nil), UncountedTerminatedPods:(*v1.UncountedTerminatedPods)(0xc000fd4870), Ready:(*int32)(0xc000012a50)}} +2025-07-11T09:00:03.488+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.zitadel-db.kubernetes_job.create-tenant[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_completion: planned value cty.True for a non-computed attribute + - .spec[0].backoff_limit: planned value cty.NumberIntVal(6) for a non-computed attribute + - .spec[0].completions: planned value cty.NumberIntVal(1) for a non-computed attribute + - .spec[0].manual_selector: planned value cty.False for a non-computed attribute + - .spec[0].parallelism: planned value cty.NumberIntVal(1) for a non-computed attribute + - .spec[0].ttl_seconds_after_finished: planned value cty.StringVal("") for a non-computed attribute + - .spec[0].active_deadline_seconds: planned value cty.NumberIntVal(0) for a non-computed attribute + - .spec[0].selector: block count in plan (1) disagrees with count in config (0) + - .spec[0].template[0].metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .spec[0].template[0].metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .spec[0].template[0].metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .spec[0].template[0].spec[0].dns_policy: planned value cty.StringVal("ClusterFirst") for a non-computed attribute + - .spec[0].template[0].spec[0].host_network: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].host_pid: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].node_selector: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .spec[0].template[0].spec[0].runtime_class_name: planned value cty.StringVal("") for a non-computed attribute + - .spec[0].template[0].spec[0].share_process_namespace: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].subdomain: planned value cty.StringVal("") for a non-computed attribute + - .spec[0].template[0].spec[0].termination_grace_period_seconds: planned value cty.NumberIntVal(30) for a non-computed attribute + - .spec[0].template[0].spec[0].active_deadline_seconds: planned value cty.NumberIntVal(0) for a non-computed attribute + - .spec[0].template[0].spec[0].automount_service_account_token: planned value cty.True for a non-computed attribute + - .spec[0].template[0].spec[0].restart_policy: planned value cty.StringVal("Never") for a non-computed attribute + - .spec[0].template[0].spec[0].enable_service_links: planned value cty.True for a non-computed attribute + - .spec[0].template[0].spec[0].host_ipc: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].priority_class_name: planned value cty.StringVal("") for a non-computed attribute + - .spec[0].template[0].spec[0].container[0].termination_message_path: planned value cty.StringVal("/dev/termination-log") for a non-computed attribute + - .spec[0].template[0].spec[0].container[0].tty: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].container[0].working_dir: planned value cty.StringVal("") for a non-computed attribute + - .spec[0].template[0].spec[0].container[0].stdin: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].container[0].stdin_once: planned value cty.False for a non-computed attribute + - .spec[0].template[0].spec[0].container[0].resources: block count in plan (1) disagrees with count in config (0) + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute +2025-07-11T09:00:03.490+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:03.491+0200 [DEBUG] ReferenceTransformer: "module.zitadel.helm_release.zitadel[0]" references: [] +2025-07-11T09:00:03.492+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=975156 +2025-07-11T09:00:03.492+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:03.498+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0001bce00 Settings:0xc0006ca240 RegistryClient:0xc0004b8d80 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T09:00:03.498+0200" +2025-07-11T09:00:03.499+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Current state before changes: {Atomic:false Chart:"zitadel" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"zitadel" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"v2.67.2","chart":"zitadel","first_deployed":1752215453,"last_deployed":1752217130,"name":"zitadel","namespace":"zitadel","notes":"Thank you for installing zitadel.\nExtract your service account key for authenticating at the ZITADEL API's:\n\n $ kubectl -n zitadel get secret zitadel-admin-sa -o jsonpath='{ .data.zitadel-admin-sa\\.json }' | base64 -D","revision":2,"values":"{\"ingress\":{\"annotations\":{\"cert-manager.io/cluster-issuer\":\"letsencrypt\",\"gethomepage.dev/description\":\"Identity and Access Management\",\"gethomepage.dev/enabled\":\"true\",\"gethomepage.dev/group\":\"Tools\",\"gethomepage.dev/icon\":\"zitadel.png\",\"gethomepage.dev/name\":\"Zitadel\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/backend-protocol\":\"GRPC\",\"nginx.ingress.kubernetes.io/grpc-backend\":\"true\"},\"className\":\"nginx\",\"enabled\":true,\"hosts\":[{\"host\":\"zitadel.365zon.fourlights.dev\",\"paths\":[{\"path\":\"/\",\"pathType\":\"Prefix\"}]}]},\"readinessProbe\":{\"failureThreshold\":10,\"initialDelaySeconds\":5,\"periodSeconds\":5},\"service\":{\"annotations\":{\"traefik.ingress.kubernetes.io/service.serversscheme\":\"h2c\"}},\"startupProbe\":{\"failureThreshold\":30,\"periodSeconds\":5},\"zitadel\":{\"configmapConfig\":{\"Database\":{\"Postgres\":{\"Admin\":{\"Password\":\"PvwMI{LznVaS\\u003cq_[(rXD0p]c\\u003e_W-112$IZfdAH2Q\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"postgres\"},\"Database\":\"zitadel\",\"Host\":\"postgresql-hl.postgresql.svc.cluster.local\",\"MaxConnIdleTime\":\"5m\",\"MaxConnLifetime\":\"30m\",\"MaxIdleConns\":10,\"MaxOpenConns\":20,\"Port\":5432,\"User\":{\"Password\":\"LW+70S#T8*TcfX]HQ*w12\\u003eB\\u0026\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"zitadel\"}}},\"ExternalDomain\":\"zitadel.365zon.fourlights.dev\",\"ExternalPort\":443,\"ExternalSecure\":true,\"FirstInstance\":{\"Org\":{\"Machine\":{\"Machine\":{\"Name\":\"Admin\",\"Username\":\"zitadel-admin-sa\"},\"MachineKey\":{\"ExpirationDate\":\"2026-01-01T00:00:00Z\",\"Type\":1}}}},\"Log\":{\"Level\":\"info\"},\"LogStore\":{\"Access\":{\"Stdout\":{\"Enabled\":true}}},\"TLS\":{\"Enabled\":false}},\"masterkeySecretName\":\"zitadel\"}}","version":"8.12.0"} Name:"zitadel" Namespace:"zitadel" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.zitadel.com" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["zitadel:\n masterkeySecretName: \"zitadel\"\n configmapConfig:\n Log:\n Level: 'info'\n LogStore:\n Access:\n Stdout:\n Enabled: true\n ExternalSecure: true\n ExternalDomain: zitadel.365zon.fourlights.dev\n ExternalPort: 443\n TLS:\n Enabled: false\n FirstInstance:\n Org:\n Machine:\n Machine:\n Username: zitadel-admin-sa\n Name: Admin\n MachineKey:\n ExpirationDate: \"2026-01-01T00:00:00Z\"\n Type: 1\n Database:\n Postgres:\n Host: postgresql-hl.postgresql.svc.cluster.local\n Port: 5432\n Database: zitadel\n MaxOpenConns: 20\n MaxIdleConns: 10\n MaxConnLifetime: 30m\n MaxConnIdleTime: 5m\n User:\n Username: zitadel\n Password: \"LW+70S#T8*TcfX]HQ*w12>B&\"\n SSL:\n Mode: disable\n Admin:\n Username: postgres\n Password: \"PvwMI{LznVaS_W-112$IZfdAH2Q\"\n SSL:\n Mode: disable\n \n\nreadinessProbe:\n initialDelaySeconds: 5\n periodSeconds: 5\n failureThreshold: 10\n\nstartupProbe:\n periodSeconds: 5\n failureThreshold: 30\n\nservice:\n annotations:\n traefik.ingress.kubernetes.io/service.serversscheme: h2c\n\ningress:\n enabled: true\n className: nginx\n annotations:\n kubernetes.io/ingress.class: nginx\n cert-manager.io/cluster-issuer: letsencrypt\n \n nginx.ingress.kubernetes.io/backend-protocol: \"GRPC\"\n nginx.ingress.kubernetes.io/grpc-backend: \"true\"\n \n gethomepage.dev/enabled: \"true\"\n gethomepage.dev/name: \"Zitadel\"\n gethomepage.dev/description: \"Identity and Access Management\"\n gethomepage.dev/group: \"Tools\"\n gethomepage.dev/icon: \"zitadel.png\"\n \n hosts:\n - host: zitadel.365zon.fourlights.dev\n paths:\n - path: /\n pathType: Prefix\n\n"] Verify:false Version:"8.12.0" Wait:true WaitForJobs:true}: tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:877 timestamp="2025-07-11T09:00:03.499+0200" +2025-07-11T09:00:03.499+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: zitadel] Start: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1653 @module=helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release timestamp="2025-07-11T09:00:03.499+0200" +2025-07-11T09:00:03.499+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_rpc=ReadResource timestamp="2025-07-11T09:00:03.499+0200" +2025-07-11T09:00:03.499+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm configPaths=[] tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 timestamp="2025-07-11T09:00:03.499+0200" +2025-07-11T09:00:03.499+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @module=helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T09:00:03.499+0200" +2025-07-11T09:00:03.499+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: zitadel getRelease post action created: @module=helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T09:00:03.499+0200" +2025-07-11T09:00:03.703+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: zitadel getRelease post run: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 @module=helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T09:00:03.702+0200" +2025-07-11T09:00:03.703+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: zitadel getRelease completed: tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T09:00:03.702+0200" +2025-07-11T09:00:03.703+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseExists: zitadel] Done: @module=helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1668 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T09:00:03.702+0200" +2025-07-11T09:00:03.703+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceReleaseRead: zitadel] Started: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:899 @module=helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 timestamp="2025-07-11T09:00:03.702+0200" +2025-07-11T09:00:03.703+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 KubernetesData=map[] timestamp="2025-07-11T09:00:03.702+0200" +2025-07-11T09:00:03.703+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm configPaths=[] timestamp="2025-07-11T09:00:03.703+0200" +2025-07-11T09:00:03.703+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release tf_rpc=ReadResource @module=helm timestamp="2025-07-11T09:00:03.703+0200" +2025-07-11T09:00:03.703+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: zitadel getRelease post action created: tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1690 @module=helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T09:00:03.703+0200" +2025-07-11T09:00:03.837+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: zitadel getRelease post run: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1693 tf_rpc=ReadResource @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release timestamp="2025-07-11T09:00:03.837+0200" +2025-07-11T09:00:03.837+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: zitadel getRelease completed: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1707 @module=helm timestamp="2025-07-11T09:00:03.837+0200" +2025-07-11T09:00:03.837+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"v2.67.2","chart":"zitadel","first_deployed":1752215453,"last_deployed":1752217130,"name":"zitadel","namespace":"zitadel","notes":"Thank you for installing zitadel.\nExtract your service account key for authenticating at the ZITADEL API's:\n\n $ kubectl -n zitadel get secret zitadel-admin-sa -o jsonpath='{ .data.zitadel-admin-sa\\.json }' | base64 -D","revision":2,"values":"{\"ingress\":{\"annotations\":{\"cert-manager.io/cluster-issuer\":\"letsencrypt\",\"gethomepage.dev/description\":\"Identity and Access Management\",\"gethomepage.dev/enabled\":\"true\",\"gethomepage.dev/group\":\"Tools\",\"gethomepage.dev/icon\":\"zitadel.png\",\"gethomepage.dev/name\":\"Zitadel\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/backend-protocol\":\"GRPC\",\"nginx.ingress.kubernetes.io/grpc-backend\":\"true\"},\"className\":\"nginx\",\"enabled\":true,\"hosts\":[{\"host\":\"zitadel.365zon.fourlights.dev\",\"paths\":[{\"path\":\"/\",\"pathType\":\"Prefix\"}]}]},\"readinessProbe\":{\"failureThreshold\":10,\"initialDelaySeconds\":5,\"periodSeconds\":5},\"service\":{\"annotations\":{\"traefik.ingress.kubernetes.io/service.serversscheme\":\"h2c\"}},\"startupProbe\":{\"failureThreshold\":30,\"periodSeconds\":5},\"zitadel\":{\"configmapConfig\":{\"Database\":{\"Postgres\":{\"Admin\":{\"Password\":\"PvwMI{LznVaS\\u003cq_[(rXD0p]c\\u003e_W-112$IZfdAH2Q\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"postgres\"},\"Database\":\"zitadel\",\"Host\":\"postgresql-hl.postgresql.svc.cluster.local\",\"MaxConnIdleTime\":\"5m\",\"MaxConnLifetime\":\"30m\",\"MaxIdleConns\":10,\"MaxOpenConns\":20,\"Port\":5432,\"User\":{\"Password\":\"LW+70S#T8*TcfX]HQ*w12\\u003eB\\u0026\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"zitadel\"}}},\"ExternalDomain\":\"zitadel.365zon.fourlights.dev\",\"ExternalPort\":443,\"ExternalSecure\":true,\"FirstInstance\":{\"Org\":{\"Machine\":{\"Machine\":{\"Name\":\"Admin\",\"Username\":\"zitadel-admin-sa\"},\"MachineKey\":{\"ExpirationDate\":\"2026-01-01T00:00:00Z\",\"Type\":1}}}},\"Log\":{\"Level\":\"info\"},\"LogStore\":{\"Access\":{\"Stdout\":{\"Enabled\":true}}},\"TLS\":{\"Enabled\":false}},\"masterkeySecretName\":\"zitadel\"}}","version":"8.12.0"}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 tf_resource_type=helm_release tf_rpc=ReadResource @module=helm timestamp="2025-07-11T09:00:03.837+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=reset_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=name tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=recreate_pods tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_rpc=ReadResource timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=lint tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=cleanup_on_fail tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=max_history tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=reuse_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=status @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_rpc=ReadResource timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_attribute_path=metadata.chart tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.revision tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=metadata.last_deployed tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.app_version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @module=sdk.framework timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata.namespace tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.version tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_attribute_path=metadata.notes timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=metadata.name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=metadata.first_deployed tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=metadata.values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 @module=sdk.framework timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=metadata tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=dependency_update tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_rpc=ReadResource timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.838+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=disable_openapi_validation tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.839+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=values[0] tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.839+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.839+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=create_namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release tf_rpc=ReadResource timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.839+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=replace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.839+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=repository tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.839+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=id tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.839+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_attribute_path=wait_for_jobs tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.839+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=version @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.839+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=skip_crds tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.839+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release tf_attribute_path=pass_credentials tf_rpc=ReadResource timestamp="2025-07-11T09:00:03.838+0200" +2025-07-11T09:00:03.839+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource tf_attribute_path=atomic tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T09:00:03.839+0200" +2025-07-11T09:00:03.839+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=wait tf_resource_type=helm_release timestamp="2025-07-11T09:00:03.839+0200" +2025-07-11T09:00:03.839+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=force_update tf_resource_type=helm_release timestamp="2025-07-11T09:00:03.839+0200" +2025-07-11T09:00:03.839+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=disable_webhooks tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T09:00:03.839+0200" +2025-07-11T09:00:03.839+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_resource_type=helm_release tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=timeout tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 timestamp="2025-07-11T09:00:03.839+0200" +2025-07-11T09:00:03.839+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=chart tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_rpc=ReadResource timestamp="2025-07-11T09:00:03.839+0200" +2025-07-11T09:00:03.839+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=render_subchart_notes tf_resource_type=helm_release timestamp="2025-07-11T09:00:03.839+0200" +2025-07-11T09:00:03.839+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=disable_crd_hooks tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_resource_type=helm_release tf_rpc=ReadResource @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T09:00:03.839+0200" +2025-07-11T09:00:03.839+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=6f65514f-7018-20b2-0eb6-8b90aca2c029 tf_rpc=ReadResource tf_attribute_path=verify timestamp="2025-07-11T09:00:03.839+0200" +2025-07-11T09:00:03.840+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T09:00:03.842+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0001bce00 Settings:0xc0006ca240 RegistryClient:0xc0004b8d80 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=d4f651ad-acb2-000b-c7f7-da423d3ae166 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_rpc=ValidateResourceConfig timestamp="2025-07-11T09:00:03.842+0200" +2025-07-11T09:00:03.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0001bce00 Settings:0xc0006ca240 RegistryClient:0xc0004b8d80 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_req_id=f9c5c9b9-0c72-4519-a5e2-64c0752b784b tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:00:03.844+0200" +2025-07-11T09:00:03.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"zitadel" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"zitadel" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"v2.67.2","chart":"zitadel","first_deployed":1752215453,"last_deployed":1752217130,"name":"zitadel","namespace":"zitadel","notes":"Thank you for installing zitadel.\nExtract your service account key for authenticating at the ZITADEL API's:\n\n $ kubectl -n zitadel get secret zitadel-admin-sa -o jsonpath='{ .data.zitadel-admin-sa\\.json }' | base64 -D","revision":2,"values":"{\"ingress\":{\"annotations\":{\"cert-manager.io/cluster-issuer\":\"letsencrypt\",\"gethomepage.dev/description\":\"Identity and Access Management\",\"gethomepage.dev/enabled\":\"true\",\"gethomepage.dev/group\":\"Tools\",\"gethomepage.dev/icon\":\"zitadel.png\",\"gethomepage.dev/name\":\"Zitadel\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/backend-protocol\":\"GRPC\",\"nginx.ingress.kubernetes.io/grpc-backend\":\"true\"},\"className\":\"nginx\",\"enabled\":true,\"hosts\":[{\"host\":\"zitadel.365zon.fourlights.dev\",\"paths\":[{\"path\":\"/\",\"pathType\":\"Prefix\"}]}]},\"readinessProbe\":{\"failureThreshold\":10,\"initialDelaySeconds\":5,\"periodSeconds\":5},\"service\":{\"annotations\":{\"traefik.ingress.kubernetes.io/service.serversscheme\":\"h2c\"}},\"startupProbe\":{\"failureThreshold\":30,\"periodSeconds\":5},\"zitadel\":{\"configmapConfig\":{\"Database\":{\"Postgres\":{\"Admin\":{\"Password\":\"PvwMI{LznVaS\\u003cq_[(rXD0p]c\\u003e_W-112$IZfdAH2Q\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"postgres\"},\"Database\":\"zitadel\",\"Host\":\"postgresql-hl.postgresql.svc.cluster.local\",\"MaxConnIdleTime\":\"5m\",\"MaxConnLifetime\":\"30m\",\"MaxIdleConns\":10,\"MaxOpenConns\":20,\"Port\":5432,\"User\":{\"Password\":\"LW+70S#T8*TcfX]HQ*w12\\u003eB\\u0026\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"zitadel\"}}},\"ExternalDomain\":\"zitadel.365zon.fourlights.dev\",\"ExternalPort\":443,\"ExternalSecure\":true,\"FirstInstance\":{\"Org\":{\"Machine\":{\"Machine\":{\"Name\":\"Admin\",\"Username\":\"zitadel-admin-sa\"},\"MachineKey\":{\"ExpirationDate\":\"2026-01-01T00:00:00Z\",\"Type\":1}}}},\"Log\":{\"Level\":\"info\"},\"LogStore\":{\"Access\":{\"Stdout\":{\"Enabled\":true}}},\"TLS\":{\"Enabled\":false}},\"masterkeySecretName\":\"zitadel\"}}","version":"8.12.0"} Name:"zitadel" Namespace:"zitadel" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.zitadel.com" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["zitadel:\n masterkeySecretName: \"zitadel\"\n configmapConfig:\n Log:\n Level: 'info'\n LogStore:\n Access:\n Stdout:\n Enabled: true\n ExternalSecure: true\n ExternalDomain: zitadel.365zon.fourlights.dev\n ExternalPort: 443\n TLS:\n Enabled: false\n FirstInstance:\n Org:\n Machine:\n Machine:\n Username: zitadel-admin-sa\n Name: Admin\n MachineKey:\n ExpirationDate: \"2026-01-01T00:00:00Z\"\n Type: 1\n Database:\n Postgres:\n Host: postgresql-hl.postgresql.svc.cluster.local\n Port: 5432\n Database: zitadel\n MaxOpenConns: 20\n MaxIdleConns: 10\n MaxConnLifetime: 30m\n MaxConnIdleTime: 5m\n User:\n Username: zitadel\n Password: \"LW+70S#T8*TcfX]HQ*w12>B&\"\n SSL:\n Mode: disable\n Admin:\n Username: postgres\n Password: \"PvwMI{LznVaS_W-112$IZfdAH2Q\"\n SSL:\n Mode: disable\n \n\nreadinessProbe:\n initialDelaySeconds: 5\n periodSeconds: 5\n failureThreshold: 10\n\nstartupProbe:\n periodSeconds: 5\n failureThreshold: 30\n\nservice:\n annotations:\n traefik.ingress.kubernetes.io/service.serversscheme: h2c\n\ningress:\n enabled: true\n className: nginx\n annotations:\n kubernetes.io/ingress.class: nginx\n cert-manager.io/cluster-issuer: letsencrypt\n \n nginx.ingress.kubernetes.io/backend-protocol: \"GRPC\"\n nginx.ingress.kubernetes.io/grpc-backend: \"true\"\n \n gethomepage.dev/enabled: \"true\"\n gethomepage.dev/name: \"Zitadel\"\n gethomepage.dev/description: \"Identity and Access Management\"\n gethomepage.dev/group: \"Tools\"\n gethomepage.dev/icon: \"zitadel.png\"\n \n hosts:\n - host: zitadel.365zon.fourlights.dev\n paths:\n - path: /\n pathType: Prefix\n\n"] Verify:false Version:"8.12.0" Wait:true WaitForJobs:true}: tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f9c5c9b9-0c72-4519-a5e2-64c0752b784b timestamp="2025-07-11T09:00:03.848+0200" +2025-07-11T09:00:03.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: &{Atomic:false Chart:"zitadel" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID:"zitadel" Keyring: Lint:false Manifest: MaxHistory:0 Metadata:{"app_version":"v2.67.2","chart":"zitadel","first_deployed":1752215453,"last_deployed":1752217130,"name":"zitadel","namespace":"zitadel","notes":"Thank you for installing zitadel.\nExtract your service account key for authenticating at the ZITADEL API's:\n\n $ kubectl -n zitadel get secret zitadel-admin-sa -o jsonpath='{ .data.zitadel-admin-sa\\.json }' | base64 -D","revision":2,"values":"{\"ingress\":{\"annotations\":{\"cert-manager.io/cluster-issuer\":\"letsencrypt\",\"gethomepage.dev/description\":\"Identity and Access Management\",\"gethomepage.dev/enabled\":\"true\",\"gethomepage.dev/group\":\"Tools\",\"gethomepage.dev/icon\":\"zitadel.png\",\"gethomepage.dev/name\":\"Zitadel\",\"kubernetes.io/ingress.class\":\"nginx\",\"nginx.ingress.kubernetes.io/backend-protocol\":\"GRPC\",\"nginx.ingress.kubernetes.io/grpc-backend\":\"true\"},\"className\":\"nginx\",\"enabled\":true,\"hosts\":[{\"host\":\"zitadel.365zon.fourlights.dev\",\"paths\":[{\"path\":\"/\",\"pathType\":\"Prefix\"}]}]},\"readinessProbe\":{\"failureThreshold\":10,\"initialDelaySeconds\":5,\"periodSeconds\":5},\"service\":{\"annotations\":{\"traefik.ingress.kubernetes.io/service.serversscheme\":\"h2c\"}},\"startupProbe\":{\"failureThreshold\":30,\"periodSeconds\":5},\"zitadel\":{\"configmapConfig\":{\"Database\":{\"Postgres\":{\"Admin\":{\"Password\":\"PvwMI{LznVaS\\u003cq_[(rXD0p]c\\u003e_W-112$IZfdAH2Q\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"postgres\"},\"Database\":\"zitadel\",\"Host\":\"postgresql-hl.postgresql.svc.cluster.local\",\"MaxConnIdleTime\":\"5m\",\"MaxConnLifetime\":\"30m\",\"MaxIdleConns\":10,\"MaxOpenConns\":20,\"Port\":5432,\"User\":{\"Password\":\"LW+70S#T8*TcfX]HQ*w12\\u003eB\\u0026\",\"SSL\":{\"Mode\":\"disable\"},\"Username\":\"zitadel\"}}},\"ExternalDomain\":\"zitadel.365zon.fourlights.dev\",\"ExternalPort\":443,\"ExternalSecure\":true,\"FirstInstance\":{\"Org\":{\"Machine\":{\"Machine\":{\"Name\":\"Admin\",\"Username\":\"zitadel-admin-sa\"},\"MachineKey\":{\"ExpirationDate\":\"2026-01-01T00:00:00Z\",\"Type\":1}}}},\"Log\":{\"Level\":\"info\"},\"LogStore\":{\"Access\":{\"Stdout\":{\"Enabled\":true}}},\"TLS\":{\"Enabled\":false}},\"masterkeySecretName\":\"zitadel\"}}","version":"8.12.0"} Name:"zitadel" Namespace:"zitadel" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.zitadel.com" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["zitadel:\n masterkeySecretName: \"zitadel\"\n configmapConfig:\n Log:\n Level: 'info'\n LogStore:\n Access:\n Stdout:\n Enabled: true\n ExternalSecure: true\n ExternalDomain: zitadel.365zon.fourlights.dev\n ExternalPort: 443\n TLS:\n Enabled: false\n FirstInstance:\n Org:\n Machine:\n Machine:\n Username: zitadel-admin-sa\n Name: Admin\n MachineKey:\n ExpirationDate: \"2026-01-01T00:00:00Z\"\n Type: 1\n Database:\n Postgres:\n Host: postgresql-hl.postgresql.svc.cluster.local\n Port: 5432\n Database: zitadel\n MaxOpenConns: 20\n MaxIdleConns: 10\n MaxConnLifetime: 30m\n MaxConnIdleTime: 5m\n User:\n Username: zitadel\n Password: \"LW+70S#T8*TcfX]HQ*w12>B&\"\n SSL:\n Mode: disable\n Admin:\n Username: postgres\n Password: \"PvwMI{LznVaS_W-112$IZfdAH2Q\"\n SSL:\n Mode: disable\n \n\nreadinessProbe:\n initialDelaySeconds: 5\n periodSeconds: 5\n failureThreshold: 10\n\nstartupProbe:\n periodSeconds: 5\n failureThreshold: 30\n\nservice:\n annotations:\n traefik.ingress.kubernetes.io/service.serversscheme: h2c\n\ningress:\n enabled: true\n className: nginx\n annotations:\n kubernetes.io/ingress.class: nginx\n cert-manager.io/cluster-issuer: letsencrypt\n \n nginx.ingress.kubernetes.io/backend-protocol: \"GRPC\"\n nginx.ingress.kubernetes.io/grpc-backend: \"true\"\n \n gethomepage.dev/enabled: \"true\"\n gethomepage.dev/name: \"Zitadel\"\n gethomepage.dev/description: \"Identity and Access Management\"\n gethomepage.dev/group: \"Tools\"\n gethomepage.dev/icon: \"zitadel.png\"\n \n hosts:\n - host: zitadel.365zon.fourlights.dev\n paths:\n - path: /\n pathType: Prefix\n\n"] Verify:false Version:"8.12.0" Wait:true WaitForJobs:true}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f9c5c9b9-0c72-4519-a5e2-64c0752b784b tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 tf_rpc=PlanResourceChange timestamp="2025-07-11T09:00:03.848+0200" +2025-07-11T09:00:03.848+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Start: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 tf_req_id=f9c5c9b9-0c72-4519-a5e2-64c0752b784b timestamp="2025-07-11T09:00:03.848+0200" +2025-07-11T09:00:03.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f9c5c9b9-0c72-4519-a5e2-64c0752b784b tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 KubernetesData=map[] tf_rpc=PlanResourceChange timestamp="2025-07-11T09:00:03.848+0200" +2025-07-11T09:00:03.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange configPaths=[] tf_req_id=f9c5c9b9-0c72-4519-a5e2-64c0752b784b timestamp="2025-07-11T09:00:03.849+0200" +2025-07-11T09:00:03.849+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f9c5c9b9-0c72-4519-a5e2-64c0752b784b tf_resource_type=helm_release timestamp="2025-07-11T09:00:03.849+0200" +2025-07-11T09:00:03.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Initial Values: Name=zitadel, Namespace=zitadel, Repository=https://charts.zitadel.com, Repository_Username=, Repository_Password=, Chart=zitadel: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f9c5c9b9-0c72-4519-a5e2-64c0752b784b tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T09:00:03.849+0200" +2025-07-11T09:00:03.849+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc0006ca360 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: @module=helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f9c5c9b9-0c72-4519-a5e2-64c0752b784b timestamp="2025-07-11T09:00:03.849+0200" +2025-07-11T09:00:04.426+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Got chart: tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=f9c5c9b9-0c72-4519-a5e2-64c0752b784b timestamp="2025-07-11T09:00:04.426+0200" +2025-07-11T09:00:04.426+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_req_id=f9c5c9b9-0c72-4519-a5e2-64c0752b784b @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:00:04.426+0200" +2025-07-11T09:00:04.426+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Release validated: @module=helm tf_req_id=f9c5c9b9-0c72-4519-a5e2-64c0752b784b tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 timestamp="2025-07-11T09:00:04.426+0200" +2025-07-11T09:00:04.426+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: zitadel] Done: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 @module=helm tf_req_id=f9c5c9b9-0c72-4519-a5e2-64c0752b784b tf_resource_type=helm_release timestamp="2025-07-11T09:00:04.426+0200" +2025-07-11T09:00:04.428+0200 [DEBUG] ReferenceTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin" references: [] +2025-07-11T09:00:04.428+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:04.431+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=975009 +2025-07-11T09:00:04.431+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:04.432+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:04 [INFO] Reading secret zitadel-admin-sa +2025-07-11T09:00:04.432+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_method=GET Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/zitadel/secrets/zitadel-admin-sa @module=kubernetes.Kubernetes new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_version=HTTP/1.1 tf_http_trans_id=df6f8d63-c204-73ef-3710-563a53487f25 Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev timestamp="2025-07-11T09:00:04.432+0200" +2025-07-11T09:00:04.485+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_version=HTTP/2.0 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"zitadel-admin-sa","namespace":"zitadel","uid":"a0a1976c-014e-4471-9660-8fb4e595ae6e","resourceVersion":"109672001","creationTimestamp":"2025-07-11T06:31:34Z","managedFields":[{"manager":"kubectl-create","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:31:34Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:zitadel-admin-sa.json":{}},"f:type":{}}}]},"data":{"zitadel-admin-sa.json":"eyJ0eXBlIjoic2VydmljZWFjY291bnQiLCJrZXlJZCI6IjMyODM2Mjc4NTA0NDU3NTY2MiIsImtleSI6Ii0tLS0tQkVHSU4gUlNBIFBSSVZBVEUgS0VZLS0tLS1cbk1JSUVvd0lCQUFLQ0FRRUExK2dnQTA1UHNaWnpwa2xjcUVBY2s4VVVrbjFINUhKWGlEM3RvMElVMnZuTFFZazlcbi9weEhNMzBuMnVXTE9mbEwzT1dlcXkwckRmUjJ0cDNhMGd6aUdPM01WNkV1RFBnNzNXWnFITXd4YTRSa1BPTU9cbkxjSGNmbnA0Ykc5UnhaZ2J2ajJwRmt2UEovajVLQzU0SER5b2wydXJXdUdTVktLSUdZN2JVRTRIRDBuK2VqcjZcbkxvRWVHdElWMTd0dGlwcXZGMmpQTVhIdkgveWpzUVdQb2ZSUWg2a3FueFR1d3llc2psRVh5ZXpNUDErV2ZwQ2Fcbi9rbUdmb3dvY3lJdU1OSFVTZXltTGZCWDNLSVlWV3ArL0h1a1AxSjc4MVJRTFBpdmRoOGhpUFpUNTYwZ1hoNzJcbmlTS0NMZ1RMdVV0NzJMRnMrMVhuS3VxMmdJT0Z2UDhqcGFlK0dRSURBUUFCQW9JQkFFa2MrU0pGZGFWTXJwTWtcbkNyV0xLR0k5L2U1eGNGUURDSE5CaldTWXJ4bE1ON0ZVdVdLc0oweGZXSXkrNkx2VUdRV1AySUJkQmxSdWNYajdcbjBhc0o0OUxQVEVCc2UzeTIzd2JsZEkrVjhqSlhuZDRrZ1p1ckozREpKbGlLQmVYazBaaEZweW0rdUVMd0ErZkFcbmZMb0xMSWhDVkwrczNYRzlyRnNEVG05T1RRTzJ5a1B2d0dBeDE1MW5pdEJuTEptNm1zK21lQk9QYy9mL25zSCtcbklSNlczRm00aFdqU2VLZGVXU0pHNmVQa0pxYlhMVE5ZaHhua2JnTmc0Zno0Q0NQZjM5YXFTM05id2lVdi9kUUdcbmk4Y3AvVW5zWkdGMElsbVN5aXBRaXJGazl3TGQ5aVg5dk5vclBQTW9zRDY4bS9wbEMzZVhGSVFBVGJCWEVHYWZcbmVsTVVtZVVDZ1lFQTJqME00MmlpQlEwcXN1ajRyZmRDdjhyamFJdmE1RUc2SnAyQU10WG1RUXVscnAzMWl1S3dcbmpmcE1vVUFpcDVIUzFQZFF1WENLNm03RFZTM05yMzlwQmNHcnN1bVUvblcxaDNBV1RSNEdlV0Z0Y0NqNWVrN3Fcbml0SktmcEdueWZXbHBQZWx1WGZHbVM2bnBBMzZVUmxoWCtGZmFFNnZFSFZhN28vaGN3NGJGNnNDZ1lFQS9VUEtcbkhDd0pOQlBQMDRRN3pHRjJpdmwveno5V0R3bnAzZDlRWnpwbWpDWmEzSjUydExTaHM1VVJDOFZlU0g2bVdoNzhcbmZNb0ZiOGZGaUpVU2pBMURoMFgxcGJoWExlRm5KbW9iSEFsSFp2ZE1nR0RRU2UwVmZubUM3dEp4d0VRM3RkeHVcbi9FOTVrTkZ2WFVTcTBsU0lDRzhURndyMnpIdWVKZjhzUEh2c2JVc0NnWUVBenV0M250NkVUL25OOUZoRUFONGhcbjRhdEN0c3R6dlZ3OFhZU1VHcDhJYzcvUlZhRGJRTlh5eElyL3dSd0lQNDFac3liUzJTQkY5a1VTMjE1VVdRT2FcbjFpUnM0WFByR3VFTVB1QWRwUHpFOHExWGtES3BhRGdPMVpUUm9QUUZmTTEyUXRXendnZzR1dUNyZmpicWtaNVlcbjN3blc1aFZFazN4UnZVT2FaUGFJNVlVQ2dZQVFDNU5xWlgvUHhOR04zUHJNMy8vYW5pUHl4VmgyYTNKZGxDQkxcbjZlOUZRY2pQNFZvejZKMjErdU94a3pkOThFZ3B2WHpSaXhyOUVmTDV6RGY0bDM2SHUyN3NxTmtkRndLcDlGN3pcblQ4TXVTc3lWOVl3OG9zQ1IyckRvNEh4RWFnMzlmNUdvZW9DQkpFT2g3US9GYzRXS3d6NjZYdjl6eFFFbjl4cWVcbldsdUlNUUtCZ0VGa2x0ZjA5NTdwRUM3cFBiL3Q5LzIwajdPREtTS3JTWUUzK1NHaTlYd1VlVDc0SGtVNDNFdWZcbmEzS1dsd01tSmNZdnRjNFJETnVZSjZGOS9lQXE1YzVNcWd5U0VIb01oMzg2dTNZenpaQmNJNUwwNnBNSTRrWWJcbmpoSzYzT0NybHplSUx4d2N3YzAwenRZSGJqeGsveUZPVVdRL09rbkN6bEdFMG84VE9QeXVcbi0tLS0tRU5EIFJTQSBQUklWQVRFIEtFWS0tLS0tXG4iLCJleHBpcmF0aW9uRGF0ZSI6IjIwMjYtMDEtMDFUMDA6MDA6MDBaIiwidXNlcklkIjoiMzI4MzYyNzg1MDQ0NTEwMTI2In0K"},"type":"Opaque"} + tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" tf_http_trans_id=df6f8d63-c204-73ef-3710-563a53487f25 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." Audit-Id=76b19c0d-7431-4d46-ba94-d4ac2ad18b8e X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Date="Fri, 11 Jul 2025 07:00:04 GMT" timestamp="2025-07-11T09:00:04.485+0200" +2025-07-11T09:00:04.486+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:04 [INFO] Received secret: v1.ObjectMeta{Name:"zitadel-admin-sa", GenerateName:"", Namespace:"zitadel", SelfLink:"", UID:"a0a1976c-014e-4471-9660-8fb4e595ae6e", ResourceVersion:"109672001", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 31, 34, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"kubectl-create", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 31, 34, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000fa3d10), Subresource:""}}} +2025-07-11T09:00:04.486+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file" references: [] +2025-07-11T09:00:04.487+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:04.488+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=975023 +2025-07-11T09:00:04.488+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:04.491+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=directory_permission tf_provider_addr=registry.terraform.io/hashicorp/local tf_resource_type=local_file @module=sdk.framework tf_req_id=834d255a-e022-db85-734c-cd2f058976a5 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T09:00:04.491+0200" +2025-07-11T09:00:04.491+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=filename tf_resource_type=local_file tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=834d255a-e022-db85-734c-cd2f058976a5 @module=sdk.framework timestamp="2025-07-11T09:00:04.491+0200" +2025-07-11T09:00:04.491+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/local @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=834d255a-e022-db85-734c-cd2f058976a5 tf_resource_type=local_file tf_rpc=ReadResource timestamp="2025-07-11T09:00:04.491+0200" +2025-07-11T09:00:04.491+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=834d255a-e022-db85-734c-cd2f058976a5 tf_rpc=ReadResource tf_attribute_path=content_md5 tf_resource_type=local_file timestamp="2025-07-11T09:00:04.491+0200" +2025-07-11T09:00:04.491+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: tf_attribute_path=content_sha512 tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=834d255a-e022-db85-734c-cd2f058976a5 tf_resource_type=local_file @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T09:00:04.491+0200" +2025-07-11T09:00:04.491+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=file_permission tf_provider_addr=registry.terraform.io/hashicorp/local tf_resource_type=local_file tf_rpc=ReadResource tf_req_id=834d255a-e022-db85-734c-cd2f058976a5 timestamp="2025-07-11T09:00:04.491+0200" +2025-07-11T09:00:04.491+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=content_sha1 tf_resource_type=local_file @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=834d255a-e022-db85-734c-cd2f058976a5 tf_rpc=ReadResource timestamp="2025-07-11T09:00:04.491+0200" +2025-07-11T09:00:04.491+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: tf_req_id=834d255a-e022-db85-734c-cd2f058976a5 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=local_file tf_attribute_path=content_sha256 tf_provider_addr=registry.terraform.io/hashicorp/local timestamp="2025-07-11T09:00:04.491+0200" +2025-07-11T09:00:04.491+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=content_base64sha512 tf_req_id=834d255a-e022-db85-734c-cd2f058976a5 tf_resource_type=local_file tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/local timestamp="2025-07-11T09:00:04.491+0200" +2025-07-11T09:00:04.491+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=834d255a-e022-db85-734c-cd2f058976a5 tf_attribute_path=content_base64sha256 tf_provider_addr=registry.terraform.io/hashicorp/local tf_resource_type=local_file tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T09:00:04.491+0200" +2025-07-11T09:00:04.491+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=content tf_provider_addr=registry.terraform.io/hashicorp/local tf_req_id=834d255a-e022-db85-734c-cd2f058976a5 tf_resource_type=local_file tf_rpc=ReadResource timestamp="2025-07-11T09:00:04.491+0200" +2025-07-11T09:00:04.495+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:04.496+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 id=975001 +2025-07-11T09:00:04.496+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:04.496+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:04.496+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:04.500+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T09:00:04.500+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=975589 +2025-07-11T09:00:04.501+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T09:00:04.509+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T09:00:04.509+0200" +2025-07-11T09:00:04.521+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T09:00:04.521+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin2524918992 network=unix timestamp="2025-07-11T09:00:04.521+0200" +2025-07-11T09:00:04.529+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:04.529+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:04.534+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T09:00:04.534+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=975604 +2025-07-11T09:00:04.534+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T09:00:04.535+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=insecure @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=ea8c0d60-ca4f-6ed1-6839-9d170f82e839 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T09:00:04.535+0200" +2025-07-11T09:00:04.535+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=insecure tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=ea8c0d60-ca4f-6ed1-6839-9d170f82e839 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig timestamp="2025-07-11T09:00:04.535+0200" +2025-07-11T09:00:04.535+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=token tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=ea8c0d60-ca4f-6ed1-6839-9d170f82e839 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T09:00:04.535+0200" +2025-07-11T09:00:04.535+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=ea8c0d60-ca4f-6ed1-6839-9d170f82e839 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=token tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T09:00:04.535+0200" +2025-07-11T09:00:04.535+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_mux_provider="*proto6server.Server" @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=jwt_profile_file tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=ea8c0d60-ca4f-6ed1-6839-9d170f82e839 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T09:00:04.535+0200" +2025-07-11T09:00:04.535+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=ea8c0d60-ca4f-6ed1-6839-9d170f82e839 @module=sdk.framework tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 timestamp="2025-07-11T09:00:04.535+0200" +2025-07-11T09:00:04.535+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=jwt_profile_json tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig tf_mux_provider="*proto6server.Server" tf_req_id=ea8c0d60-ca4f-6ed1-6839-9d170f82e839 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T09:00:04.535+0200" +2025-07-11T09:00:04.535+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=jwt_profile_json tf_mux_provider="*proto6server.Server" tf_req_id=ea8c0d60-ca4f-6ed1-6839-9d170f82e839 tf_rpc=ValidateProviderConfig tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T09:00:04.535+0200" +2025-07-11T09:00:04.535+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_req_id=ea8c0d60-ca4f-6ed1-6839-9d170f82e839 tf_rpc=ValidateProviderConfig @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T09:00:04.535+0200" +2025-07-11T09:00:04.535+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_attribute_path=port tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=ea8c0d60-ca4f-6ed1-6839-9d170f82e839 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T09:00:04.535+0200" +2025-07-11T09:00:04.535+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=ea8c0d60-ca4f-6ed1-6839-9d170f82e839 tf_rpc=ValidateProviderConfig @module=sdk.framework timestamp="2025-07-11T09:00:04.535+0200" +2025-07-11T09:00:04.535+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=domain tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=ea8c0d60-ca4f-6ed1-6839-9d170f82e839 tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig timestamp="2025-07-11T09:00:04.535+0200" +2025-07-11T09:00:04.542+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T09:00:04.542+0200" +2025-07-11T09:00:04.554+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T09:00:04.554+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin2452914453 network=unix timestamp="2025-07-11T09:00:04.554+0200" +2025-07-11T09:00:04.561+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:04.561+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:04.562+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Provider Configure: tf_rpc=ConfigureProvider @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:12 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=f5664c28-51b7-35bf-2ea5-2d1900929992 timestamp="2025-07-11T09:00:04.562+0200" +2025-07-11T09:00:04.562+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Provider Configure: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=f5664c28-51b7-35bf-2ea5-2d1900929992 tf_rpc=ConfigureProvider @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:20 @module=sdk.framework tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T09:00:04.562+0200" +2025-07-11T09:00:04.566+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T09:00:04.566+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=975616 +2025-07-11T09:00:04.566+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T09:00:04.566+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=domain tf_req_id=20ac0bf9-e9d0-a254-4d14-b4d979769794 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T09:00:04.566+0200" +2025-07-11T09:00:04.566+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_mux_provider="*proto6server.Server" @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=domain tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=20ac0bf9-e9d0-a254-4d14-b4d979769794 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T09:00:04.566+0200" +2025-07-11T09:00:04.566+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_req_id=20ac0bf9-e9d0-a254-4d14-b4d979769794 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T09:00:04.566+0200" +2025-07-11T09:00:04.566+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=20ac0bf9-e9d0-a254-4d14-b4d979769794 tf_rpc=ValidateProviderConfig tf_attribute_path=insecure timestamp="2025-07-11T09:00:04.566+0200" +2025-07-11T09:00:04.566+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @module=sdk.framework tf_req_id=20ac0bf9-e9d0-a254-4d14-b4d979769794 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T09:00:04.566+0200" +2025-07-11T09:00:04.566+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=20ac0bf9-e9d0-a254-4d14-b4d979769794 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=token tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T09:00:04.566+0200" +2025-07-11T09:00:04.566+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=20ac0bf9-e9d0-a254-4d14-b4d979769794 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T09:00:04.566+0200" +2025-07-11T09:00:04.566+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=20ac0bf9-e9d0-a254-4d14-b4d979769794 timestamp="2025-07-11T09:00:04.566+0200" +2025-07-11T09:00:04.566+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=jwt_profile_json tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=20ac0bf9-e9d0-a254-4d14-b4d979769794 timestamp="2025-07-11T09:00:04.566+0200" +2025-07-11T09:00:04.566+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=20ac0bf9-e9d0-a254-4d14-b4d979769794 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=jwt_profile_json tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T09:00:04.566+0200" +2025-07-11T09:00:04.566+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=port tf_req_id=20ac0bf9-e9d0-a254-4d14-b4d979769794 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T09:00:04.566+0200" +2025-07-11T09:00:04.566+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=port tf_req_id=20ac0bf9-e9d0-a254-4d14-b4d979769794 tf_rpc=ValidateProviderConfig @module=sdk.framework tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T09:00:04.566+0200" +2025-07-11T09:00:04.573+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T09:00:04.572+0200" +2025-07-11T09:00:04.585+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T09:00:04.585+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin1001978003 network=unix timestamp="2025-07-11T09:00:04.585+0200" +2025-07-11T09:00:04.593+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Provider Configure: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=1fd1cb53-5c04-9bbb-c0db-d39d238ea1a9 tf_rpc=ConfigureProvider @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:12 @module=sdk.framework timestamp="2025-07-11T09:00:04.593+0200" +2025-07-11T09:00:04.593+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Provider Configure: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=sdk.framework tf_req_id=1fd1cb53-5c04-9bbb-c0db-d39d238ea1a9 tf_rpc=ConfigureProvider @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:20 timestamp="2025-07-11T09:00:04.593+0200" +2025-07-11T09:00:04.599+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=insecure tf_req_id=be87713e-1735-e877-5c77-53b4a535a905 tf_rpc=ValidateProviderConfig @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T09:00:04.599+0200" +2025-07-11T09:00:04.599+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" tf_req_id=be87713e-1735-e877-5c77-53b4a535a905 tf_rpc=ValidateProviderConfig @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T09:00:04.599+0200" +2025-07-11T09:00:04.599+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=sdk.framework tf_attribute_path=token tf_req_id=be87713e-1735-e877-5c77-53b4a535a905 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T09:00:04.599+0200" +2025-07-11T09:00:04.599+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=token tf_req_id=be87713e-1735-e877-5c77-53b4a535a905 tf_rpc=ValidateProviderConfig @module=sdk.framework tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T09:00:04.599+0200" +2025-07-11T09:00:04.599+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_req_id=be87713e-1735-e877-5c77-53b4a535a905 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=sdk.framework tf_attribute_path=jwt_profile_file timestamp="2025-07-11T09:00:04.599+0200" +2025-07-11T09:00:04.599+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_req_id=be87713e-1735-e877-5c77-53b4a535a905 timestamp="2025-07-11T09:00:04.599+0200" +2025-07-11T09:00:04.599+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=be87713e-1735-e877-5c77-53b4a535a905 @module=sdk.framework tf_attribute_path=jwt_profile_json tf_rpc=ValidateProviderConfig timestamp="2025-07-11T09:00:04.599+0200" +2025-07-11T09:00:04.599+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=be87713e-1735-e877-5c77-53b4a535a905 tf_rpc=ValidateProviderConfig tf_attribute_path=jwt_profile_json tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T09:00:04.599+0200" +2025-07-11T09:00:04.599+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_rpc=ValidateProviderConfig @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=be87713e-1735-e877-5c77-53b4a535a905 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=port timestamp="2025-07-11T09:00:04.599+0200" +2025-07-11T09:00:04.599+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_req_id=be87713e-1735-e877-5c77-53b4a535a905 timestamp="2025-07-11T09:00:04.599+0200" +2025-07-11T09:00:04.599+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_req_id=be87713e-1735-e877-5c77-53b4a535a905 tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=domain tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T09:00:04.599+0200" +2025-07-11T09:00:04.599+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_req_id=be87713e-1735-e877-5c77-53b4a535a905 timestamp="2025-07-11T09:00:04.599+0200" +2025-07-11T09:00:04.599+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Provider Configure: @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=53aab1d8-8acc-49f8-d712-97537bc80f5a @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:12 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ConfigureProvider timestamp="2025-07-11T09:00:04.599+0200" +2025-07-11T09:00:04.599+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Provider Configure: tf_mux_provider="*proto6server.Server" @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:20 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=53aab1d8-8acc-49f8-d712-97537bc80f5a tf_rpc=ConfigureProvider timestamp="2025-07-11T09:00:04.599+0200" +2025-07-11T09:00:04.600+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default" references: [] +2025-07-11T09:00:04.600+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started get: @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/org/funcs.go:107 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=c634a1c4-ec28-9a94-974d-b7aa4bfabfd8 tf_resource_type=zitadel_org tf_rpc=ReadResource timestamp="2025-07-11T09:00:04.600+0200" +2025-07-11T09:00:06.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default" references: [] +2025-07-11T09:00:06.989+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default" references: [] +2025-07-11T09:00:06.990+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_action.groups-claim" references: [] +2025-07-11T09:00:06.990+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default" references: [] +2025-07-11T09:00:06.990+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default" references: [] +2025-07-11T09:00:06.991+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=27c660ca-bf71-d8f2-e54c-0119b15a79b5 tf_resource_type=zitadel_human_user @module=zitadel tf_rpc=ReadResource @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/human_user/funcs.go:167 timestamp="2025-07-11T09:00:06.991+0200" +2025-07-11T09:00:06.991+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_resource_type=zitadel_project tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=222331ab-d343-98fd-bc5e-78aa8f1cd04a tf_rpc=ReadResource @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project/funcs.go:95 @module=zitadel timestamp="2025-07-11T09:00:06.991+0200" +2025-07-11T09:00:06.991+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/action/funcs.go:102 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_req_id=66868242-b406-7c7e-20e6-8cfbedc5cea4 tf_resource_type=zitadel_action tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T09:00:06.991+0200" +2025-07-11T09:00:06.992+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_req_id=da888cbd-3393-28a4-d622-328bea7692b2 tf_resource_type=zitadel_project tf_rpc=ReadResource tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project/funcs.go:95 @module=zitadel timestamp="2025-07-11T09:00:06.992+0200" +2025-07-11T09:00:09.782+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default" references: [] +2025-07-11T09:00:09.783+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_resource_type=zitadel_login_policy @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/login_policy/funcs.go:286 @module=zitadel tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ReadResource tf_mux_provider=tf5to6server.v5tov6Server tf_req_id=c9ced350-fe6d-3115-1c98-a49a917c4500 timestamp="2025-07-11T09:00:09.783+0200" +2025-07-11T09:00:10.050+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info" references: [] +2025-07-11T09:00:10.050+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .phone: planned value cty.StringVal("") for a non-computed attribute + - .preferred_language: planned value cty.StringVal("und") for a non-computed attribute + - .nick_name: planned value cty.StringVal("") for a non-computed attribute + - .gender: planned value cty.StringVal("GENDER_UNSPECIFIED") for a non-computed attribute + - .is_phone_verified: planned value cty.False for a non-computed attribute +2025-07-11T09:00:10.050+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token" references: [] +2025-07-11T09:00:10.051+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default" references: [] +2025-07-11T09:00:10.051+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_req_id=8797fb28-4564-f96e-ce38-c114ba9cd2c3 @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/trigger_actions/funcs.go:97 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_resource_type=zitadel_trigger_actions tf_rpc=ReadResource timestamp="2025-07-11T09:00:10.051+0200" +2025-07-11T09:00:10.051+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/trigger_actions/funcs.go:97 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_req_id=2172608b-2590-460e-2a4e-eacbb48ed686 tf_resource_type=zitadel_trigger_actions tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T09:00:10.051+0200" +2025-07-11T09:00:10.051+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default[0]" references: [] +2025-07-11T09:00:10.052+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/org_member/funcs.go:87 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=19d9c409-18d6-0aa9-3fa2-c3e74c146846 tf_resource_type=zitadel_org_member tf_rpc=ReadResource timestamp="2025-07-11T09:00:10.051+0200" +2025-07-11T09:00:10.052+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_mux_provider=tf5to6server.v5tov6Server tf_req_id=b9a63deb-39a7-803a-f857-92306bfbacdf tf_resource_type=zitadel_project_member tf_rpc=ReadResource @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_member/funcs.go:91 tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=zitadel timestamp="2025-07-11T09:00:10.052+0200" +2025-07-11T09:00:10.378+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default[0]" references: [] +2025-07-11T09:00:10.378+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default[0]" references: [] +2025-07-11T09:00:10.378+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default" references: [] +2025-07-11T09:00:10.378+0200 [DEBUG] Resource instance state not found for node "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default", instance module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default +2025-07-11T09:00:10.379+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [] +2025-07-11T09:00:10.379+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default[0]" references: [] +2025-07-11T09:00:10.379+0200 [DEBUG] refresh: module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default: no state, so not refreshing +2025-07-11T09:00:10.379+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=3d7eb5e0-2ed6-9144-f75c-62cbd5b57f81 tf_resource_type=zitadel_project_member tf_rpc=ReadResource @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_member/funcs.go:91 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server timestamp="2025-07-11T09:00:10.379+0200" +2025-07-11T09:00:10.379+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=673f7ffe-fb9a-54cc-9f09-c9e9227c3a48 @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:96 tf_resource_type=zitadel_project_role tf_rpc=ReadResource timestamp="2025-07-11T09:00:10.379+0200" +2025-07-11T09:00:10.380+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/application_oidc/funcs.go:186 @module=zitadel tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ReadResource tf_mux_provider=tf5to6server.v5tov6Server tf_req_id=06a58466-319a-6d47-1b80-1c6f5ad8d3b7 tf_resource_type=zitadel_application_oidc timestamp="2025-07-11T09:00:10.380+0200" +2025-07-11T09:00:10.381+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_req_id=72f2753e-a377-6406-1bf3-1c7dbfcfc479 @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:96 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_resource_type=zitadel_project_role tf_rpc=ReadResource timestamp="2025-07-11T09:00:10.380+0200" +2025-07-11T09:00:10.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[0]" references: [] +2025-07-11T09:00:10.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[1]" references: [] +2025-07-11T09:00:10.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[2]" references: [] +2025-07-11T09:00:10.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[3]" references: [] +2025-07-11T09:00:10.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[4]" references: [] +2025-07-11T09:00:10.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[5]" references: [] +2025-07-11T09:00:10.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[6]" references: [] +2025-07-11T09:00:10.530+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default[7]" references: [] +2025-07-11T09:00:10.532+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=b2e44456-4dec-39e3-36f9-7446519e568a tf_resource_type=zitadel_project_role @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:96 tf_rpc=ReadResource timestamp="2025-07-11T09:00:10.532+0200" +2025-07-11T09:00:10.532+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_resource_type=zitadel_project_role tf_rpc=ReadResource tf_req_id=af3ad74d-2447-c824-0720-02d40667d6c0 @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:96 timestamp="2025-07-11T09:00:10.532+0200" +2025-07-11T09:00:10.669+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @module=zitadel tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=1911f2f2-c919-52f6-2486-7e9ddbaedf82 @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:96 tf_mux_provider=tf5to6server.v5tov6Server tf_resource_type=zitadel_project_role tf_rpc=ReadResource timestamp="2025-07-11T09:00:10.669+0200" +2025-07-11T09:00:10.669+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_rpc=ReadResource @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:96 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=603303e8-a4a1-ceb2-b3a2-4a9f93e15a4b tf_resource_type=zitadel_project_role timestamp="2025-07-11T09:00:10.669+0200" +2025-07-11T09:00:11.749+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .skip_native_app_success_page: planned value cty.False for a non-computed attribute + - .clock_skew: planned value cty.StringVal("0s") for a non-computed attribute + - .version: planned value cty.StringVal("OIDC_VERSION_1_0") for a non-computed attribute + - .access_token_role_assertion: planned value cty.False for a non-computed attribute + - .additional_origins: planned value cty.ListValEmpty(cty.String) for a non-computed attribute + - .dev_mode: planned value cty.False for a non-computed attribute +2025-07-11T09:00:11.750+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_rpc=ReadResource @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:96 tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel @module=zitadel tf_req_id=f221eeda-7c77-9c81-6ee2-3e52f4c41da7 tf_resource_type=zitadel_project_role timestamp="2025-07-11T09:00:11.750+0200" +2025-07-11T09:00:11.750+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_resource_type=zitadel_project_role @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:96 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_req_id=494f6266-d9bb-1a24-78e7-4e37e5923b7d tf_rpc=ReadResource timestamp="2025-07-11T09:00:11.750+0200" +2025-07-11T09:00:11.750+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_resource_type=zitadel_project_role @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:96 tf_mux_provider=tf5to6server.v5tov6Server tf_req_id=b2d4e40c-575e-0b42-397b-bbf84ba732de tf_rpc=ReadResource @module=zitadel tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T09:00:11.750+0200" +2025-07-11T09:00:11.750+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:96 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=dc69f984-e374-1c85-4c2d-67e56f08ea20 tf_resource_type=zitadel_project_role tf_rpc=ReadResource timestamp="2025-07-11T09:00:11.750+0200" +2025-07-11T09:00:11.752+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.external.processed_values" references: [] +2025-07-11T09:00:11.807+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=program[0] tf_provider_addr=registry.terraform.io/hashicorp/external tf_req_id=e54580f8-b87a-8b64-d6b4-d8a2df7095ed @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_data_source_type=external tf_rpc=ReadDataSource timestamp="2025-07-11T09:00:11.807+0200" +2025-07-11T09:00:11.807+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=program[1] tf_req_id=e54580f8-b87a-8b64-d6b4-d8a2df7095ed tf_data_source_type=external tf_provider_addr=registry.terraform.io/hashicorp/external tf_rpc=ReadDataSource timestamp="2025-07-11T09:00:11.807+0200" +2025-07-11T09:00:11.807+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=program[2] tf_req_id=e54580f8-b87a-8b64-d6b4-d8a2df7095ed tf_rpc=ReadDataSource @module=sdk.framework tf_data_source_type=external tf_provider_addr=registry.terraform.io/hashicorp/external timestamp="2025-07-11T09:00:11.807+0200" +2025-07-11T09:00:11.807+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.14.1/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/external tf_req_id=e54580f8-b87a-8b64-d6b4-d8a2df7095ed @module=sdk.framework tf_attribute_path=program tf_data_source_type=external tf_rpc=ReadDataSource timestamp="2025-07-11T09:00:11.807+0200" +2025-07-11T09:00:11.808+0200 [DEBUG] Resource instance state not found for node "module.argocd.helm_release.argocd", instance module.argocd.helm_release.argocd +2025-07-11T09:00:11.808+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd" references: [] +2025-07-11T09:00:11.808+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:11.809+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 id=974948 +2025-07-11T09:00:11.809+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:11.809+0200 [DEBUG] refresh: module.argocd.helm_release.argocd: no state, so not refreshing +2025-07-11T09:00:11.809+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T09:00:11.810+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0001bc9a0 Settings:0xc000571440 RegistryClient:0xc0001bad80 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_resource_type=helm_release @module=helm tf_req_id=6ee220f5-87c4-6690-2aff-9a01c8564738 tf_rpc=ValidateResourceConfig @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:00:11.810+0200" +2025-07-11T09:00:11.812+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc0001bc9a0 Settings:0xc000571440 RegistryClient:0xc0001bad80 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_req_id=1abf5413-3ac7-8dbd-b624-e92dc79569ff tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 timestamp="2025-07-11T09:00:11.811+0200" +2025-07-11T09:00:11.813+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Marking Computed attributes with null configuration values as unknown (known after apply) in the plan to prevent potential Terraform errors: tf_rpc=PlanResourceChange @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:250 tf_req_id=1abf5413-3ac7-8dbd-b624-e92dc79569ff tf_resource_type=helm_release timestamp="2025-07-11T09:00:11.813+0200" +2025-07-11T09:00:11.813+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework tf_attribute_path="AttributeName(\"id\")" tf_req_id=1abf5413-3ac7-8dbd-b624-e92dc79569ff tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 timestamp="2025-07-11T09:00:11.813+0200" +2025-07-11T09:00:11.813+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_attribute_path="AttributeName(\"status\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1abf5413-3ac7-8dbd-b624-e92dc79569ff tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=sdk.framework timestamp="2025-07-11T09:00:11.813+0200" +2025-07-11T09:00:11.813+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_attribute_path="AttributeName(\"metadata\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1abf5413-3ac7-8dbd-b624-e92dc79569ff tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_resource_type=helm_release timestamp="2025-07-11T09:00:11.813+0200" +2025-07-11T09:00:11.813+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @module=sdk.framework tf_attribute_path="AttributeName(\"manifest\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_req_id=1abf5413-3ac7-8dbd-b624-e92dc79569ff timestamp="2025-07-11T09:00:11.813+0200" +2025-07-11T09:00:11.817+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"argo-cd" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID: Keyring: Lint:false Manifest: MaxHistory:0 Metadata: Name:"argocd" Namespace:"argocd" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive:[{"name":"config.secret.argocdServerAdminPassword","type":,"value":"3w=tr!042qbxD7d?22Ayj(WFW6qRi@N)yRUJ8KQ:eEDAStFZ"}] SkipCrds:false Status: Timeout:300 Values:[""] Verify:false Version:"7.0.20" Wait:true WaitForJobs:true}: @module=helm tf_req_id=1abf5413-3ac7-8dbd-b624-e92dc79569ff tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 timestamp="2025-07-11T09:00:11.817+0200" +2025-07-11T09:00:11.817+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: : @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1abf5413-3ac7-8dbd-b624-e92dc79569ff @module=helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T09:00:11.817+0200" +2025-07-11T09:00:11.817+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Start: @module=helm tf_req_id=1abf5413-3ac7-8dbd-b624-e92dc79569ff tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 timestamp="2025-07-11T09:00:11.817+0200" +2025-07-11T09:00:11.817+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: KubernetesData=map[] tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1abf5413-3ac7-8dbd-b624-e92dc79569ff @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 timestamp="2025-07-11T09:00:11.817+0200" +2025-07-11T09:00:11.817+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_req_id=1abf5413-3ac7-8dbd-b624-e92dc79569ff tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 configPaths=[] tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:00:11.817+0200" +2025-07-11T09:00:11.817+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @module=helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1abf5413-3ac7-8dbd-b624-e92dc79569ff timestamp="2025-07-11T09:00:11.817+0200" +2025-07-11T09:00:11.817+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Initial Values: Name=argocd, Namespace=argocd, Repository=https://charts.bitnami.com/bitnami, Repository_Username=, Repository_Password=, Chart=argo-cd: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1abf5413-3ac7-8dbd-b624-e92dc79569ff tf_rpc=PlanResourceChange timestamp="2025-07-11T09:00:11.817+0200" +2025-07-11T09:00:11.817+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Metadata has changes, setting to unknown: tf_rpc=PlanResourceChange tf_req_id=1abf5413-3ac7-8dbd-b624-e92dc79569ff tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1799 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:00:11.817+0200" +2025-07-11T09:00:11.817+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc000571560 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 @module=helm tf_req_id=1abf5413-3ac7-8dbd-b624-e92dc79569ff timestamp="2025-07-11T09:00:11.817+0200" +2025-07-11T09:00:12.061+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:12.062+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=975589 +2025-07-11T09:00:12.062+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:12.507+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default[0]" references: [] +2025-07-11T09:00:12.508+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:12.509+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=975616 +2025-07-11T09:00:12.509+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:12.510+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ReadResource @module=zitadel tf_req_id=75c95297-f183-4133-f558-dafee5dbfae3 tf_resource_type=zitadel_project_role @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:96 timestamp="2025-07-11T09:00:12.510+0200" +2025-07-11T09:00:13.289+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[1]" references: [] +2025-07-11T09:00:13.289+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default[0]" references: [] +2025-07-11T09:00:13.290+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_mux_provider=tf5to6server.v5tov6Server tf_resource_type=zitadel_project_role tf_rpc=ReadResource @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:96 @module=zitadel tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=ecb6100e-5e83-feb3-3435-f6444e50310d timestamp="2025-07-11T09:00:13.290+0200" +2025-07-11T09:00:13.290+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/project_role/funcs.go:96 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=23119c9d-c464-18f6-da20-9a391a2643bb tf_rpc=ReadResource @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_resource_type=zitadel_project_role timestamp="2025-07-11T09:00:13.290+0200" +2025-07-11T09:00:14.086+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [] +2025-07-11T09:00:14.087+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_mux_provider=tf5to6server.v5tov6Server tf_req_id=7fb90955-8dfe-a7c5-d886-f496cb910b9b tf_resource_type=zitadel_user_grant @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/user_grant/funcs.go:88 @module=zitadel tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ReadResource timestamp="2025-07-11T09:00:14.087+0200" +2025-07-11T09:00:14.354+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default" references: [] +2025-07-11T09:00:14.355+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=81e92074-a824-3421-8419-a815e6acfafa tf_resource_type=zitadel_application_api tf_rpc=ReadResource @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/application_api/funcs.go:113 timestamp="2025-07-11T09:00:14.355+0200" +2025-07-11T09:00:14.518+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api" references: [] +2025-07-11T09:00:14.519+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [] +2025-07-11T09:00:14.519+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default" references: [] +2025-07-11T09:00:14.520+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_mux_provider=tf5to6server.v5tov6Server tf_req_id=7400053d-5c50-c9fc-8b64-60d2691414e0 @module=zitadel tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_resource_type=zitadel_application_oidc tf_rpc=ReadResource @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/application_oidc/funcs.go:186 timestamp="2025-07-11T09:00:14.520+0200" +2025-07-11T09:00:14.520+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:14 [INFO] Checking secret core-api +2025-07-11T09:00:14.520+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=b5877657-03db-6fe8-7a9e-9e26c30b8b20 tf_rpc=ReadResource @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/application_api/funcs.go:113 tf_resource_type=zitadel_application_api timestamp="2025-07-11T09:00:14.520+0200" +2025-07-11T09:00:14.520+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request @module=kubernetes.Kubernetes Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev tf_http_req_method=GET tf_http_req_version=HTTP/1.1 Accept="application/json, */*" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/core-api tf_http_trans_id=fa333b16-a6e4-421e-7249-d2c5acc6a4c5 timestamp="2025-07-11T09:00:14.520+0200" +2025-07-11T09:00:14.585+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_res_version=HTTP/2.0 tf_http_trans_id=fa333b16-a6e4-421e-7249-d2c5acc6a4c5 @module=kubernetes.Kubernetes Date="Fri, 11 Jul 2025 07:00:14 GMT" X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_op_type=response tf_http_res_status_code=200 Audit-Id=67b05ec4-f9da-4edf-93ea-979e12d60197 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"core-api","namespace":"365zon","uid":"828e79f3-f9b7-48be-9213-b998fda452e4","resourceVersion":"109681804","creationTimestamp":"2025-07-11T06:59:29Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:29Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjMzMjExMzA4MjYw","client_secret":"aDBUcEJBNWZXenlLTDNMWTFLazRHWmtFNGQ4RUVBeko3ekZUQUd4YnFoTmQyYTNyb2NDMWNCWmRjNmxCaWVqUQ=="},"type":"Opaque"} + @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] tf_http_res_status_reason="200 OK" Content-Length=711 Content-Type=application/json X-Content-Type-Options=nosniff new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." timestamp="2025-07-11T09:00:14.585+0200" +2025-07-11T09:00:14.585+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:14 [INFO] Reading secret core-api +2025-07-11T09:00:14.586+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_method=GET @module=kubernetes.Kubernetes Host=rancher.bridge.fourlights.dev tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/core-api Accept="application/json, */*" tf_http_req_body="" tf_http_req_version=HTTP/1.1 tf_http_trans_id=0d89c163-ec31-a27b-d6c8-33a23ed6f6c5 timestamp="2025-07-11T09:00:14.586+0200" +2025-07-11T09:00:14.632+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"core-api","namespace":"365zon","uid":"828e79f3-f9b7-48be-9213-b998fda452e4","resourceVersion":"109681804","creationTimestamp":"2025-07-11T06:59:29Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:29Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjMzMjExMzA4MjYw","client_secret":"aDBUcEJBNWZXenlLTDNMWTFLazRHWmtFNGQ4RUVBeko3ekZUQUd4YnFoTmQyYTNyb2NDMWNCWmRjNmxCaWVqUQ=="},"type":"Opaque"} + tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_res_status_code=200 @module=kubernetes.Kubernetes Content-Length=711 Content-Type=application/json X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_op_type=response tf_http_trans_id=0d89c163-ec31-a27b-d6c8-33a23ed6f6c5 Audit-Id=9d83b919-c6c6-451b-9e10-cb323d924a60 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 07:00:14 GMT" X-Api-Cattle-Auth=true new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." timestamp="2025-07-11T09:00:14.632+0200" +2025-07-11T09:00:14.632+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:14 [INFO] Received secret: v1.ObjectMeta{Name:"core-api", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"828e79f3-f9b7-48be-9213-b998fda452e4", ResourceVersion:"109681804", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0011403d8), Subresource:""}}} +2025-07-11T09:00:14.634+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute +2025-07-11T09:00:14.914+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api" references: [] +2025-07-11T09:00:14.914+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default" references: [] +2025-07-11T09:00:14.914+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [] +2025-07-11T09:00:14.916+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=40df23da-970b-5a87-3cf4-7a622e558f84 tf_resource_type=zitadel_machine_user @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/machine_user/funcs.go:150 @module=zitadel tf_rpc=ReadResource timestamp="2025-07-11T09:00:14.916+0200" +2025-07-11T09:00:14.916+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:14 [INFO] Checking secret salesforce-api +2025-07-11T09:00:14.916+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @module=zitadel tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_resource_type=zitadel_application_oidc tf_mux_provider=tf5to6server.v5tov6Server tf_req_id=d59eb5b1-b1e9-abeb-ae25-c855616c2cee tf_rpc=ReadResource @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/application_oidc/funcs.go:186 timestamp="2025-07-11T09:00:14.916+0200" +2025-07-11T09:00:14.916+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_body="" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Host=rancher.bridge.fourlights.dev tf_http_trans_id=eb9c1012-e679-628b-bc6b-d4d7f09c1acc Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET @module=kubernetes.Kubernetes Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/salesforce-api tf_http_req_version=HTTP/1.1 Accept="application/json, */*" timestamp="2025-07-11T09:00:14.916+0200" +2025-07-11T09:00:14.917+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .clock_skew: planned value cty.StringVal("0s") for a non-computed attribute + - .id_token_role_assertion: planned value cty.False for a non-computed attribute + - .version: planned value cty.StringVal("OIDC_VERSION_1_0") for a non-computed attribute + - .additional_origins: planned value cty.ListValEmpty(cty.String) for a non-computed attribute + - .dev_mode: planned value cty.False for a non-computed attribute + - .skip_native_app_success_page: planned value cty.False for a non-computed attribute + - .id_token_userinfo_assertion: planned value cty.False for a non-computed attribute +2025-07-11T09:00:14.918+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent" references: [] +2025-07-11T09:00:14.919+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:14 [INFO] Checking secret core-user-agent +2025-07-11T09:00:14.920+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_body="" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_method=GET @module=kubernetes.Kubernetes Accept-Encoding=gzip new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=5313fb17-079c-201e-8c23-97737040f062 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/core-user-agent tf_http_req_version=HTTP/1.1 Accept="application/json, */*" timestamp="2025-07-11T09:00:14.919+0200" +2025-07-11T09:00:14.962+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 Audit-Id=40ded3c4-190f-44e3-ac06-9fc6721b01b7 Content-Type=application/json X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_code=200 @module=kubernetes.Kubernetes Content-Length=717 Date="Fri, 11 Jul 2025 07:00:14 GMT" Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"salesforce-api","namespace":"365zon","uid":"55eb6452-1732-42a9-aff5-2ca53ea0e054","resourceVersion":"109681802","creationTimestamp":"2025-07-11T06:59:29Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:29Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjMzNDYyOTQxMTAz","client_secret":"QVNCcTFkZTVxMkRaZDJveEVudWRnekp5d3c2Z3JlYk1DeFNwUDM3aDhkUUN3ZG5XTjZibFl6TGx0MUVXQVVDSA=="},"type":"Opaque"} + tf_http_trans_id=eb9c1012-e679-628b-bc6b-d4d7f09c1acc timestamp="2025-07-11T09:00:14.962+0200" +2025-07-11T09:00:14.962+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:14 [INFO] Reading secret salesforce-api +2025-07-11T09:00:14.963+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept="application/json, */*" Accept-Encoding=gzip tf_http_req_body="" tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/salesforce-api tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_trans_id=7d05ba45-9fc6-7b12-8f17-8f26f2856b20 timestamp="2025-07-11T09:00:14.963+0200" +2025-07-11T09:00:14.972+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_res_status_reason="200 OK" Content-Type=application/json tf_http_res_version=HTTP/2.0 tf_http_trans_id=5313fb17-079c-201e-8c23-97737040f062 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=cf82678a-c6aa-41fe-b7d7-6915682a8a98 Date="Fri, 11 Jul 2025 07:00:14 GMT" X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"core-user-agent","namespace":"365zon","uid":"6df2c46f-030c-4a5d-8ffd-12383cfb05be","resourceVersion":"109681803","creationTimestamp":"2025-07-11T06:59:29Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:29Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjMzNTk3MTg0MjI4"},"type":"Opaque"} + tf_http_res_status_code=200 @module=kubernetes.Kubernetes Content-Length=590 timestamp="2025-07-11T09:00:14.972+0200" +2025-07-11T09:00:14.973+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:14 [INFO] Reading secret core-user-agent +2025-07-11T09:00:14.973+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_method=GET @module=kubernetes.Kubernetes Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/core-user-agent tf_http_req_version=HTTP/1.1 Accept="application/json, */*" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_body="" tf_http_trans_id=b12e4e45-97ac-8a73-b4df-6cdd624f422a timestamp="2025-07-11T09:00:14.973+0200" +2025-07-11T09:00:15.010+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Length=717 Content-Type=application/json Date="Fri, 11 Jul 2025 07:00:14 GMT" X-Api-Cattle-Auth=true tf_http_op_type=response Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"salesforce-api","namespace":"365zon","uid":"55eb6452-1732-42a9-aff5-2ca53ea0e054","resourceVersion":"109681802","creationTimestamp":"2025-07-11T06:59:29Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:29Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjMzNDYyOTQxMTAz","client_secret":"QVNCcTFkZTVxMkRaZDJveEVudWRnekp5d3c2Z3JlYk1DeFNwUDM3aDhkUUN3ZG5XTjZibFl6TGx0MUVXQVVDSA=="},"type":"Opaque"} + tf_http_res_status_reason="200 OK" tf_http_trans_id=7d05ba45-9fc6-7b12-8f17-8f26f2856b20 @module=kubernetes.Kubernetes Audit-Id=552cd1d6-d17d-4b33-9313-b99d08c23c1e X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 timestamp="2025-07-11T09:00:15.010+0200" +2025-07-11T09:00:15.010+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:15 [INFO] Received secret: v1.ObjectMeta{Name:"salesforce-api", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"55eb6452-1732-42a9-aff5-2ca53ea0e054", ResourceVersion:"109681802", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001181c20), Subresource:""}}} +2025-07-11T09:00:15.012+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T09:00:15.026+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 Audit-Id=34c26e3c-f140-4190-9110-d5ce0ac7b472 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=590 Date="Fri, 11 Jul 2025 07:00:14 GMT" X-Api-Cattle-Auth=true tf_http_op_type=response @module=kubernetes.Kubernetes Content-Type=application/json new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" X-Content-Type-Options=nosniff + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"core-user-agent","namespace":"365zon","uid":"6df2c46f-030c-4a5d-8ffd-12383cfb05be","resourceVersion":"109681803","creationTimestamp":"2025-07-11T06:59:29Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:29Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjMzNTk3MTg0MjI4"},"type":"Opaque"} + tf_http_res_version=HTTP/2.0 tf_http_trans_id=b12e4e45-97ac-8a73-b4df-6cdd624f422a @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 timestamp="2025-07-11T09:00:15.026+0200" +2025-07-11T09:00:15.026+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:15 [INFO] Received secret: v1.ObjectMeta{Name:"core-user-agent", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"6df2c46f-030c-4a5d-8ffd-12383cfb05be", ResourceVersion:"109681803", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0014ce9c0), Subresource:""}}} +2025-07-11T09:00:15.028+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .immutable: planned value cty.False for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T09:00:15.195+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account[0].zitadel_machine_user.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .description: planned value cty.StringVal("") for a non-computed attribute +2025-07-11T09:00:15.196+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [] +2025-07-11T09:00:15.196+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0]" references: [] +2025-07-11T09:00:15.197+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ReadResource tf_req_id=ae705dac-00cd-c577-7e5b-4867c615c109 tf_resource_type=zitadel_user_grant @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/user_grant/funcs.go:88 @module=zitadel timestamp="2025-07-11T09:00:15.197+0200" +2025-07-11T09:00:15.198+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:15 [INFO] Checking secret salesforce-service-account +2025-07-11T09:00:15.199+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept-Encoding=gzip tf_http_req_version=HTTP/1.1 Accept="application/json, */*" Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/salesforce-service-account @module=kubernetes.Kubernetes tf_http_req_method=GET tf_http_trans_id=4d260112-d451-173e-31ce-6b89d25920a3 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 timestamp="2025-07-11T09:00:15.198+0200" +2025-07-11T09:00:15.218+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .version: planned value cty.StringVal("OIDC_VERSION_1_0") for a non-computed attribute + - .additional_origins: planned value cty.ListValEmpty(cty.String) for a non-computed attribute + - .dev_mode: planned value cty.False for a non-computed attribute + - .skip_native_app_success_page: planned value cty.False for a non-computed attribute + - .id_token_userinfo_assertion: planned value cty.False for a non-computed attribute + - .clock_skew: planned value cty.StringVal("0s") for a non-computed attribute + - .id_token_role_assertion: planned value cty.False for a non-computed attribute +2025-07-11T09:00:15.218+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent" references: [] +2025-07-11T09:00:15.220+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:15 [INFO] Checking secret salesforce-user-agent +2025-07-11T09:00:15.220+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_trans_id=16f33fb0-d6c6-a039-9972-625292beeb8b Host=rancher.bridge.fourlights.dev tf_http_req_body="" tf_http_req_method=GET tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/salesforce-user-agent Accept-Encoding=gzip new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T09:00:15.220+0200" +2025-07-11T09:00:15.255+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @module=kubernetes.Kubernetes Audit-Id=bcf3e8da-ec7f-4732-bbf5-6b477acccdfe tf_http_op_type=response Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=1025 X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_version=HTTP/2.0 tf_http_trans_id=4d260112-d451-173e-31ce-6b89d25920a3 Date="Fri, 11 Jul 2025 07:00:15 GMT" X-Api-Cattle-Auth=true new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_code=200 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Type=application/json X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"salesforce-service-account","namespace":"365zon","uid":"685f0b64-2c18-4e3f-b67e-598004c9bc7e","resourceVersion":"109681811","creationTimestamp":"2025-07-11T06:59:30Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:30Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{},"f:scope":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"c2FsZXNmb3JjZUAzNjV6b24uMzY1em9u","client_secret":"MGJhWmpQbGdCUUxBckdqcU83WG9TemtPVUVXQzNJaTFtZlpTYTVDb0dLcVl0M3pWMVg0N1VrRWFaYTZyS2NlVg==","scope":"b3BlbmlkIHByb2ZpbGUgdXJuOnppdGFkZWw6aWFtOm9yZzpwcm9qZWN0OmlkOjMyODM2NTYyMTE2NTE2OTkxNzphdWQgbWFuYWdlOnByb2ZpbGVzIG1hbmFnZTpjb250YWN0cyBtYW5hZ2U6YWRkcmVzc2VzIG1hbmFnZTplbnF1aXJpZXMgbWFuYWdlOmZsb3dzdGF0ZXMgbWFuYWdlOmZsb3dldmVudHMgbWFuYWdlOmZpbGVzIG1hbmFnZTpicmFuZHM="},"type":"Opaque"} + tf_http_res_status_reason="200 OK" timestamp="2025-07-11T09:00:15.255+0200" +2025-07-11T09:00:15.255+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Audit-Id=30eebd2d-77c8-42ab-8d05-9c896f8c24c5 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Content-Type-Options=nosniff tf_http_res_version=HTTP/2.0 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Content-Length=596 Content-Type=application/json X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response Date="Fri, 11 Jul 2025 07:00:15 GMT" X-Api-Cattle-Auth=true + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"salesforce-user-agent","namespace":"365zon","uid":"1b2acfa3-53b2-4b9a-9c37-e1dfbb36443c","resourceVersion":"109681805","creationTimestamp":"2025-07-11T06:59:29Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:29Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjMzODk5MTQyMzk3"},"type":"Opaque"} + tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" tf_http_trans_id=16f33fb0-d6c6-a039-9972-625292beeb8b timestamp="2025-07-11T09:00:15.255+0200" +2025-07-11T09:00:15.255+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:15 [INFO] Reading secret salesforce-user-agent +2025-07-11T09:00:15.255+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:15 [INFO] Reading secret salesforce-service-account +2025-07-11T09:00:15.255+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept="application/json, */*" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_method=GET @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/salesforce-service-account tf_http_trans_id=abf032b7-3b02-152b-d5de-a11f4b70e525 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" timestamp="2025-07-11T09:00:15.255+0200" +2025-07-11T09:00:15.255+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_body="" tf_http_req_method=GET @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/salesforce-user-agent tf_http_trans_id=824e03dd-e67a-9972-eecc-cfd3e747c7c6 User-Agent="HashiCorp/1.0 Terraform/1.12.1" @module=kubernetes.Kubernetes Accept="application/json, */*" tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T09:00:15.255+0200" +2025-07-11T09:00:15.311+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=596 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_status_reason="200 OK" Content-Type=application/json new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_res_status_code=200 tf_http_trans_id=824e03dd-e67a-9972-eecc-cfd3e747c7c6 Audit-Id=656837f8-76f1-44a2-bf2a-446b870c3bed X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"salesforce-user-agent","namespace":"365zon","uid":"1b2acfa3-53b2-4b9a-9c37-e1dfbb36443c","resourceVersion":"109681805","creationTimestamp":"2025-07-11T06:59:29Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:29Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjMzODk5MTQyMzk3"},"type":"Opaque"} + Date="Fri, 11 Jul 2025 07:00:15 GMT" tf_http_res_version=HTTP/2.0 timestamp="2025-07-11T09:00:15.311+0200" +2025-07-11T09:00:15.311+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Content-Type-Options=nosniff new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes Audit-Id=5be03d2a-e6c7-43ec-a9a2-86e98a67c487 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"salesforce-service-account","namespace":"365zon","uid":"685f0b64-2c18-4e3f-b67e-598004c9bc7e","resourceVersion":"109681811","creationTimestamp":"2025-07-11T06:59:30Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:30Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{},"f:scope":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"c2FsZXNmb3JjZUAzNjV6b24uMzY1em9u","client_secret":"MGJhWmpQbGdCUUxBckdqcU83WG9TemtPVUVXQzNJaTFtZlpTYTVDb0dLcVl0M3pWMVg0N1VrRWFaYTZyS2NlVg==","scope":"b3BlbmlkIHByb2ZpbGUgdXJuOnppdGFkZWw6aWFtOm9yZzpwcm9qZWN0OmlkOjMyODM2NTYyMTE2NTE2OTkxNzphdWQgbWFuYWdlOnByb2ZpbGVzIG1hbmFnZTpjb250YWN0cyBtYW5hZ2U6YWRkcmVzc2VzIG1hbmFnZTplbnF1aXJpZXMgbWFuYWdlOmZsb3dzdGF0ZXMgbWFuYWdlOmZsb3dldmVudHMgbWFuYWdlOmZpbGVzIG1hbmFnZTpicmFuZHM="},"type":"Opaque"} + tf_http_res_status_code=200 tf_http_trans_id=abf032b7-3b02-152b-d5de-a11f4b70e525 Content-Length=1025 Content-Type=application/json Date="Fri, 11 Jul 2025 07:00:15 GMT" X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response tf_http_res_status_reason="200 OK" timestamp="2025-07-11T09:00:15.311+0200" +2025-07-11T09:00:15.311+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:15 [INFO] Received secret: v1.ObjectMeta{Name:"salesforce-service-account", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"685f0b64-2c18-4e3f-b67e-598004c9bc7e", ResourceVersion:"109681811", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 30, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 30, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000f4fc38), Subresource:""}}} +2025-07-11T09:00:15.311+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:15 [INFO] Received secret: v1.ObjectMeta{Name:"salesforce-user-agent", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"1b2acfa3-53b2-4b9a-9c37-e1dfbb36443c", ResourceVersion:"109681805", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 29, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0012c0420), Subresource:""}}} +2025-07-11T09:00:15.314+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T09:00:15.314+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T09:00:15.315+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default" references: [] +2025-07-11T09:00:15.316+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/application_api/funcs.go:113 @module=zitadel tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=640c09e3-a4f3-b54e-eaa8-855b5696caf2 tf_resource_type=zitadel_application_api tf_mux_provider=tf5to6server.v5tov6Server tf_rpc=ReadResource timestamp="2025-07-11T09:00:15.316+0200" +2025-07-11T09:00:15.520+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api" references: [] +2025-07-11T09:00:15.520+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default" references: [] +2025-07-11T09:00:15.520+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [] +2025-07-11T09:00:15.521+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_mux_provider=tf5to6server.v5tov6Server tf_req_id=34d79a92-bc0a-89c8-02dc-ca0d42d6f81a tf_resource_type=zitadel_machine_user tf_rpc=ReadResource @module=zitadel tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/machine_user/funcs.go:150 timestamp="2025-07-11T09:00:15.521+0200" +2025-07-11T09:00:15.522+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_resource_type=zitadel_application_oidc tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=77f489fd-7b61-f7fe-5df9-27e9f31b3f3c tf_rpc=ReadResource @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/application_oidc/funcs.go:186 @module=zitadel timestamp="2025-07-11T09:00:15.522+0200" +2025-07-11T09:00:15.522+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:15 [INFO] Checking secret external-api +2025-07-11T09:00:15.522+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept="application/json, */*" Accept-Encoding=gzip tf_http_req_method=GET tf_http_req_version=HTTP/1.1 @module=kubernetes.Kubernetes new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=37b14d22-1e6a-3783-4bed-9733113b91fd Host=rancher.bridge.fourlights.dev tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/external-api @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_body="" timestamp="2025-07-11T09:00:15.522+0200" +2025-07-11T09:00:15.581+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Content-Type=application/json Date="Fri, 11 Jul 2025 07:00:15 GMT" X-Content-Type-Options=nosniff new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"external-api","namespace":"365zon","uid":"81b29ad6-88e5-4c8b-ac8d-f7d7cb386406","resourceVersion":"109681815","creationTimestamp":"2025-07-11T06:59:30Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:30Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjM1NzQ0NjQyNDc5","client_secret":"aUdVUGx6cHBUVU1OOGRIQjdwWXl6bGlzRGl3TDBtU3FSMHoxeHVNZ1N1eHZrMWdKRjc4ZzQyTkZrZUhHY0VNMw=="},"type":"Opaque"} + tf_http_trans_id=37b14d22-1e6a-3783-4bed-9733113b91fd @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes X-Api-Cattle-Auth=true Audit-Id=13b76fc6-f213-46ce-affd-ff113f2f81ca Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=715 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_code=200 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_op_type=response tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 timestamp="2025-07-11T09:00:15.581+0200" +2025-07-11T09:00:15.581+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:15 [INFO] Reading secret external-api +2025-07-11T09:00:15.581+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Accept="application/json, */*" Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_trans_id=28f9488c-9b91-3f30-ae6c-3edd29aa9332 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/external-api @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Host=rancher.bridge.fourlights.dev tf_http_op_type=request tf_http_req_body="" tf_http_req_version=HTTP/1.1 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." @module=kubernetes.Kubernetes timestamp="2025-07-11T09:00:15.581+0200" +2025-07-11T09:00:15.613+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .clock_skew: planned value cty.StringVal("0s") for a non-computed attribute + - .id_token_role_assertion: planned value cty.False for a non-computed attribute + - .version: planned value cty.StringVal("OIDC_VERSION_1_0") for a non-computed attribute + - .additional_origins: planned value cty.ListValEmpty(cty.String) for a non-computed attribute + - .dev_mode: planned value cty.False for a non-computed attribute + - .skip_native_app_success_page: planned value cty.False for a non-computed attribute + - .id_token_userinfo_assertion: planned value cty.False for a non-computed attribute +2025-07-11T09:00:15.614+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent" references: [] +2025-07-11T09:00:15.616+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:15 [INFO] Checking secret external-user-agent +2025-07-11T09:00:15.616+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Host=rancher.bridge.fourlights.dev tf_http_req_body="" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/external-user-agent @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET tf_http_req_version=HTTP/1.1 Accept="application/json, */*" tf_http_op_type=request tf_http_trans_id=7879fdbe-eac8-6730-d64e-984a32442537 Accept-Encoding=gzip timestamp="2025-07-11T09:00:15.616+0200" +2025-07-11T09:00:15.632+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_res_version=HTTP/2.0 X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"external-api","namespace":"365zon","uid":"81b29ad6-88e5-4c8b-ac8d-f7d7cb386406","resourceVersion":"109681815","creationTimestamp":"2025-07-11T06:59:30Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:30Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjM1NzQ0NjQyNDc5","client_secret":"aUdVUGx6cHBUVU1OOGRIQjdwWXl6bGlzRGl3TDBtU3FSMHoxeHVNZ1N1eHZrMWdKRjc4ZzQyTkZrZUhHY0VNMw=="},"type":"Opaque"} + tf_http_res_status_reason="200 OK" tf_http_trans_id=28f9488c-9b91-3f30-ae6c-3edd29aa9332 @module=kubernetes.Kubernetes Audit-Id=66f10f18-54fe-458e-9ad7-948d22835b32 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=715 Date="Fri, 11 Jul 2025 07:00:15 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Type=application/json X-Api-Cattle-Auth=true tf_http_op_type=response tf_http_res_status_code=200 timestamp="2025-07-11T09:00:15.632+0200" +2025-07-11T09:00:15.632+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:15 [INFO] Received secret: v1.ObjectMeta{Name:"external-api", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"81b29ad6-88e5-4c8b-ac8d-f7d7cb386406", ResourceVersion:"109681815", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 30, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 30, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001606978), Subresource:""}}} +2025-07-11T09:00:15.635+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .immutable: planned value cty.False for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T09:00:15.672+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Date="Fri, 11 Jul 2025 07:00:15 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_trans_id=7879fdbe-eac8-6730-d64e-984a32442537 Content-Length=594 X-Api-Cattle-Auth=true + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"external-user-agent","namespace":"365zon","uid":"83c8d7e4-a843-4ea0-b848-e5f943346b43","resourceVersion":"109681816","creationTimestamp":"2025-07-11T06:59:31Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:31Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjM2MDk2OTg5NDEy"},"type":"Opaque"} + tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Audit-Id=3d38137a-99c4-485f-9ccb-f7d9f1bc4bdd Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json X-Content-Type-Options=nosniff tf_http_res_status_reason="200 OK" timestamp="2025-07-11T09:00:15.672+0200" +2025-07-11T09:00:15.672+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:15 [INFO] Reading secret external-user-agent +2025-07-11T09:00:15.672+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_op_type=request tf_http_req_method=GET @module=kubernetes.Kubernetes Accept="application/json, */*" Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/external-user-agent tf_http_req_version=HTTP/1.1 tf_http_trans_id=250fc311-b2a5-222b-ae3f-9d9aabe383d9 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" Host=rancher.bridge.fourlights.dev timestamp="2025-07-11T09:00:15.672+0200" +2025-07-11T09:00:15.691+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account[0].zitadel_machine_user.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .description: planned value cty.StringVal("") for a non-computed attribute +2025-07-11T09:00:15.692+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [] +2025-07-11T09:00:15.692+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0]" references: [] +2025-07-11T09:00:15.693+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_resource_type=zitadel_user_grant @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/user_grant/funcs.go:88 @module=zitadel tf_req_id=fc3f6fa4-d40f-7f88-4300-5cdd2126c3e1 tf_rpc=ReadResource timestamp="2025-07-11T09:00:15.693+0200" +2025-07-11T09:00:15.694+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:15 [INFO] Checking secret external-service-account +2025-07-11T09:00:15.694+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request tf_http_req_version=HTTP/1.1 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/external-service-account tf_http_trans_id=d66020b7-a913-cd66-f2d4-3277a25ecc44 Accept="application/json, */*" Accept-Encoding=gzip tf_http_req_method=GET @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Host=rancher.bridge.fourlights.dev tf_http_req_body="" @module=kubernetes.Kubernetes timestamp="2025-07-11T09:00:15.694+0200" +2025-07-11T09:00:15.714+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @module=kubernetes.Kubernetes Date="Fri, 11 Jul 2025 07:00:15 GMT" X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_reason="200 OK" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_res_version=HTTP/2.0 Audit-Id=7a3d5453-65e7-4394-8e7d-45bf4d0bb092 Content-Type=application/json X-Api-Cattle-Auth=true tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"external-user-agent","namespace":"365zon","uid":"83c8d7e4-a843-4ea0-b848-e5f943346b43","resourceVersion":"109681816","creationTimestamp":"2025-07-11T06:59:31Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:31Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjM2MDk2OTg5NDEy"},"type":"Opaque"} + tf_http_res_status_code=200 tf_http_trans_id=250fc311-b2a5-222b-ae3f-9d9aabe383d9 Content-Length=594 timestamp="2025-07-11T09:00:15.714+0200" +2025-07-11T09:00:15.715+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:15 [INFO] Received secret: v1.ObjectMeta{Name:"external-user-agent", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"83c8d7e4-a843-4ea0-b848-e5f943346b43", ResourceVersion:"109681816", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 31, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 31, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001530ab0), Subresource:""}}} +2025-07-11T09:00:15.717+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .immutable: planned value cty.False for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T09:00:15.738+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_trans_id=d66020b7-a913-cd66-f2d4-3277a25ecc44 tf_http_op_type=response @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"external-service-account","namespace":"365zon","uid":"b6cb324f-07e6-424d-9b50-c07cfa8be699","resourceVersion":"109681819","creationTimestamp":"2025-07-11T06:59:31Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:31Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{},"f:scope":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"ZXh0ZXJuYWxAMzY1em9uLjM2NXpvbg==","client_secret":"VGR3ZmhnNUVBMUFtQzJhUmpnbWdYRnJiYlYxSDZPaXlnWVVXU3ZyMDhKS3pxNGRHRTdWNlhNTWdKaVFlWlFycg==","scope":"b3BlbmlkIHByb2ZpbGUgdXJuOnppdGFkZWw6aWFtOm9yZzpwcm9qZWN0OmlkOjMyODM2NTYyMTE2NTE2OTkxNzphdWQgbWFuYWdlOnByb2ZpbGVzIG1hbmFnZTpjb250YWN0cyBtYW5hZ2U6YWRkcmVzc2VzIG1hbmFnZTplbnF1aXJpZXMgbWFuYWdlOmZsb3dzdGF0ZXMgbWFuYWdlOmZsb3dldmVudHMgbWFuYWdlOmZpbGVzIG1hbmFnZTpicmFuZHM="},"type":"Opaque"} + tf_http_res_status_code=200 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=1023 Content-Type=application/json X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes Audit-Id=95cae7e1-59af-456b-ac8a-62be7a69c78f Date="Fri, 11 Jul 2025 07:00:15 GMT" timestamp="2025-07-11T09:00:15.738+0200" +2025-07-11T09:00:15.738+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:15 [INFO] Reading secret external-service-account +2025-07-11T09:00:15.738+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_version=HTTP/1.1 Host=rancher.bridge.fourlights.dev tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/external-service-account @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_body="" User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_trans_id=5b50d917-6aaa-bb2e-7b4f-ca8d984d127a @module=kubernetes.Kubernetes tf_http_req_method=GET timestamp="2025-07-11T09:00:15.738+0200" +2025-07-11T09:00:15.795+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Audit-Id=50a73a43-bb0e-451d-8c5f-f08a3ac1f3e1 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 07:00:15 GMT" X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_code=200 Content-Length=1023 X-Api-Cattle-Auth=true new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"external-service-account","namespace":"365zon","uid":"b6cb324f-07e6-424d-9b50-c07cfa8be699","resourceVersion":"109681819","creationTimestamp":"2025-07-11T06:59:31Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:31Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{},"f:scope":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"ZXh0ZXJuYWxAMzY1em9uLjM2NXpvbg==","client_secret":"VGR3ZmhnNUVBMUFtQzJhUmpnbWdYRnJiYlYxSDZPaXlnWVVXU3ZyMDhKS3pxNGRHRTdWNlhNTWdKaVFlWlFycg==","scope":"b3BlbmlkIHByb2ZpbGUgdXJuOnppdGFkZWw6aWFtOm9yZzpwcm9qZWN0OmlkOjMyODM2NTYyMTE2NTE2OTkxNzphdWQgbWFuYWdlOnByb2ZpbGVzIG1hbmFnZTpjb250YWN0cyBtYW5hZ2U6YWRkcmVzc2VzIG1hbmFnZTplbnF1aXJpZXMgbWFuYWdlOmZsb3dzdGF0ZXMgbWFuYWdlOmZsb3dldmVudHMgbWFuYWdlOmZpbGVzIG1hbmFnZTpicmFuZHM="},"type":"Opaque"} + tf_http_res_status_reason="200 OK" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Content-Type=application/json tf_http_op_type=response tf_http_res_version=HTTP/2.0 X-Content-Type-Options=nosniff tf_http_trans_id=5b50d917-6aaa-bb2e-7b4f-ca8d984d127a timestamp="2025-07-11T09:00:15.795+0200" +2025-07-11T09:00:15.795+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:15 [INFO] Received secret: v1.ObjectMeta{Name:"external-service-account", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"b6cb324f-07e6-424d-9b50-c07cfa8be699", ResourceVersion:"109681819", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 31, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 31, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc0017ac078), Subresource:""}}} +2025-07-11T09:00:15.798+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T09:00:15.800+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default" references: [] +2025-07-11T09:00:15.801+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_req_id=ade6571e-9a9c-2204-b5dd-f1c16479d2c1 tf_rpc=ReadResource @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/application_api/funcs.go:113 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_resource_type=zitadel_application_api timestamp="2025-07-11T09:00:15.801+0200" +2025-07-11T09:00:15.914+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api" references: [] +2025-07-11T09:00:15.914+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default" references: [] +2025-07-11T09:00:15.915+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default" references: [] +2025-07-11T09:00:15.916+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/machine_user/funcs.go:150 @module=zitadel tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=cd34b514-4e55-009b-7649-635e55c6a89a tf_rpc=ReadResource tf_mux_provider=tf5to6server.v5tov6Server tf_resource_type=zitadel_machine_user timestamp="2025-07-11T09:00:15.916+0200" +2025-07-11T09:00:15.916+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:15 [INFO] Checking secret internal-api +2025-07-11T09:00:15.916+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/application_oidc/funcs.go:186 tf_resource_type=zitadel_application_oidc @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=7b998e02-67e9-4fe0-7dfc-f7296382b4a6 tf_rpc=ReadResource timestamp="2025-07-11T09:00:15.916+0200" +2025-07-11T09:00:15.916+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_op_type=request tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/internal-api @module=kubernetes.Kubernetes User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_body="" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_version=HTTP/1.1 tf_http_trans_id=742b44c6-ab4e-d2ee-2f20-283499a72b62 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." Accept="application/json, */*" Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev timestamp="2025-07-11T09:00:15.916+0200" +2025-07-11T09:00:15.967+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @module=kubernetes.Kubernetes Audit-Id=b1958909-6749-4107-8f89-42acae24bafa Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 07:00:15 GMT" X-Api-Cattle-Auth=true tf_http_res_version=HTTP/2.0 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"internal-api","namespace":"365zon","uid":"460d5d3b-5d3d-4e91-afb1-c57088a96c97","resourceVersion":"109681823","creationTimestamp":"2025-07-11T06:59:31Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:31Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjM3NTU2NTgxODA3","client_secret":"TkNwSjB5YmlHUnBUN1JtR1NsWUN5U0RpTld6RWcyQ2xoZXB2azFVSWNkWllOcEVGMlhIczhuTWk1Znh5RFF3cQ=="},"type":"Opaque"} + tf_http_res_status_reason="200 OK" Content-Length=715 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_op_type=response tf_http_res_status_code=200 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Type=application/json X-Content-Type-Options=nosniff tf_http_trans_id=742b44c6-ab4e-d2ee-2f20-283499a72b62 timestamp="2025-07-11T09:00:15.967+0200" +2025-07-11T09:00:15.967+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:15 [INFO] Reading secret internal-api +2025-07-11T09:00:15.967+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_req_body="" tf_http_req_method=GET @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" Host=rancher.bridge.fourlights.dev tf_http_req_version=HTTP/1.1 tf_http_trans_id=069133f2-56f6-ccdf-aa3c-f029b40f1a70 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/internal-api tf_http_op_type=request @module=kubernetes.Kubernetes Accept-Encoding=gzip User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." timestamp="2025-07-11T09:00:15.967+0200" +2025-07-11T09:00:15.983+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account[0].zitadel_machine_user.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .description: planned value cty.StringVal("") for a non-computed attribute +2025-07-11T09:00:15.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0]" references: [] +2025-07-11T09:00:15.984+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant[0].zitadel_user_grant.default" references: [] +2025-07-11T09:00:15.986+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started read: @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/user_grant/funcs.go:88 @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server tf_req_id=ef3d741c-b0ed-153e-aaa4-bdaad7299e54 tf_resource_type=zitadel_user_grant tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T09:00:15.985+0200" +2025-07-11T09:00:15.986+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:15 [INFO] Checking secret internal-service-account +2025-07-11T09:00:15.986+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_body="" @module=kubernetes.Kubernetes Accept-Encoding=gzip new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/internal-service-account tf_http_trans_id=d9ec9d1f-d881-0063-029c-94a5f4616dc5 timestamp="2025-07-11T09:00:15.986+0200" +2025-07-11T09:00:16.022+0200 [WARN] Provider "registry.terraform.io/zitadel/zitadel" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .dev_mode: planned value cty.False for a non-computed attribute + - .skip_native_app_success_page: planned value cty.False for a non-computed attribute + - .id_token_userinfo_assertion: planned value cty.False for a non-computed attribute + - .clock_skew: planned value cty.StringVal("0s") for a non-computed attribute + - .id_token_role_assertion: planned value cty.False for a non-computed attribute + - .version: planned value cty.StringVal("OIDC_VERSION_1_0") for a non-computed attribute + - .additional_origins: planned value cty.ListValEmpty(cty.String) for a non-computed attribute +2025-07-11T09:00:16.023+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent" references: [] +2025-07-11T09:00:16.024+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:16 [INFO] Checking secret internal-user-agent +2025-07-11T09:00:16.025+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @module=kubernetes.Kubernetes Accept="application/json, */*" Host=rancher.bridge.fourlights.dev Accept-Encoding=gzip new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_trans_id=53648980-b136-272b-0536-f2a2e99def57 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_body="" tf_http_req_method=GET User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/internal-user-agent tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T09:00:16.025+0200" +2025-07-11T09:00:16.038+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Date="Fri, 11 Jul 2025 07:00:16 GMT" X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"internal-api","namespace":"365zon","uid":"460d5d3b-5d3d-4e91-afb1-c57088a96c97","resourceVersion":"109681823","creationTimestamp":"2025-07-11T06:59:31Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:31Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjM3NTU2NTgxODA3","client_secret":"TkNwSjB5YmlHUnBUN1JtR1NsWUN5U0RpTld6RWcyQ2xoZXB2azFVSWNkWllOcEVGMlhIczhuTWk1Znh5RFF3cQ=="},"type":"Opaque"} + tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 Audit-Id=85f747f2-30a1-4d38-a49b-f9ebf7d6c16a new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_code=200 tf_http_trans_id=069133f2-56f6-ccdf-aa3c-f029b40f1a70 Content-Length=715 Content-Type=application/json X-Content-Type-Options=nosniff @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 timestamp="2025-07-11T09:00:16.038+0200" +2025-07-11T09:00:16.038+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:16 [INFO] Received secret: v1.ObjectMeta{Name:"internal-api", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"460d5d3b-5d3d-4e91-afb1-c57088a96c97", ResourceVersion:"109681823", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 31, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 31, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc001691a58), Subresource:""}}} +2025-07-11T09:00:16.040+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T09:00:16.042+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: X-Content-Type-Options=nosniff @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Date="Fri, 11 Jul 2025 07:00:16 GMT" Audit-Id=197d8d29-2426-49e1-95b5-c2c05173553f new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"internal-service-account","namespace":"365zon","uid":"9458c3ff-be27-4743-912c-1d8afc0e95a7","resourceVersion":"109681831","creationTimestamp":"2025-07-11T06:59:32Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:32Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{},"f:scope":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"aW50ZXJuYWxAMzY1em9uLjM2NXpvbg==","client_secret":"Nm1IbWdQc1ludTVVVVhaTjNtSzNId25HeGhTakpkeVhObHBuNnc4MkJwbkxubUF3Z3ZMYzhocURaaXlXQ0drNw==","scope":"b3BlbmlkIHByb2ZpbGUgdXJuOnppdGFkZWw6aWFtOm9yZzpwcm9qZWN0OmlkOjMyODM2NTYyMTE2NTE2OTkxNzphdWQgbWFuYWdlOnByb2ZpbGVzIG1hbmFnZTpjb250YWN0cyBtYW5hZ2U6YWRkcmVzc2VzIG1hbmFnZTplbnF1aXJpZXMgbWFuYWdlOmZsb3dzdGF0ZXMgbWFuYWdlOmZsb3dldmVudHMgbWFuYWdlOmZpbGVzIG1hbmFnZTpicmFuZHM="},"type":"Opaque"} + X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 Content-Length=1023 tf_http_res_status_code=200 tf_http_res_version=HTTP/2.0 Content-Type=application/json tf_http_res_status_reason="200 OK" tf_http_trans_id=d9ec9d1f-d881-0063-029c-94a5f4616dc5 timestamp="2025-07-11T09:00:16.042+0200" +2025-07-11T09:00:16.042+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:16 [INFO] Reading secret internal-service-account +2025-07-11T09:00:16.042+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" Accept="application/json, */*" Accept-Encoding=gzip tf_http_req_body="" tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/internal-service-account tf_http_trans_id=aaf64730-b86d-d4dc-8e6f-c37f3c7a83e0 @module=kubernetes.Kubernetes tf_http_req_version=HTTP/1.1 Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=request timestamp="2025-07-11T09:00:16.042+0200" +2025-07-11T09:00:16.093+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." Audit-Id=d5238071-e912-4d44-898f-375b874f7ead Content-Length=594 Date="Fri, 11 Jul 2025 07:00:16 GMT" X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"internal-user-agent","namespace":"365zon","uid":"9bfefd1b-80d9-407f-a249-deda3d72207a","resourceVersion":"109681826","creationTimestamp":"2025-07-11T06:59:32Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:32Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjM3OTQyNTE2OTg5"},"type":"Opaque"} + tf_http_res_version=HTTP/2.0 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response tf_http_res_status_code=200 tf_http_res_status_reason="200 OK" tf_http_trans_id=53648980-b136-272b-0536-f2a2e99def57 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Type=application/json timestamp="2025-07-11T09:00:16.093+0200" +2025-07-11T09:00:16.093+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:16 [INFO] Reading secret internal-user-agent +2025-07-11T09:00:16.093+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_op_type=request tf_http_req_body="" tf_http_req_method=GET @module=kubernetes.Kubernetes Accept-Encoding=gzip new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/365zon/secrets/internal-user-agent tf_http_req_version=HTTP/1.1 tf_http_trans_id=d9585a2c-2ed4-4fe0-b281-d68b164e7a2a Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" timestamp="2025-07-11T09:00:16.093+0200" +2025-07-11T09:00:16.101+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:16.102+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=975604 +2025-07-11T09:00:16.102+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:16.108+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Content-Length=1023 Content-Type=application/json X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_op_type=response @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Api-Cattle-Auth=true + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"internal-service-account","namespace":"365zon","uid":"9458c3ff-be27-4743-912c-1d8afc0e95a7","resourceVersion":"109681831","creationTimestamp":"2025-07-11T06:59:32Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:32Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{},"f:client_secret":{},"f:scope":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"aW50ZXJuYWxAMzY1em9uLjM2NXpvbg==","client_secret":"Nm1IbWdQc1ludTVVVVhaTjNtSzNId25HeGhTakpkeVhObHBuNnc4MkJwbkxubUF3Z3ZMYzhocURaaXlXQ0drNw==","scope":"b3BlbmlkIHByb2ZpbGUgdXJuOnppdGFkZWw6aWFtOm9yZzpwcm9qZWN0OmlkOjMyODM2NTYyMTE2NTE2OTkxNzphdWQgbWFuYWdlOnByb2ZpbGVzIG1hbmFnZTpjb250YWN0cyBtYW5hZ2U6YWRkcmVzc2VzIG1hbmFnZTplbnF1aXJpZXMgbWFuYWdlOmZsb3dzdGF0ZXMgbWFuYWdlOmZsb3dldmVudHMgbWFuYWdlOmZpbGVzIG1hbmFnZTpicmFuZHM="},"type":"Opaque"} + tf_http_res_status_code=200 @module=kubernetes.Kubernetes X-Content-Type-Options=nosniff new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 tf_http_trans_id=aaf64730-b86d-d4dc-8e6f-c37f3c7a83e0 Audit-Id=7324f5d4-64f0-405b-81e9-5c006e990f6c Date="Fri, 11 Jul 2025 07:00:16 GMT" timestamp="2025-07-11T09:00:16.108+0200" +2025-07-11T09:00:16.108+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:16 [INFO] Received secret: v1.ObjectMeta{Name:"internal-service-account", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"9458c3ff-be27-4743-912c-1d8afc0e95a7", ResourceVersion:"109681831", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 32, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 32, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000e88fa8), Subresource:""}}} +2025-07-11T09:00:16.110+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account[0], but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute +2025-07-11T09:00:16.137+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: @module=kubernetes.Kubernetes X-Content-Type-Options=nosniff X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 Content-Type=application/json X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 Content-Length=594 Date="Fri, 11 Jul 2025 07:00:16 GMT" X-Api-Cattle-Auth=true + tf_http_res_body= + | {"kind":"Secret","apiVersion":"v1","metadata":{"name":"internal-user-agent","namespace":"365zon","uid":"9bfefd1b-80d9-407f-a249-deda3d72207a","resourceVersion":"109681826","creationTimestamp":"2025-07-11T06:59:32Z","managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:59:32Z","fieldsType":"FieldsV1","fieldsV1":{"f:data":{".":{},"f:audience":{},"f:authority":{},"f:client_id":{}},"f:type":{}}}]},"data":{"audience":"MzI4MzY1NjIxMTY1MTY5OTE3","authority":"aHR0cHM6Ly96aXRhZGVsLjM2NXpvbg==","client_id":"MzI4MzY1NjM3OTQyNTE2OTg5"},"type":"Opaque"} + tf_http_res_status_code=200 tf_http_trans_id=d9585a2c-2ed4-4fe0-b281-d68b164e7a2a Audit-Id=4b74eede-bde8-4b2d-98df-c56a91c2d43c Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 timestamp="2025-07-11T09:00:16.137+0200" +2025-07-11T09:00:16.138+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:16 [INFO] Received secret: v1.ObjectMeta{Name:"internal-user-agent", GenerateName:"", Namespace:"365zon", SelfLink:"", UID:"9bfefd1b-80d9-407f-a249-deda3d72207a", ResourceVersion:"109681826", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 59, 32, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 59, 32, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000e89d58), Subresource:""}}} +2025-07-11T09:00:16.140+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .immutable: planned value cty.False for a non-computed attribute + - .wait_for_service_account_token: planned value cty.True for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute +2025-07-11T09:00:16.140+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:16.142+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=975091 +2025-07-11T09:00:16.142+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:19.324+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Got chart: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @module=helm tf_req_id=1abf5413-3ac7-8dbd-b624-e92dc79569ff tf_resource_type=helm_release timestamp="2025-07-11T09:00:19.323+0200" +2025-07-11T09:00:19.324+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1abf5413-3ac7-8dbd-b624-e92dc79569ff tf_resource_type=helm_release timestamp="2025-07-11T09:00:19.323+0200" +2025-07-11T09:00:19.324+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Release validated: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 tf_req_id=1abf5413-3ac7-8dbd-b624-e92dc79569ff tf_resource_type=helm_release timestamp="2025-07-11T09:00:19.323+0200" +2025-07-11T09:00:19.324+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Done: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=1abf5413-3ac7-8dbd-b624-e92dc79569ff tf_resource_type=helm_release @module=helm tf_rpc=PlanResourceChange timestamp="2025-07-11T09:00:19.323+0200" +2025-07-11T09:00:19.325+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:19.325+0200 [DEBUG] Resource instance state not found for node "module.monitoring.helm_release.kube_prometheus_stack", instance module.monitoring.helm_release.kube_prometheus_stack +2025-07-11T09:00:19.325+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack" references: [] +2025-07-11T09:00:19.329+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=975056 +2025-07-11T09:00:19.329+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:19.329+0200 [DEBUG] refresh: module.monitoring.helm_release.kube_prometheus_stack: no state, so not refreshing +2025-07-11T09:00:19.330+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T09:00:19.331+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000868460 Settings:0xc0008867e0 RegistryClient:0xc000073800 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_req_id=8a27f61d-065f-bd9a-3583-6e662119a2fd tf_rpc=ValidateResourceConfig @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T09:00:19.331+0200" +2025-07-11T09:00:19.333+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000868460 Settings:0xc0008867e0 RegistryClient:0xc000073800 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_req_id=9d616e74-eedc-c9b0-f3e8-71f51987eb7a tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange timestamp="2025-07-11T09:00:19.333+0200" +2025-07-11T09:00:19.334+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Marking Computed attributes with null configuration values as unknown (known after apply) in the plan to prevent potential Terraform errors: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=9d616e74-eedc-c9b0-f3e8-71f51987eb7a tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:250 @module=sdk.framework timestamp="2025-07-11T09:00:19.334+0200" +2025-07-11T09:00:19.335+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_attribute_path="AttributeName(\"metadata\")" tf_req_id=9d616e74-eedc-c9b0-f3e8-71f51987eb7a tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange timestamp="2025-07-11T09:00:19.335+0200" +2025-07-11T09:00:19.335+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_req_id=9d616e74-eedc-c9b0-f3e8-71f51987eb7a tf_attribute_path="AttributeName(\"manifest\")" tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:00:19.335+0200" +2025-07-11T09:00:19.335+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework tf_attribute_path="AttributeName(\"status\")" tf_req_id=9d616e74-eedc-c9b0-f3e8-71f51987eb7a tf_rpc=PlanResourceChange timestamp="2025-07-11T09:00:19.335+0200" +2025-07-11T09:00:19.335+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange tf_attribute_path="AttributeName(\"id\")" tf_req_id=9d616e74-eedc-c9b0-f3e8-71f51987eb7a tf_resource_type=helm_release timestamp="2025-07-11T09:00:19.335+0200" +2025-07-11T09:00:19.337+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"kube-prometheus-stack" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID: Keyring: Lint:false Manifest: MaxHistory:0 Metadata: Name:"monitoring" Namespace:"monitoring" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://prometheus-community.github.io/helm-charts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status: Timeout:300 Values:["additionalPrometheusRulesMap:\n custom-app-rules:\n groups:\n - name: aspnetcore\n interval: 30s\n rules:\n - alert: HighRequestLatency\n expr: histogram_quantile(0.95, http_request_duration_seconds_bucket) > 0.5\n for: 5m\n labels:\n severity: warning\n annotations:\n summary: \"High request latency on {{ $labels.instance }}\"\n description: \"95th percentile latency is above 500ms (current value: {{ $value }}s)\"\n - alert: HighErrorRate\n expr: 'rate(http_requests_total{status=~\"5..\"}[5m]) > 0.05'\n for: 5m\n labels:\n severity: critical\n annotations:\n summary: \"High error rate on {{ $labels.instance }}\"\n description: \"Error rate is above 5% (current value: {{ $value }})\"\n \nprometheus:\n prometheusSpec:\n retention: 24h\n retentionSize: 10GB\n\n resources:\n requests:\n memory: 200Mi\n cpu: 100m\n limits:\n memory: 500Mi\n cpu: 500m\n\n # Remote write to VictoriaMetrics\n remoteWrite:\n - url: https://metrics.binarysunset.dev/api/v1/write\n basicAuth:\n username:\n name: prometheus-remote-write-auth\n key: username\n password:\n name: prometheus-remote-write-auth\n key: password\n writeRelabelConfigs:\n - sourceLabels: [\"__name__\"]\n regex: \"(up|kube_.*|container_.*|node_.*|http_.*|process_.*)\"\n action: keep\n\n # Remote read from VictoriaMetrics for old data\n remoteRead:\n - url: https://metrics.binarysunset.dev/api/v1/read\n basicAuth:\n username:\n name: prometheus-remote-write-auth\n key: username\n password:\n name: prometheus-remote-write-auth\n key: password\n readRecent: false # Only read data older than local retention\n\nalertmanager:\n enabled: true\n alertmanagerSpec:\n replicas: 1\n resources:\n requests:\n memory: 50Mi\n cpu: 10m\n limits:\n memory: 150Mi\n cpu: 100m\n retention: 24h\n\ngrafana:\n resources:\n requests:\n memory: 100Mi\n cpu: 50m\n limits:\n memory: 300Mi\n cpu: 200m\n persistence:\n enabled: true\n size: 1Gi\n adminUser: admin\n adminPassword: acf0vJ0XUVECnChUTU1u6WCBUeXXJVKB2qwpsWQH\n\nkubeStateMetrics:\n resources:\n requests:\n memory: 50Mi\n cpu: 10m\n limits:\n memory: 150Mi\n cpu: 100m\n\nnodeExporter:\n resources:\n requests:\n memory: 30Mi\n cpu: 10m\n limits:\n memory: 100Mi\n cpu: 100m\n\nprometheusOperator:\n resources:\n requests:\n memory: 100Mi\n cpu: 50m\n limits:\n memory: 300Mi\n cpu: 200m\n\ndefaultRules:\n create: true\n rules:\n alertmanager: true\n etcd: false\n general: true\n k8s: true\n kubernetesApps: true\n kubernetesResources: true\n kubernetesStorage: true\n kubernetesSystem: true\n node: true\n prometheus: true"] Verify:false Version:"75.9.0" Wait:true WaitForJobs:false}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9d616e74-eedc-c9b0-f3e8-71f51987eb7a tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 @module=helm timestamp="2025-07-11T09:00:19.337+0200" +2025-07-11T09:00:19.337+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: : tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9d616e74-eedc-c9b0-f3e8-71f51987eb7a tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 @module=helm timestamp="2025-07-11T09:00:19.337+0200" +2025-07-11T09:00:19.337+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Start: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9d616e74-eedc-c9b0-f3e8-71f51987eb7a tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 @module=helm timestamp="2025-07-11T09:00:19.337+0200" +2025-07-11T09:00:19.337+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 KubernetesData=map[] @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9d616e74-eedc-c9b0-f3e8-71f51987eb7a tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T09:00:19.337+0200" +2025-07-11T09:00:19.337+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange configPaths=[] tf_req_id=9d616e74-eedc-c9b0-f3e8-71f51987eb7a timestamp="2025-07-11T09:00:19.337+0200" +2025-07-11T09:00:19.337+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange tf_req_id=9d616e74-eedc-c9b0-f3e8-71f51987eb7a tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 timestamp="2025-07-11T09:00:19.337+0200" +2025-07-11T09:00:19.337+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Initial Values: Name=monitoring, Namespace=monitoring, Repository=https://prometheus-community.github.io/helm-charts, Repository_Username=, Repository_Password=, Chart=kube-prometheus-stack: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9d616e74-eedc-c9b0-f3e8-71f51987eb7a tf_rpc=PlanResourceChange tf_resource_type=helm_release timestamp="2025-07-11T09:00:19.337+0200" +2025-07-11T09:00:19.337+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Metadata has changes, setting to unknown: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1799 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9d616e74-eedc-c9b0-f3e8-71f51987eb7a tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T09:00:19.337+0200" +2025-07-11T09:00:19.338+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc000886900 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9d616e74-eedc-c9b0-f3e8-71f51987eb7a tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T09:00:19.337+0200" +2025-07-11T09:00:21.048+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Got chart: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9d616e74-eedc-c9b0-f3e8-71f51987eb7a tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 tf_rpc=PlanResourceChange timestamp="2025-07-11T09:00:21.048+0200" +2025-07-11T09:00:21.048+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: tf_req_id=9d616e74-eedc-c9b0-f3e8-71f51987eb7a tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T09:00:21.048+0200" +2025-07-11T09:00:21.048+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Release validated: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9d616e74-eedc-c9b0-f3e8-71f51987eb7a tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T09:00:21.048+0200" +2025-07-11T09:00:21.048+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Done: tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 @module=helm tf_req_id=9d616e74-eedc-c9b0-f3e8-71f51987eb7a tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:00:21.048+0200" +2025-07-11T09:00:21.049+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:21.053+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=975108 +2025-07-11T09:00:21.053+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:21.053+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:21.054+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 id=974966 +2025-07-11T09:00:21.054+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:21.065+0200 [DEBUG] building apply graph to check for errors +2025-07-11T09:00:21.071+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default", instance module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default +2025-07-11T09:00:21.071+0200 [DEBUG] Resource state not found for node "module.argocd.helm_release.argocd", instance module.argocd.helm_release.argocd +2025-07-11T09:00:21.071+0200 [DEBUG] Resource state not found for node "module.monitoring.helm_release.kube_prometheus_stack", instance module.monitoring.helm_release.kube_prometheus_stack +2025-07-11T09:00:21.076+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/zitadel/zitadel"], implied first by module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand) +2025-07-11T09:00:21.076+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/null"], implied first by module.tenant-365zon.module.minio.null_resource.health_check (expand) +2025-07-11T09:00:21.076+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/random"], implied first by module.monitoring.random_password.grafana_admin_password (expand) +2025-07-11T09:00:21.076+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/local"], implied first by module.zitadel.local_file.zitadel_jwt_profile_file (expand) +2025-07-11T09:00:21.076+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/external"], implied first by module.argocd.data.external.processed_values (expand) +2025-07-11T09:00:21.077+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_secret.zitadel (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.077+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.077+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_namespace.monitoring (expand)" (*terraform.nodeExpandApplyableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.077+0200 [DEBUG] ProviderTransformer: "module.argocd.helm_release.argocd" (*terraform.NodeApplyableResourceInstance) needs module.argocd.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:21.077+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T09:00:21.077+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_namespace.redis (expand)" (*terraform.nodeExpandApplyableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.077+0200 [DEBUG] ProviderTransformer: "module.zitadel.helm_release.zitadel (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:21.077+0200 [DEBUG] ProviderTransformer: "data.minio_s3_object.k8s_yaml (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/aminueza/minio"] +2025-07-11T09:00:21.077+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.077+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.077+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.077+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T09:00:21.077+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_replica_set_key (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:21.077+0200 [DEBUG] ProviderTransformer: "module.argocd.random_password.admin_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:21.077+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.077+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_namespace.postgresql (expand)" (*terraform.nodeExpandApplyableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.monitoring.helm_release.kube_prometheus_stack" (*terraform.NodeApplyableResourceInstance) needs module.monitoring.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.redis.random_password.redis (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_secret.mongodb_auth (expand)" (*terraform.nodeExpandApplyableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.kubernetes_job.create-tenant (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-db.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.argocd.data.kubernetes_secret.bridge-tls (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.postgresql.helm_release.postgresql (expand)" (*terraform.nodeExpandApplyableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.random_password.tenant (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.argocd.helm_release.argocd (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)" (*terraform.nodeExpandApplyableResource) needs module.cluster-init.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.zitadel.random_password.zitadel_masterkey (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.monitoring.helm_release.kube_prometheus_stack (expand)" (*terraform.nodeExpandApplyableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.argocd.data.external.processed_values (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/external"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.mongodb.helm_release.mongodb (expand)" (*terraform.nodeExpandApplyableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_user_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_namespace.argocd (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.random_password.password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_secret.argocd-tls (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_action.groups-claim (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_root_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_namespace.tenant (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/local"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand)" (*terraform.nodeExpandApplyableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_secret_key (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.minio.helm_release.minio (expand)" (*terraform.nodeExpandApplyableResource) needs module.minio.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_access_key (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.helm_release.rabbitmq (expand)" (*terraform.nodeExpandApplyableResource) needs module.rabbitmq.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.redis.helm_release.redis (expand)" (*terraform.nodeExpandApplyableResource) needs module.redis.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_secret.redis (expand)" (*terraform.nodeExpandApplyableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_namespace.zitadel (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_root_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_namespace.mongodb (expand)" (*terraform.nodeExpandApplyableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn (expand)" (*terraform.nodeExpandApplyableResource) needs module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.null_resource.health_check (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/null"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.078+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_secret.postgresql_auth (expand)" (*terraform.nodeExpandApplyableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.079+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.079+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.storage (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.079+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T09:00:21.079+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.079+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.079+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.079+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T09:00:21.079+0200 [DEBUG] ProviderTransformer: "module.monitoring.random_password.grafana_admin_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:21.079+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.079+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.079+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.079+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.079+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.079+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_namespace.monitoring" (*terraform.NodeApplyableResourceInstance) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.080+0200 [DEBUG] pruning unused module.cluster-init.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:21.080+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.080+0200 [DEBUG] pruning unused module.tenant-365zon.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:21.080+0200 [DEBUG] pruning unused module.zitadel-db.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:21.080+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/vault"] +2025-07-11T09:00:21.080+0200 [DEBUG] pruning unused module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.080+0200 [DEBUG] pruning unused module.argocd.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T09:00:21.080+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.080+0200 [DEBUG] pruning unused module.postgresql.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T09:00:21.080+0200 [DEBUG] pruning unused provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:21.080+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:21.080+0200 [DEBUG] pruning unused module.minio.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.080+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:21.080+0200 [DEBUG] pruning unused module.mongodb.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T09:00:21.080+0200 [DEBUG] pruning unused module.rabbitmq.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.zitadel (close)" references: [] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.random_password.tenant (expand)" references: [] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.wait_on (expand)" references: [] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.service_name (expand)" references: [] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_api_uri (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (expand)" references: [] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.enabled (expand)" references: [] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)" references: [] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_id (expand)" references: [module.zitadel-argocd.output.client_id (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "output.minio-secret-key (expand)" references: [module.tenant-365zon.output.minio_secret_key (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.argocd (close)" references: [] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_auth (expand)" references: [module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.access_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)" references: [module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_config (expand)" references: [module.postgresql.var.k8s_config_yaml (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.tls (expand)" references: [] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (expand)" references: [] +2025-07-11T09:00:21.092+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_uri (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.random_password.password (expand)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.email (expand)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "local.node_count (expand)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.external.processed_values (expand)" references: [module.argocd.local.service_uri (expand) module.argocd.var.server_dns (expand) module.argocd.local.grpc_service_uri (expand) module.argocd.var.redis_db_start_index (expand) module.argocd.var.redis_password (expand) module.argocd.var.oauth_uri (expand) module.argocd.var.oauth_issuer (expand) module.argocd.var.oauth_client_id (expand) module.argocd.var.oauth_client_secret (expand) module.argocd.var.oauth_redirect_uri (expand) module.argocd.var.tls (expand) module.argocd.var.ingressClass (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_url (expand)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_config (expand)" references: [module.zitadel-db.var.k8s_config_yaml (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_config (expand)" references: [module.tenant-365zon.var.k8s_config_yaml (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (close)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.cluster-init.module.longhorn.local.k8s_host (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_secret.redis (expand)" references: [module.redis.random_password.redis (expand) module.redis.kubernetes_namespace.redis (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_access_key (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (expand)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (expand)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (close)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.email (expand) module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.owners (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.namespace (expand)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_server (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.connection_string (expand)" references: [module.mongodb.random_password.mongodb_root_password (expand) module.mongodb.var.replicas (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.wait_on (expand)" references: [module.zitadel-db.output.installed (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/external\"]" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd (expand)" references: [module.argocd.var.wait_on (expand) module.argocd.kubernetes_secret.argocd-tls (expand) module.argocd.kubernetes_namespace.argocd (expand) module.argocd.random_password.admin_password (expand) module.argocd.data.external.processed_values (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.secret_key (expand)" references: [module.tenant-365zon.var.minio_secret_key (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_config (expand)" references: [module.argocd.var.k8s_config_yaml (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.redis_db_next_start_index (expand)" references: [module.argocd.var.redis_db_start_index (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.installed (expand)" references: [module.zitadel-db.kubernetes_job.create-tenant (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)" references: [module.zitadel-argocd.module.zitadel_project.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project.var.name (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.connection_string (expand)" references: [module.rabbitmq.random_password.password (expand) module.rabbitmq.var.namespace (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.redis.output.installed (expand)" references: [module.redis.helm_release.redis (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (close)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.logoutSuffix (expand)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.database (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_auth (expand)" references: [module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.enabled (expand)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.minio (expand)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (close)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.name (expand)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.provider[\"registry.terraform.io/aminueza/minio\"]" references: [module.tenant-365zon.module.minio.var.secret_key (expand) module.tenant-365zon.module.minio.var.region (expand) module.tenant-365zon.module.minio.var.server (expand) module.tenant-365zon.module.minio.var.access_key (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.org_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T09:00:21.093+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_admin_uri (expand)" references: [module.minio.local.admin_service_uri (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.installed (expand)" references: [module.rabbitmq.helm_release.rabbitmq (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.minio (close)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand) module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand) module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_host (expand)" references: [module.redis.local.k8s_config (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.job_name (expand)" references: [module.zitadel-db.var.enabled (expand) module.zitadel-db.kubernetes_job.create-tenant (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.redis (close)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (close)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "local.k8s_host (expand)" references: [local.k8s_config (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "local.k8s_config_yaml (expand)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (expand)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.redis.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.prometheus_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (close)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_secret.argocd-tls (expand)" references: [module.argocd.data.kubernetes_secret.bridge-tls (expand) module.argocd.data.kubernetes_secret.bridge-tls (expand) module.argocd.kubernetes_namespace.argocd (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.name (expand)" references: [module.zitadel-argocd.var.name (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_password (expand)" references: [module.zitadel-db.output.password (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "local.bridge_dns (expand)" references: [local.tld (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_password (expand)" references: [module.redis.output.password (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.service_uri (expand)" references: [module.rabbitmq.var.service_name (expand) module.rabbitmq.var.server_dns (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.postgresql (expand)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_auth (expand)" references: [module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.admin_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.installed (expand)" references: [module.mongodb.helm_release.mongodb (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (expand)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.username (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (expand)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin_server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.minio.var.ingressClass (expand)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_namespace.zitadel (expand)" references: [module.zitadel.var.enabled (expand) module.zitadel.var.namespace (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.minio.var.mode (expand)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.uri (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.root_password (expand)" references: [module.postgresql.random_password.postgresql_root_password (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.minio.var.namespace (expand)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring (expand)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.replicas (expand)" references: [local.node_count (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.namespace (expand)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.output.installed (expand)" references: [module.cluster-init.module.longhorn.helm_release.longhorn (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (expand)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_database (expand)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (expand)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand)" references: [module.monitoring.var.remote_write_username (expand) module.monitoring.var.remote_write_password (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database (expand)" references: [] +2025-07-11T09:00:21.094+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd" references: [module.argocd.var.wait_on (expand) module.argocd.kubernetes_secret.argocd-tls (expand) module.argocd.random_password.admin_password (expand) module.argocd.data.external.processed_values (expand) module.argocd.kubernetes_namespace.argocd (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.application_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (close)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (close)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.service_uri (expand)" references: [module.monitoring.var.service_name (expand) module.monitoring.var.server_dns (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.region (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.ingressClass (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.service_uri (expand)" references: [module.zitadel.var.service_name (expand) module.zitadel.var.server_dns (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.alertmanager_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.tenant-365zon.var.jwt_profile_file (expand) module.tenant-365zon.var.domain (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.null_resource.health_check (expand)" references: [module.tenant-365zon.module.minio.var.wait_on (expand) module.tenant-365zon.module.minio.var.server (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.argocd_service_domain (expand)" references: [local.cluster_dns (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.name (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (close)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_namespace.postgresql (expand)" references: [module.postgresql.var.enabled (expand) module.postgresql.var.namespace (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (close)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.monitoring.random_password.grafana_admin_password (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.minio.var.replicas (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_password (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_action.groups-claim (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack" references: [module.monitoring.var.wait_on (expand) module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.var.remote_write_url (expand) module.monitoring.var.remote_read_url (expand) module.monitoring.random_password.grafana_admin_password (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.service_name (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_secret_key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.minio.var.storageSize (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)" references: [module.tenant-365zon.module.minio.null_resource.health_check (expand) module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_secret_key (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "var.secret_key" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T09:00:21.095+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (close)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.wait_on (expand)" references: [module.zitadel-argocd.output.installed (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.minio.output.access_key (expand)" references: [module.minio.random_password.minio_access_key (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.rabbitmq.local.k8s_host (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.argocd (expand)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (close)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (close)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (close)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_namespace.redis (expand)" references: [module.redis.var.namespace (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.minio.local.admin_service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.admin_server_dns (expand) module.minio.var.admin_server_dns (expand) module.minio.var.server_dns (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "local.tld (expand)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_config (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.minio.local.service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.server_dns (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.jwt_profile_file (expand)" references: [module.zitadel.local_file.zitadel_jwt_profile_file (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_username (expand)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_auth (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.server (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.minio.output.secret_key (expand)" references: [module.minio.random_password.minio_secret_key (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_access_key (expand)" references: [module.minio.random_password.minio_access_key (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.minio.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.minio.local.k8s_host (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (close)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_root_password (expand)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.tld (expand)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.redis.output.password (expand)" references: [module.redis.random_password.redis (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "output.argocd-root-password (expand)" references: [module.argocd.output.admin_password (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)" references: [module.tenant-365zon.local.name (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.tenant-365zon.local.k8s_host (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (expand)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.minio.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (close)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)" references: [module.tenant-365zon.var.org_id (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_config (expand)" references: [module.mongodb.var.k8s_config_yaml (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_auth (expand)" references: [module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "output.rabbitmq-connection-string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)" references: [module.tenant-365zon.module.minio.null_resource.health_check (expand) module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_username (expand)" references: [] +2025-07-11T09:00:21.096+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_host (expand)" references: [module.monitoring.local.k8s_config (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_host (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.databases (expand)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.service_name (expand)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.name (expand)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_bucket (expand)" references: [module.tenant-365zon.module.minio.output.bucket (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "output.monitoring (expand)" references: [module.monitoring.output.access_instructions (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (expand)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (expand)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel.random_password.zitadel_masterkey (expand)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack (expand)" references: [module.monitoring.var.wait_on (expand) module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.var.remote_write_url (expand) module.monitoring.var.remote_read_url (expand) module.monitoring.random_password.grafana_admin_password (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_read_url (expand)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.local.argocd_uri (expand)" references: [module.zitadel-argocd.var.argocd_service_domain (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_host (expand)" references: [module.argocd.local.k8s_config (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "var.vault_token" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (expand)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_issuer (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.wait_on (expand)" references: [module.argocd.output.installed (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_secret_key (expand)" references: [module.minio.random_password.minio_secret_key (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_access_key (expand)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.mongodb.helm_release.mongodb (expand)" references: [module.mongodb.var.wait_on (expand) module.mongodb.kubernetes_secret.mongodb_auth (expand) module.mongodb.var.usernames (expand) module.mongodb.var.databases (expand) module.mongodb.var.replicas (expand) module.mongodb.kubernetes_namespace.mongodb (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.namespace (expand)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.redis.var.namespace (expand)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "local.k8s_config (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel.helm_release.zitadel (expand)" references: [module.zitadel.var.wait_on (expand) module.zitadel.kubernetes_secret.zitadel (expand) module.zitadel.var.enabled (expand) module.zitadel.local.service_uri (expand) module.zitadel.var.database (expand) module.zitadel.var.database_username (expand) module.zitadel.var.database_password (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.database_root_username (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.display_on_homepage (expand) module.zitadel.var.ingressClass (expand) module.zitadel.kubernetes_namespace.zitadel (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.postgresql.helm_release.postgresql (expand)" references: [module.postgresql.var.wait_on (expand) module.postgresql.kubernetes_secret.postgresql_auth (expand) module.postgresql.var.enabled (expand) module.postgresql.kubernetes_namespace.postgresql (expand) module.postgresql.var.username (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (close)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.mongodb (expand)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "local.cluster_shortname (expand)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_host (expand)" references: [module.postgresql.local.k8s_config (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_config (expand)" references: [module.redis.var.k8s_config_yaml (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (expand)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.minio.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (close)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.host (expand)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.access_key (expand)" references: [module.tenant-365zon.var.minio_access_key (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.idp_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)" references: [module.zitadel-bootstrap.var.domain (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "local.cluster_dns (expand)" references: [local.cluster_shortname (expand) local.tld (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_host (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_secret.postgresql_auth (expand)" references: [module.postgresql.var.wait_on (expand) module.postgresql.var.enabled (expand) module.postgresql.random_password.postgresql_user_password (expand) module.postgresql.random_password.postgresql_root_password (expand) module.postgresql.kubernetes_namespace.postgresql (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_username (expand)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_secret (expand)" references: [module.zitadel-argocd.output.client_secret (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_auth (expand)" references: [module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "output.mongodb-connection-string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (close)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.name (expand)" references: [] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_access_key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T09:00:21.097+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "var.endpoints" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.tls (expand)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_host (expand)" references: [module.minio.local.k8s_config (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.installed (expand)" references: [module.postgresql.helm_release.postgresql (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "output.minio-root-access-key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.monitoring (expand)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_host (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "var.bucket" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.password (expand)" references: [module.postgresql.random_password.postgresql_user_password (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "var.minio_server" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_api_uri (expand)" references: [module.minio.output.minio_api_uri (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.display_on_homepage (expand)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_config (expand)" references: [module.minio.var.k8s_config_yaml (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/null\"]" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings (expand)" references: [module.tenant-365zon.var.mongodb_connection_string (expand) module.tenant-365zon.var.rabbitmq_connection_string (expand) module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_config (expand)" references: [module.monitoring.var.k8s_config_yaml (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "var.vault_addr" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.server_dns (expand)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.replicas (expand)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.grpc_service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.minio.var.tls (expand)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_config (expand)" references: [module.rabbitmq.var.k8s_config_yaml (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_auth (expand)" references: [module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_host (expand)" references: [module.zitadel.local.k8s_config (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.installed (expand)" references: [module.zitadel.helm_release.zitadel (expand) module.zitadel.local_file.zitadel_jwt_profile_file (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.output.installed (expand)" references: [module.cluster-init.module.longhorn.output.installed (expand) module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.wait_on (expand)" references: [module.cluster-init.var.wait_on (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.grafana_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.bucket (expand)" references: [module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (close)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.helm_release.rabbitmq (expand)" references: [module.rabbitmq.random_password.password (expand) module.rabbitmq.var.wait_on (expand) module.rabbitmq.random_password.password (expand) module.rabbitmq.var.namespace (expand) module.rabbitmq.local.service_uri (expand) module.rabbitmq.var.admin (expand) module.rabbitmq.var.tls (expand) module.rabbitmq.var.ingressClass (expand) module.rabbitmq.var.replicas (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_root_password (expand)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_auth (expand)" references: [module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (close)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (expand)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.wait_on (expand)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.mongodb (close)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_user_password (expand)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_namespace.mongodb (expand)" references: [module.mongodb.var.namespace (expand)] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.wait_on (expand)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.redis.var.wait_on (expand)" references: [] +2025-07-11T09:00:21.098+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.server (expand)" references: [module.tenant-365zon.var.minio_server (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-bootstrap.var.domain (expand) module.zitadel-bootstrap.var.jwt_profile_file (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.redis (expand)" references: [] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_auth (expand)" references: [module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_host (expand)" references: [module.zitadel-db.local.k8s_config (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_secret_key (expand)" references: [module.tenant-365zon.module.minio.output.secret_key (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.wait_on (expand)" references: [module.minio.output.installed (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.namespace (expand)" references: [] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "output.minio-root-secret-key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_host (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "data.minio_s3_object.k8s_yaml (expand)" references: [var.bucket] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.redis.random_password.redis (expand)" references: [] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_namespace.tenant (expand)" references: [module.tenant-365zon.var.wait_on (expand) module.tenant-365zon.local.name (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.minio.helm_release.minio (expand)" references: [module.minio.random_password.minio_access_key (expand) module.minio.random_password.minio_secret_key (expand) module.minio.var.namespace (expand) module.minio.local.service_uri (expand) module.minio.local.admin_service_uri (expand) module.minio.var.admin (expand) module.minio.var.mode (expand) module.minio.var.tls (expand) module.minio.var.ingressClass (expand) module.minio.var.displayOnHomepage (expand) module.minio.var.mode (expand) module.minio.var.replicas (expand) module.minio.var.replicas (expand) module.minio.var.storageSize (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.minio.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close)" references: [] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand)" references: [] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.wait_on (expand)" references: [module.postgresql.output.installed (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.secret_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (expand)" references: [] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.rabbitmq_connection_string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.password (expand)" references: [module.zitadel-db.random_password.tenant (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (expand)" references: [] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)" references: [] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.ingressClass (expand)" references: [] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_auth (expand)" references: [module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.admin_password (expand)" references: [module.argocd.random_password.admin_password (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.minio.output.installed (expand)" references: [module.minio.helm_release.minio (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand)" references: [] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.mongodb_connection_string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_secret.mongodb_auth (expand)" references: [module.mongodb.var.wait_on (expand) module.mongodb.random_password.mongodb_root_password (expand) module.mongodb.random_password.mongodb_replica_set_key (expand) module.mongodb.kubernetes_namespace.mongodb (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_host (expand)" references: [module.cluster-init.local.k8s_config (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "output.minio-access-key (expand)" references: [module.tenant-365zon.output.minio_access_key (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (expand)" references: [] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_auth (expand)" references: [module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T09:00:21.099+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (close)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin (expand)" references: [module.zitadel.helm_release.zitadel (expand) module.zitadel.var.namespace (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.usernames (expand)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.namespace (expand)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.namespace (expand)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.access_instructions (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.random_password.grafana_admin_password (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-argocd.var.domain (expand) module.zitadel-argocd.var.jwt_profile_file (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.monitoring (close)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_secret.zitadel (expand)" references: [module.zitadel.var.enabled (expand) module.zitadel.random_password.zitadel_masterkey (expand) module.zitadel.kubernetes_namespace.zitadel (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.admin (expand)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_host (expand)" references: [module.mongodb.local.k8s_config (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (close)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.enabled (expand)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_host (expand)" references: [module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file (expand)" references: [module.zitadel.data.kubernetes_secret.zitadel_admin (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.username (expand)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_namespace.argocd (expand)" references: [module.argocd.var.namespace (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand)" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "var.access_key" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.enabled (expand)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_auth (expand)" references: [module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (close)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)" references: [module.tenant-365zon.var.user_id (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.ingressClass (expand)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.minio.var.displayOnHomepage (expand)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.storage (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand) module.tenant-365zon.module.minio.output.secret_key (expand) module.tenant-365zon.var.minio_api_uri (expand) module.tenant-365zon.module.minio.output.bucket (expand) module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.kubernetes_job.create-tenant (expand)" references: [module.zitadel-db.var.wait_on (expand) module.zitadel-db.var.enabled (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.namespace (expand) module.zitadel-db.var.host (expand) module.zitadel-db.var.root_username (expand) module.zitadel-db.var.root_password (expand) module.zitadel-db.var.root_database (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.name (expand) module.zitadel-db.random_password.tenant (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.namespace (expand)" references: [] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_host (expand)" references: [module.rabbitmq.local.k8s_config (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.redis.helm_release.redis (expand)" references: [module.redis.var.wait_on (expand) module.redis.var.architecture (expand) module.redis.var.architecture (validation) module.redis.kubernetes_namespace.redis (expand)] +2025-07-11T09:00:21.100+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn (expand)" references: [module.cluster-init.module.longhorn.var.wait_on (expand) module.cluster-init.module.longhorn.var.namespace (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)" references: [module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_config (expand)" references: [module.zitadel.var.k8s_config_yaml (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_replica_set_key (expand)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_db_start_index (expand)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.minio.var.service_name (expand)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (validation)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_username (expand)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin (expand)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.scopes (expand)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/local\"]" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (expand)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.service_name (expand)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.postgresql (close)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.ingressClass (expand)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.user_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_config (expand)" references: [module.zitadel-bootstrap.var.k8s_config_yaml (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.argocd.random_password.admin_password (expand)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_server (expand)" references: [module.minio.output.minio_server (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_config (expand)" references: [module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_auth (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.namespace (expand)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "local.k8s_auth (expand)" references: [local.k8s_config (expand) local.k8s_config (expand) local.k8s_config (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.installed (expand)" references: [module.argocd.helm_release.argocd (expand) module.argocd.helm_release.argocd module.argocd.helm_release.argocd] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_host (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (close)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.zitadel (expand)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.kubernetes_secret.bridge-tls (expand)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_redirect_uri (expand)" references: [module.zitadel.output.server (expand) module.zitadel-argocd.output.logoutSuffix (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/aminueza/minio\"]" references: [var.minio_server var.access_key var.secret_key var.region] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "var.region" references: [] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:21.101+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T09:00:21.201+0200 [DEBUG] command: asking for input: "\nDo you want to perform these actions?" +2025-07-11T09:00:32.872+0200 [INFO] backend/local: apply calling Apply +2025-07-11T09:00:32.872+0200 [DEBUG] Building and walking apply graph for NormalMode plan +2025-07-11T09:00:32.878+0200 [DEBUG] Resource state not found for node "module.argocd.helm_release.argocd", instance module.argocd.helm_release.argocd +2025-07-11T09:00:32.878+0200 [DEBUG] Resource state not found for node "module.monitoring.helm_release.kube_prometheus_stack", instance module.monitoring.helm_release.kube_prometheus_stack +2025-07-11T09:00:32.878+0200 [DEBUG] Resource state not found for node "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default", instance module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default +2025-07-11T09:00:32.882+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/zitadel/zitadel"], implied first by module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand) +2025-07-11T09:00:32.882+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/random"], implied first by module.argocd.random_password.admin_password (expand) +2025-07-11T09:00:32.882+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/null"], implied first by module.tenant-365zon.module.minio.null_resource.health_check (expand) +2025-07-11T09:00:32.883+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/local"], implied first by module.zitadel.local_file.zitadel_jwt_profile_file (expand) +2025-07-11T09:00:32.883+0200 [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/external"], implied first by module.argocd.data.external.processed_values (expand) +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.monitoring.helm_release.kube_prometheus_stack" (*terraform.NodeApplyableResourceInstance) needs module.monitoring.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_root_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_access_key (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_secret.mongodb_auth (expand)" (*terraform.nodeExpandApplyableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.redis.helm_release.redis (expand)" (*terraform.nodeExpandApplyableResource) needs module.redis.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.mongodb.helm_release.mongodb (expand)" (*terraform.nodeExpandApplyableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_namespace.argocd (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.random_password.password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_secret.zitadel (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)" (*terraform.nodeExpandApplyableResource) needs module.cluster-init.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.argocd.kubernetes_secret.argocd-tls (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_root_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.zitadel.random_password.zitadel_masterkey (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_secret.storage (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/local"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.argocd.helm_release.argocd" (*terraform.NodeApplyableResourceInstance) needs module.argocd.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.minio.helm_release.minio (expand)" (*terraform.nodeExpandApplyableResource) needs module.minio.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.zitadel.kubernetes_namespace.zitadel (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.884+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_namespace.monitoring" (*terraform.NodeApplyableResourceInstance) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.minio.random_password.minio_secret_key (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.argocd.data.kubernetes_secret.bridge-tls (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "data.minio_s3_object.k8s_yaml (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/aminueza/minio"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.mongodb.kubernetes_namespace.mongodb (expand)" (*terraform.nodeExpandApplyableResource) needs module.mongodb.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.mongodb.random_password.mongodb_replica_set_key (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_secret.postgresql_auth (expand)" (*terraform.nodeExpandApplyableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.argocd.data.external.processed_values (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/external"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.argocd.random_password.admin_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.postgresql.helm_release.postgresql (expand)" (*terraform.nodeExpandApplyableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.rabbitmq.helm_release.rabbitmq (expand)" (*terraform.nodeExpandApplyableResource) needs module.rabbitmq.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.kubernetes_namespace.tenant (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.postgresql.random_password.postgresql_user_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.argocd.helm_release.argocd (expand)" (*terraform.nodeExpandApplyableResource) needs module.argocd.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.null_resource.health_check (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/null"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.redis.random_password.redis (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_namespace.monitoring (expand)" (*terraform.nodeExpandApplyableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_action.groups-claim (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-bootstrap.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_namespace.redis (expand)" (*terraform.nodeExpandApplyableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.random_password.tenant (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand)" (*terraform.nodeExpandApplyableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.postgresql.kubernetes_namespace.postgresql (expand)" (*terraform.nodeExpandApplyableResource) needs module.postgresql.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.zitadel-db.kubernetes_job.create-tenant (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-db.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.redis.kubernetes_secret.redis (expand)" (*terraform.nodeExpandApplyableResource) needs module.redis.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.module.minio.provider["registry.terraform.io/aminueza/minio"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.monitoring.random_password.grafana_admin_password (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.885+0200 [DEBUG] ProviderTransformer: "module.monitoring.helm_release.kube_prometheus_stack (expand)" (*terraform.nodeExpandApplyableResource) needs module.monitoring.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:32.886+0200 [DEBUG] ProviderTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn (expand)" (*terraform.nodeExpandApplyableResource) needs module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:32.886+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.886+0200 [DEBUG] ProviderTransformer: "module.zitadel.helm_release.zitadel (expand)" (*terraform.nodeExpandApplyableResource) needs module.zitadel.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:32.886+0200 [DEBUG] ProviderTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" (*terraform.NodeApplyableResourceInstance) needs module.zitadel-argocd.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.886+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.886+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.886+0200 [DEBUG] ProviderTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant-365zon.provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.887+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/vault"] +2025-07-11T09:00:32.887+0200 [DEBUG] pruning unused provider["registry.terraform.io/zitadel/zitadel"] +2025-07-11T09:00:32.887+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.887+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:32.888+0200 [DEBUG] pruning unused module.zitadel-bootstrap.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:32.888+0200 [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.888+0200 [DEBUG] pruning unused module.mongodb.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T09:00:32.888+0200 [DEBUG] pruning unused module.rabbitmq.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.888+0200 [DEBUG] pruning unused module.zitadel-db.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:32.888+0200 [DEBUG] pruning unused module.cluster-init.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:32.888+0200 [DEBUG] pruning unused module.tenant-365zon.provider["registry.terraform.io/hashicorp/helm"] +2025-07-11T09:00:32.888+0200 [DEBUG] pruning unused module.minio.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.888+0200 [DEBUG] pruning unused module.cluster-init.module.longhorn.provider["registry.terraform.io/hashicorp/kubernetes"] +2025-07-11T09:00:32.888+0200 [DEBUG] pruning unused module.postgresql.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T09:00:32.888+0200 [DEBUG] pruning unused module.argocd.provider["registry.terraform.io/argoproj-labs/argocd"] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user_policy_attachment.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand) module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand) module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand)" references: [] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.namespace (expand)" references: [] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_auth (expand)" references: [module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand) module.redis.local.k8s_config (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.access_instructions (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.random_password.grafana_admin_password (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.postgresql.helm_release.postgresql (expand)" references: [module.postgresql.var.wait_on (expand) module.postgresql.kubernetes_secret.postgresql_auth (expand) module.postgresql.var.enabled (expand) module.postgresql.var.username (expand) module.postgresql.kubernetes_namespace.postgresql (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_secret.argocd-tls (expand)" references: [module.argocd.data.kubernetes_secret.bridge-tls (expand) module.argocd.data.kubernetes_secret.bridge-tls (expand) module.argocd.kubernetes_namespace.argocd (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.minio.var.tls (expand)" references: [] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.host (expand)" references: [] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand)" references: [] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.org_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_access_key (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.tenant-365zon.var.domain (expand) module.tenant-365zon.var.jwt_profile_file (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "var.endpoints" references: [] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.argocd_service_domain (expand)" references: [local.cluster_dns (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)" references: [module.tenant-365zon.local.name (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_access_key (expand)" references: [module.minio.random_password.minio_access_key (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.minio.var.storageSize (expand)" references: [] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.argocd (close)" references: [] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)" references: [] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.wait_on (expand)" references: [] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.minio.local.service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.server_dns (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_auth (expand)" references: [module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand) module.rabbitmq.local.k8s_config (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.admin_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (expand)" references: [] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.zitadel (expand)" references: [] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)" references: [] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_auth (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand) module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.name (expand)" references: [] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:32.899+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)" references: [module.tenant-365zon.module.minio.null_resource.health_check (expand) module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "data.minio_s3_object.k8s_yaml (expand)" references: [var.bucket] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand)" references: [module.zitadel-argocd.var.org_id (expand) module.zitadel-argocd.zitadel_action.groups-claim (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_secret_key (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (close)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "var.vault_token" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.namespace (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.enabled (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.ingressClass (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.alertmanager_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_host (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_host (expand)" references: [module.rabbitmq.local.k8s_config (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.ingressClass (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (close)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "local.tld (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.helm_release.rabbitmq (expand)" references: [module.rabbitmq.random_password.password (expand) module.rabbitmq.var.wait_on (expand) module.rabbitmq.var.namespace (expand) module.rabbitmq.local.service_uri (expand) module.rabbitmq.var.admin (expand) module.rabbitmq.var.tls (expand) module.rabbitmq.var.ingressClass (expand) module.rabbitmq.var.replicas (expand) module.rabbitmq.random_password.password (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_auth (expand)" references: [module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand) module.minio.local.k8s_config (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_config (expand)" references: [module.cluster-init.var.k8s_config_yaml (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (close)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_password (expand)" references: [module.zitadel-db.output.password (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.role_ids (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.idp_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_root_password (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.installed (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.wait_on (expand)" references: [module.zitadel-db.output.installed (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_host (expand)" references: [module.cluster-init.module.longhorn.local.k8s_config (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.helm_release.longhorn (expand)" references: [module.cluster-init.module.longhorn.var.wait_on (expand) module.cluster-init.module.longhorn.var.namespace (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.rabbitmq_connection_string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.postgresql.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.postgresql.local.k8s_host (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand) module.postgresql.local.k8s_auth (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.wait_on (expand)" references: [module.postgresql.output.installed (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.redis.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.namespace (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.minio.var.mode (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (close)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.postgresql (close)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel.random_password.zitadel_masterkey (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "var.secret_key" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.usernames (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.redis.var.namespace (expand)" references: [] +2025-07-11T09:00:32.900+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.jwt_profile_file (expand)" references: [module.zitadel.local_file.zitadel_jwt_profile_file (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_root_password (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)" references: [module.tenant-365zon.var.user_id (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_config (expand)" references: [module.redis.var.k8s_config_yaml (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.redis.output.installed (expand)" references: [module.redis.helm_release.redis (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (close)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_namespace.redis (expand)" references: [module.redis.var.namespace (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.mongodb.random_password.mongodb_replica_set_key (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.namespace (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.minio.var.service_name (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.server (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand)" references: [module.zitadel-argocd.local.argocd_uri (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.output.installed (expand)" references: [module.cluster-init.module.longhorn.output.installed (expand) module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.owners (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.redis.output.password (expand)" references: [module.redis.random_password.redis (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.monitoring (close)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.monitoring.random_password.grafana_admin_password (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db (close)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.service_name (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.local.argocd_uri (expand)" references: [module.zitadel-argocd.var.argocd_service_domain (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_password (expand)" references: [module.redis.output.password (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.ingressClass (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.redis.random_password.redis (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.mongodb_connection_string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_config (expand)" references: [module.argocd.var.k8s_config_yaml (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.grpc_service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.service_uri (expand)" references: [module.rabbitmq.var.service_name (expand) module.rabbitmq.var.server_dns (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_auth (expand)" references: [module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand) module.zitadel.local.k8s_config (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.tld (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.mongodb (close)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_secret.mongodb_auth (expand)" references: [module.mongodb.var.wait_on (expand) module.mongodb.random_password.mongodb_root_password (expand) module.mongodb.random_password.mongodb_replica_set_key (expand) module.mongodb.kubernetes_namespace.mongodb (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel.data.kubernetes_secret.zitadel_admin (expand)" references: [module.zitadel.helm_release.zitadel (expand) module.zitadel.var.namespace (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.zitadel-argocd.var.user_id (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.var.wait_on (expand)" references: [module.cluster-init.var.wait_on (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.wait_on (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_id (expand)" references: [module.zitadel-argocd.output.client_id (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_config (expand)" references: [module.postgresql.var.k8s_config_yaml (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.zitadel_project_role.default (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-bootstrap.var.domain (expand) module.zitadel-bootstrap.var.jwt_profile_file (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.random_password.tenant (expand)" references: [] +2025-07-11T09:00:32.901+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)" references: [module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_auth (expand)" references: [module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand) module.zitadel-db.local.k8s_config (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq (close)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.redis.local.k8s_host (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.name (expand)" references: [module.zitadel-argocd.var.name (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_config (expand)" references: [module.zitadel.var.k8s_config_yaml (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.argocd.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.argocd.local.k8s_host (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand) module.argocd.local.k8s_auth (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "local.k8s_auth (expand)" references: [local.k8s_config (expand) local.k8s_config (expand) local.k8s_config (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.var.roles (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.connection_string (expand)" references: [module.rabbitmq.random_password.password (expand) module.rabbitmq.var.namespace (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.installed (expand)" references: [module.mongodb.helm_release.mongodb (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (close)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.namespace (expand)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.password (expand)" references: [module.zitadel-db.random_password.tenant (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.roles (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.mongodb (expand)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "var.bucket" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.service_name (expand)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_auth (expand)" references: [module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand) module.monitoring.local.k8s_config (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_bucket (expand)" references: [module.tenant-365zon.module.minio.output.bucket (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_secret.postgresql_auth (expand)" references: [module.postgresql.var.wait_on (expand) module.postgresql.var.enabled (expand) module.postgresql.random_password.postgresql_user_password (expand) module.postgresql.random_password.postgresql_root_password (expand) module.postgresql.kubernetes_namespace.postgresql (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "var.region" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (expand)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.cluster-init (expand)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.zitadel (close)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (close)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (close)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.zitadel_domain (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.minio.output.secret_key (expand)" references: [module.minio.random_password.minio_secret_key (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "output.mongodb-connection-string (expand)" references: [module.mongodb.output.connection_string (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.kubernetes_job.create-tenant (expand)" references: [module.zitadel-db.var.wait_on (expand) module.zitadel-db.var.enabled (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.namespace (expand) module.zitadel-db.var.host (expand) module.zitadel-db.var.root_username (expand) module.zitadel-db.var.root_password (expand) module.zitadel-db.var.root_database (expand) module.zitadel-db.var.name (expand) module.zitadel-db.var.name (expand) module.zitadel-db.random_password.tenant (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_server (expand)" references: [module.minio.output.minio_server (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.postgresql.kubernetes_namespace.postgresql (expand)" references: [module.postgresql.var.enabled (expand) module.postgresql.var.namespace (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring (expand)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (expand)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.wait_on (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "var.vault_addr" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_database (expand)" references: [] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.secret_key (expand)" references: [module.tenant-365zon.var.minio_secret_key (expand)] +2025-07-11T09:00:32.902+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (validation)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand) module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.output.installed (expand)" references: [module.rabbitmq.helm_release.rabbitmq (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.minio.output.installed (expand)" references: [module.minio.helm_release.minio (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_user.overlay (expand)" references: [module.tenant-365zon.module.minio.null_resource.health_check (expand) module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.user_name (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.roles (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.var.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.admin_password (expand)" references: [module.argocd.random_password.admin_password (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/external\"]" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (close)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "var.minio_server" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.email (expand)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.installed (expand)" references: [module.zitadel-db.kubernetes_job.create-tenant (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.namespace (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.user_id (expand)" references: [module.zitadel-bootstrap.output.user_id (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.minio.var.displayOnHomepage (expand)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_config (expand)" references: [module.mongodb.var.k8s_config_yaml (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.postgresql (expand)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio (close)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.org_id (expand)" references: [module.zitadel-bootstrap.output.org_id (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)" references: [module.tenant-365zon.var.org_id (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_config (expand)" references: [module.zitadel-db.var.k8s_config_yaml (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel-db.local.k8s_host (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand) module.zitadel-db.local.k8s_auth (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.name (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.with_secret (expand)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_username (expand)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.output.minio_secret_key (expand)" references: [module.tenant-365zon.module.minio.output.secret_key (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.minio (close)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand)" references: [module.zitadel-argocd.module.zitadel_project.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project.var.name (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.redis.kubernetes_secret.redis (expand)" references: [module.redis.random_password.redis (expand) module.redis.kubernetes_namespace.redis (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_server (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "output.monitoring (expand)" references: [module.monitoring.output.access_instructions (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/null\"]" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.zitadel_project_role.default (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (close)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.uri (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_auth (expand)" references: [module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand) module.mongodb.local.k8s_config (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.mongodb.local.k8s_host (expand)" references: [module.mongodb.local.k8s_config (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.scopes (expand)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.monitoring (expand)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.output.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_iam_user.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_secret_key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.minio.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.zitadel_project_role.default (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.user-agent (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.enabled (expand)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.username (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.provider[\"registry.terraform.io/aminueza/minio\"]" references: [module.tenant-365zon.module.minio.var.server (expand) module.tenant-365zon.module.minio.var.access_key (expand) module.tenant-365zon.module.minio.var.secret_key (expand) module.tenant-365zon.module.minio.var.region (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_secret.zitadel (expand)" references: [module.zitadel.var.enabled (expand) module.zitadel.random_password.zitadel_masterkey (expand) module.zitadel.kubernetes_namespace.zitadel (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner.output.installed (expand)" references: [module.zitadel-bootstrap.module.zitadel-org-owner.zitadel_org_member.default (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.argocd (expand)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.server (expand)" references: [module.tenant-365zon.var.minio_server (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.access_key (expand)" references: [module.tenant-365zon.var.minio_access_key (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.local.k8s_config (expand)" references: [module.rabbitmq.var.k8s_config_yaml (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project (expand)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.group (expand)" references: [] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_password (expand)" references: [module.postgresql.output.root_password (expand)] +2025-07-11T09:00:32.903+0200 [DEBUG] ReferenceTransformer: "output.minio-secret-key (expand)" references: [module.tenant-365zon.output.minio_secret_key (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant.var.project_id (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.wait_on (expand)" references: [module.argocd.output.installed (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (expand)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.redis.helm_release.redis (expand)" references: [module.redis.var.wait_on (expand) module.redis.var.architecture (validation) module.redis.var.architecture (expand) module.redis.kubernetes_namespace.redis (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "local.cluster_shortname (expand)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_auth (expand)" references: [module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand) module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.minio.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.cluster-init.local.k8s_host (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand) module.cluster-init.local.k8s_auth (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.provider[\"registry.terraform.io/zitadel/zitadel\"]" references: [module.zitadel-argocd.var.jwt_profile_file (expand) module.zitadel-argocd.var.domain (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (expand)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google (expand)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_admin.output.roles (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.namespace (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.wait_on (expand)" references: [module.zitadel-argocd.output.installed (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.bucket (expand)" references: [module.tenant-365zon.module.minio.var.name (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.service_account (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_namespace.tenant (expand)" references: [module.tenant-365zon.var.wait_on (expand) module.tenant-365zon.local.name (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.replicas (expand)" references: [local.node_count (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.var.name (expand)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.minio.var.ingressClass (expand)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.service_uri (expand)" references: [module.monitoring.var.service_name (expand) module.monitoring.var.server_dns (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand)" references: [module.monitoring.var.remote_write_username (expand) module.monitoring.var.remote_write_password (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_auth (expand)" references: [module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand) module.postgresql.local.k8s_config (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/aminueza/minio\"]" references: [var.minio_server var.access_key var.secret_key var.region] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.ingressClass (expand)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_config (expand)" references: [module.tenant-365zon.var.k8s_config_yaml (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api (close)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.zitadel_action.groups-claim (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.storage (expand)" references: [module.tenant-365zon.module.minio.output.access_key (expand) module.tenant-365zon.module.minio.output.secret_key (expand) module.tenant-365zon.var.minio_api_uri (expand) module.tenant-365zon.module.minio.output.bucket (expand) module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.wait_on (expand)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.org_id (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "local.k8s_config (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.minio.random_password.minio_access_key (expand)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.minio.var.replicas (expand)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.cluster_domain (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_host (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand) module.tenant-365zon.local.k8s_auth (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.cluster-init.module.longhorn.local.k8s_host (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand) module.cluster-init.module.longhorn.local.k8s_auth (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.mongodb.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.mongodb.local.k8s_host (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand) module.mongodb.local.k8s_auth (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api (close)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-org-owner (expand)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_client_secret (expand)" references: [module.zitadel-argocd.output.client_secret (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.redis.local.k8s_host (expand)" references: [module.redis.local.k8s_config (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.uri (expand)" references: [module.zitadel.local.service_uri (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.redis (close)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.zitadel_project_member.default (expand)" references: [module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.zitadel_project.default (expand) module.zitadel-argocd.module.zitadel_project.var.owners (expand) module.zitadel-argocd.module.zitadel_project.var.org_id (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.client_id (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.options (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.redis_db_start_index (expand)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.authority (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project_member.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.owners (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local_file.zitadel_jwt_profile_file (expand)" references: [module.zitadel.data.kubernetes_secret.zitadel_admin (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.group (expand)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "local.k8s_host (expand)" references: [local.k8s_config (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel (close)" references: [] +2025-07-11T09:00:32.904+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (close)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.mongodb.helm_release.mongodb (expand)" references: [module.mongodb.var.wait_on (expand) module.mongodb.kubernetes_secret.mongodb_auth (expand) module.mongodb.kubernetes_namespace.mongodb (expand) module.mongodb.var.usernames (expand) module.mongodb.var.databases (expand) module.mongodb.var.replicas (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.mongodb.kubernetes_namespace.mongodb (expand)" references: [module.mongodb.var.namespace (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.name (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_config (expand)" references: [module.monitoring.var.k8s_config_yaml (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles (close)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_url (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.service_uri (expand)" references: [module.zitadel.var.service_name (expand) module.zitadel.var.server_dns (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.wait_on (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_api_uri (expand)" references: [module.minio.output.minio_api_uri (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.prometheus_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.zitadel.local.k8s_host (expand)" references: [module.zitadel.local.k8s_config (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_s3_bucket_policy.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.zitadel.helm_release.zitadel (expand)" references: [module.zitadel.var.wait_on (expand) module.zitadel.kubernetes_secret.zitadel (expand) module.zitadel.var.enabled (expand) module.zitadel.local.service_uri (expand) module.zitadel.var.database (expand) module.zitadel.var.database_username (expand) module.zitadel.var.database_password (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.database_root_username (expand) module.zitadel.var.database_root_password (expand) module.zitadel.var.display_on_homepage (expand) module.zitadel.var.ingressClass (expand) module.zitadel.kubernetes_namespace.zitadel (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.name (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.application_id (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.user_roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.kubernetes_manifest.rke2-ingress-nginx-config (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand)" references: [module.zitadel-bootstrap.var.domain (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user (close)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.postgresql.random_password.postgresql_user_password (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.argocd.kubernetes_namespace.argocd (expand)" references: [module.argocd.var.namespace (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.root_username (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.service-account (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin_server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "local.k8s_config_yaml (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.user_id (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.display_on_homepage (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.access_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.service_name (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.root_password (expand)" references: [module.postgresql.random_password.postgresql_root_password (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.external.processed_values (expand)" references: [module.argocd.local.service_uri (expand) module.argocd.var.server_dns (expand) module.argocd.local.grpc_service_uri (expand) module.argocd.var.redis_db_start_index (expand) module.argocd.var.redis_password (expand) module.argocd.var.oauth_uri (expand) module.argocd.var.oauth_issuer (expand) module.argocd.var.oauth_client_id (expand) module.argocd.var.oauth_client_secret (expand) module.argocd.var.oauth_redirect_uri (expand) module.argocd.var.tls (expand) module.argocd.var.ingressClass (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.minio.var.namespace (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "local.cluster_dns (expand)" references: [local.cluster_shortname (expand) local.tld (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (close)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua (close)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.name (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.minio.local.admin_service_uri (expand)" references: [module.minio.var.service_name (expand) module.minio.var.admin_server_dns (expand) module.minio.var.admin_server_dns (expand) module.minio.var.server_dns (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account (close)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.var.access_token_type (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.user_id (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_issuer (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "output.minio-root-access-key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.kubernetes_secret.api (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.application_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.namespace (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.access_token_type (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.user_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.with_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.description (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.org_id (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.k8s_config_yaml (expand)" references: [local.k8s_config_yaml (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_username (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.minio.output.access_key (expand)" references: [module.minio.random_password.minio_access_key (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.installed (expand)" references: [module.postgresql.helm_release.postgresql (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.installed (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.output.installed (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-access-token (expand) module.zitadel-argocd.zitadel_trigger_actions.groups-claim-pre-user-info (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.project_id (expand)" references: [module.zitadel-argocd.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.postgresql.output.password (expand)" references: [module.postgresql.random_password.postgresql_user_password (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.job_name (expand)" references: [module.zitadel-db.var.enabled (expand) module.zitadel-db.kubernetes_job.create-tenant (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.role_ids (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.zitadel_project_role.default (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "output.minio-access-key (expand)" references: [module.tenant-365zon.output.minio_access_key (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.redis (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.minio.var.admin (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (close)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.wait_on (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.output.installed (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.postgresql.local.k8s_host (expand)" references: [module.postgresql.local.k8s_config (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_auth (expand)" references: [module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand) module.cluster-init.local.k8s_config (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd" references: [module.argocd.var.wait_on (expand) module.argocd.kubernetes_secret.argocd-tls (expand) module.argocd.data.external.processed_values (expand) module.argocd.kubernetes_namespace.argocd (expand) module.argocd.random_password.admin_password (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.var.domain (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.minio_access_key (expand)" references: [module.minio.output.minio_access_key (expand)] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.minio (expand)" references: [] +2025-07-11T09:00:32.905+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.minio.helm_release.minio (expand)" references: [module.minio.var.mode (expand) module.minio.var.replicas (expand) module.minio.var.replicas (expand) module.minio.var.storageSize (expand) module.minio.var.namespace (expand) module.minio.local.service_uri (expand) module.minio.local.admin_service_uri (expand) module.minio.var.admin (expand) module.minio.var.mode (expand) module.minio.var.tls (expand) module.minio.var.ingressClass (expand) module.minio.var.displayOnHomepage (expand) module.minio.random_password.minio_access_key (expand) module.minio.random_password.minio_secret_key (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.databases (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.user_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.user_id (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database_root_username (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "local.node_count (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.local.k8s_host (expand)" references: [module.zitadel-db.local.k8s_config (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.zitadel_application_api.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.org_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_api.var.project_id (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel.kubernetes_namespace.zitadel (expand)" references: [module.zitadel.var.enabled (expand) module.zitadel.var.namespace (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.post_logout_redirect_uris (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.uri (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.region (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_config (expand)" references: [module.minio.var.k8s_config_yaml (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.cluster_domain (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.output.database (expand)" references: [module.zitadel-db.var.name (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.database (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.output.installed (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.monitoring.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.monitoring.local.k8s_host (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand) module.monitoring.local.k8s_auth (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.tls (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.local.k8s_host (expand)" references: [module.cluster-init.local.k8s_config (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.installed (expand)" references: [module.argocd.helm_release.argocd module.argocd.helm_release.argocd module.argocd.helm_release.argocd (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.output.installed (expand)" references: [module.cluster-init.module.longhorn.helm_release.longhorn (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.argocd.helm_release.argocd (expand)" references: [module.argocd.var.wait_on (expand) module.argocd.kubernetes_secret.argocd-tls (expand) module.argocd.random_password.admin_password (expand) module.argocd.kubernetes_namespace.argocd (expand) module.argocd.data.external.processed_values (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.redis.var.wait_on (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.group (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.wait_on (expand)" references: [module.minio.output.installed (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_admin_uri (expand)" references: [module.minio.local.admin_service_uri (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.monitoring.output.grafana_url (expand)" references: [module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap (close)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.namespace (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.var.jwt_profile_file (expand)" references: [module.zitadel.output.jwt_profile_file (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel.var.service_name (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.cluster-init.module.longhorn.local.k8s_config (expand)" references: [module.cluster-init.module.longhorn.var.k8s_config_yaml (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user (close)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.var.client_secret (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.cluster (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.local.slug_project (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.zitadel_user_grant.default (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.output.roles (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_developer_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.var.wait_on (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_uri (expand)" references: [module.zitadel.output.server (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.tls (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.minio.var.server_dns (expand)" references: [local.cluster_dns (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.service_uri (expand)" references: [module.argocd.var.service_name (expand) module.argocd.var.server_dns (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.group (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.enabled (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.roles (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.roles (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_auth (expand)" references: [module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand) module.argocd.local.k8s_config (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_api_uri (expand)" references: [module.minio.local.service_uri (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.argocd.data.kubernetes_secret.bridge-tls (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.name (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.local.cluster (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.argocd.output.redis_db_next_start_index (expand)" references: [module.argocd.var.redis_db_start_index (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/local\"]" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.replicas (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.project_id (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.output.logoutSuffix (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "output.minio-root-secret-key (expand)" references: [module.minio.output.minio_secret_key (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack" references: [module.monitoring.var.wait_on (expand) module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.var.remote_write_url (expand) module.monitoring.var.remote_read_url (expand) module.monitoring.random_password.grafana_admin_password (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external (close)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.monitoring.helm_release.kube_prometheus_stack (expand)" references: [module.monitoring.var.wait_on (expand) module.monitoring.kubernetes_secret.prometheus_remote_write_auth (expand) module.monitoring.kubernetes_namespace.monitoring (expand) module.monitoring.kubernetes_namespace.monitoring module.monitoring.kubernetes_namespace.monitoring module.monitoring.var.remote_write_url (expand) module.monitoring.var.remote_read_url (expand) module.monitoring.random_password.grafana_admin_password (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin.var.org_id (expand)" references: [module.zitadel-argocd.var.org_id (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.argocd.var.oauth_redirect_uri (expand)" references: [module.zitadel.output.server (expand) module.zitadel-argocd.output.logoutSuffix (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.redis.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_auth (expand) module.redis.local.k8s_host (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.kubernetes_secret.service-account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.authority (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.user_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.client_secret (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.output.installed (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (close) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.namespace (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.wait_on (expand)" references: [] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.installed (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.argocd.local.k8s_host (expand)" references: [module.argocd.local.k8s_config (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.output.user_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.output.user_id (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "local.bridge_dns (expand)" references: [local.tld (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_auth (expand)" references: [module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand) module.zitadel-bootstrap.local.k8s_config (expand)] +2025-07-11T09:00:32.906+0200 [DEBUG] ReferenceTransformer: "module.monitoring.local.k8s_host (expand)" references: [module.monitoring.local.k8s_config (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default" references: [module.zitadel-argocd.module.zitadel_project_user_grant.var.wait_on (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.roles (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.user_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.org_id (expand) module.zitadel-argocd.module.zitadel_project_user_grant.var.project_id (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_admin (close)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.wait_on (expand)" references: [module.cluster-init.output.installed (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "output.argocd-root-password (expand)" references: [module.argocd.output.admin_password (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.service_account (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant (close)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.cluster_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.var.wait_on (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_userinfo_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.auth_method_type (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.org_id (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.id_token_role_assertion (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.post_logout_redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.name (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.redirect_uris (expand) module.zitadel-argocd.module.zitadel_application_argocd.var.project_id (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.mongodb.var.namespace (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.zitadel.output.installed (expand)" references: [module.zitadel.helm_release.zitadel (expand) module.zitadel.local_file.zitadel_jwt_profile_file (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd (close)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.argocd.random_password.admin_password (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_ua.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.cluster_dns (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.output.roles (expand)" references: [module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.output.secret_key (expand)" references: [module.tenant-365zon.module.minio.minio_iam_service_account.overlay (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.rabbitmq.local.k8s_host (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand) module.rabbitmq.local.k8s_auth (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_roles_user.var.roles (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_user_grant.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.project_id (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.var.description (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.minio.output.minio_secret_key (expand)" references: [module.minio.random_password.minio_secret_key (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.local.k8s_host (expand)" references: [module.tenant-365zon.local.k8s_config (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project_user_grant.output.user_grant_id (expand)" references: [module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default (expand) module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api (close)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.random_password.password (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.project (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.name (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.mongodb.output.connection_string (expand)" references: [module.mongodb.random_password.mongodb_root_password (expand) module.mongodb.var.replicas (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.zitadel_project.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.var.org_id (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.zitadel_project_role.default (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.wait_on (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.project_id (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.roles (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.group (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_configurator_roles.var.org_id (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_login_policy.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.zitadel_org_idp_google.default (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.domain (expand) module.zitadel-bootstrap.module.zitadel-idp-google.var.org_id (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_read_url (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.enabled (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant (close)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.kubernetes_secret.connection_strings (expand)" references: [module.tenant-365zon.var.mongodb_connection_string (expand) module.tenant-365zon.var.rabbitmq_connection_string (expand) module.tenant-365zon.kubernetes_namespace.tenant (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.zitadel-db.var.namespace (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "output.rabbitmq-connection-string (expand)" references: [module.rabbitmq.output.connection_string (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.namespace (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.uri (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.slug_name (expand) module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.local.cluster (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.module.zitadel_service_account (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.service_account (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project.var.wait_on (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.service_account (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.local.k8s_config (expand)" references: [module.zitadel-bootstrap.var.k8s_config_yaml (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_application_argocd.output.client_secret (expand)" references: [module.zitadel-argocd.module.zitadel_application_argocd.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.output.application_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.module.zitadel_project_application_ua.zitadel_application_oidc.default (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.redis.var.architecture (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_operator_roles.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.minio.local.k8s_host (expand)" references: [module.minio.local.k8s_config (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.output.client_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_service_account.zitadel_machine_user.default (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-tenant.output.org_id (expand)" references: [module.zitadel-bootstrap.module.zitadel-tenant.zitadel_org.default (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "var.access_key" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_user_grant.var.roles (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.roles (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.monitoring.var.remote_write_password (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.postgresql.var.username (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.output.client_secret (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.module.zitadel_project_application_api.zitadel_application_api.default (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.zitadel.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" references: [module.zitadel.local.k8s_host (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand) module.zitadel.local.k8s_auth (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.zitadel-argocd.module.zitadel_project (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.minio_iam_policy.overlay (expand)" references: [module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand) module.tenant-365zon.module.minio.minio_s3_bucket.overlay (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.module.zitadel_project_application_ua.var.name (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.name (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.var.org_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.var.org_id (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_module_internal.var.project_id (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project.output.project_id (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.minio.null_resource.health_check (expand)" references: [module.tenant-365zon.module.minio.var.wait_on (expand) module.tenant-365zon.module.minio.var.server (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.zitadel-bootstrap.module.zitadel-user.zitadel_human_user.default (expand)" references: [module.zitadel-bootstrap.module.zitadel-user.var.wait_on (expand) module.zitadel-bootstrap.module.zitadel-user.var.last_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.email (expand) module.zitadel-bootstrap.module.zitadel-user.var.org_id (expand) module.zitadel-bootstrap.module.zitadel-user.var.first_name (expand) module.zitadel-bootstrap.module.zitadel-user.var.user_name (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.admin (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_salesforce.var.wait_on (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_core.output.installed (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.monitoring.kubernetes_namespace.monitoring" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.rabbitmq.var.server_dns (expand)" references: [] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.var.zitadel_domain (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.local.domain (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.tenant-365zon.module.bootstrap-zitadel.output.installed (expand)" references: [module.tenant-365zon.module.bootstrap-zitadel.module.zitadel_project_application_external.output.installed (expand)] +2025-07-11T09:00:32.907+0200 [DEBUG] ReferenceTransformer: "module.minio.provider[\"registry.terraform.io/hashicorp/helm\"]" references: [module.minio.local.k8s_host (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand) module.minio.local.k8s_auth (expand)] +2025-07-11T09:00:32.989+0200 [DEBUG] Starting graph walk: walkApply +2025-07-11T09:00:32.991+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:32.991+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:32.996+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5"] +2025-07-11T09:00:32.996+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 pid=975855 +2025-07-11T09:00:32.996+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 +2025-07-11T09:00:32.999+0200 [INFO] provider.terraform-provider-null_v3.2.4_x5: configuring server automatic mTLS: timestamp="2025-07-11T09:00:32.999+0200" +2025-07-11T09:00:33.011+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T09:00:33.011+0200 [DEBUG] provider.terraform-provider-null_v3.2.4_x5: plugin address: address=/tmp/plugin3799248985 network=unix timestamp="2025-07-11T09:00:33.010+0200" +2025-07-11T09:00:33.018+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.018+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.023+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5"] +2025-07-11T09:00:33.023+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 pid=975864 +2025-07-11T09:00:33.023+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 +2025-07-11T09:00:33.025+0200 [INFO] provider.terraform-provider-random_v3.7.2_x5: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.025+0200" +2025-07-11T09:00:33.037+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T09:00:33.037+0200 [DEBUG] provider.terraform-provider-random_v3.7.2_x5: plugin address: address=/tmp/plugin1160132159 network=unix timestamp="2025-07-11T09:00:33.037+0200" +2025-07-11T09:00:33.045+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.045+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.049+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 args=[".terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1"] +2025-07-11T09:00:33.049+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 pid=975873 +2025-07-11T09:00:33.049+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 +2025-07-11T09:00:33.052+0200 [INFO] provider.terraform-provider-slugify_v0.1.1: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.052+0200" +2025-07-11T09:00:33.063+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T09:00:33.063+0200 [DEBUG] provider.terraform-provider-slugify_v0.1.1: plugin address: address=/tmp/plugin2849122919 network=unix timestamp="2025-07-11T09:00:33.063+0200" +2025-07-11T09:00:33.071+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.071+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.076+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5"] +2025-07-11T09:00:33.076+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 pid=975888 +2025-07-11T09:00:33.076+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 +2025-07-11T09:00:33.079+0200 [INFO] provider.terraform-provider-external_v2.3.5_x5: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.079+0200" +2025-07-11T09:00:33.091+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T09:00:33.091+0200 [DEBUG] provider.terraform-provider-external_v2.3.5_x5: plugin address: network=unix address=/tmp/plugin4143894144 timestamp="2025-07-11T09:00:33.091+0200" +2025-07-11T09:00:33.099+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.099+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.104+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5"] +2025-07-11T09:00:33.104+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 pid=975896 +2025-07-11T09:00:33.104+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 +2025-07-11T09:00:33.106+0200 [INFO] provider.terraform-provider-local_v2.5.3_x5: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.106+0200" +2025-07-11T09:00:33.118+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T09:00:33.118+0200 [DEBUG] provider.terraform-provider-local_v2.5.3_x5: plugin address: address=/tmp/plugin941293030 network=unix timestamp="2025-07-11T09:00:33.118+0200" +2025-07-11T09:00:33.125+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.125+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.130+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T09:00:33.130+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=975904 +2025-07-11T09:00:33.130+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T09:00:33.136+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.136+0200" +2025-07-11T09:00:33.163+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T09:00:33.163+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin3724104285 network=unix timestamp="2025-07-11T09:00:33.163+0200" +2025-07-11T09:00:33.176+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.176+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.177+0200 [WARN] ValidateProviderConfig from "provider[\"registry.terraform.io/aminueza/minio\"]" changed the config value, but that value is unused +2025-07-11T09:00:33.180+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T09:00:33.180+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=975917 +2025-07-11T09:00:33.180+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T09:00:33.199+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.199+0200" +2025-07-11T09:00:33.207+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T09:00:33.207+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin4273604703 network=unix timestamp="2025-07-11T09:00:33.207+0200" +2025-07-11T09:00:33.214+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.214+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.219+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T09:00:33.219+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=975936 +2025-07-11T09:00:33.219+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T09:00:33.233+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.233+0200" +2025-07-11T09:00:33.245+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin1195287766 network=unix timestamp="2025-07-11T09:00:33.245+0200" +2025-07-11T09:00:33.245+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T09:00:33.253+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T09:00:33.253+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.253+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.257+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T09:00:33.257+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=975950 +2025-07-11T09:00:33.257+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T09:00:33.276+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.276+0200" +2025-07-11T09:00:33.284+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T09:00:33.284+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin3456896356 network=unix timestamp="2025-07-11T09:00:33.284+0200" +2025-07-11T09:00:33.291+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.291+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.296+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T09:00:33.296+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=975968 +2025-07-11T09:00:33.296+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T09:00:33.309+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.309+0200" +2025-07-11T09:00:33.321+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin2642848007 network=unix timestamp="2025-07-11T09:00:33.321+0200" +2025-07-11T09:00:33.321+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T09:00:33.329+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.329+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.329+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 09:00:33 [DEBUG] MinIO SSL client transport configured successfully: timestamp="2025-07-11T09:00:33.329+0200" +2025-07-11T09:00:33.330+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:33 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T09:00:33.330+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:33 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T09:00:33.330+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9ce9810e-df88-fc3e-3f59-152289632f45 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 timestamp="2025-07-11T09:00:33.330+0200" +2025-07-11T09:00:33.330+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9ce9810e-df88-fc3e-3f59-152289632f45 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm timestamp="2025-07-11T09:00:33.330+0200" +2025-07-11T09:00:33.330+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_req_id=9ce9810e-df88-fc3e-3f59-152289632f45 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:00:33.330+0200" +2025-07-11T09:00:33.334+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T09:00:33.334+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=975984 +2025-07-11T09:00:33.334+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T09:00:33.351+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.351+0200" +2025-07-11T09:00:33.360+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T09:00:33.360+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin3189461057 network=unix timestamp="2025-07-11T09:00:33.360+0200" +2025-07-11T09:00:33.368+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.368+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.368+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T09:00:33.373+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T09:00:33.373+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=976003 +2025-07-11T09:00:33.373+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T09:00:33.391+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.390+0200" +2025-07-11T09:00:33.399+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T09:00:33.399+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1494628752 network=unix timestamp="2025-07-11T09:00:33.399+0200" +2025-07-11T09:00:33.407+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.407+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.412+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T09:00:33.412+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=976021 +2025-07-11T09:00:33.412+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T09:00:33.426+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.426+0200" +2025-07-11T09:00:33.437+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T09:00:33.437+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin1094956855 network=unix timestamp="2025-07-11T09:00:33.437+0200" +2025-07-11T09:00:33.445+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.445+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.446+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:33 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T09:00:33.446+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:33 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T09:00:33.446+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: tf_rpc=ConfigureProvider config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9587e906-afa0-a32c-31ed-7a13fc95ef61 timestamp="2025-07-11T09:00:33.446+0200" +2025-07-11T09:00:33.446+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @module=helm tf_req_id=9587e906-afa0-a32c-31ed-7a13fc95ef61 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider timestamp="2025-07-11T09:00:33.446+0200" +2025-07-11T09:00:33.446+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=9587e906-afa0-a32c-31ed-7a13fc95ef61 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 timestamp="2025-07-11T09:00:33.446+0200" +2025-07-11T09:00:33.450+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T09:00:33.450+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=976035 +2025-07-11T09:00:33.450+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T09:00:33.462+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.462+0200" +2025-07-11T09:00:33.474+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T09:00:33.474+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin1876894280 network=unix timestamp="2025-07-11T09:00:33.474+0200" +2025-07-11T09:00:33.482+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.482+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T09:00:33.482+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.486+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T09:00:33.487+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=976051 +2025-07-11T09:00:33.487+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T09:00:33.504+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.504+0200" +2025-07-11T09:00:33.513+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T09:00:33.513+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin3098139259 network=unix timestamp="2025-07-11T09:00:33.512+0200" +2025-07-11T09:00:33.520+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T09:00:33.520+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.520+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.524+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T09:00:33.525+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=976069 +2025-07-11T09:00:33.525+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T09:00:33.539+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.539+0200" +2025-07-11T09:00:33.550+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T09:00:33.550+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin2904236945 network=unix timestamp="2025-07-11T09:00:33.550+0200" +2025-07-11T09:00:33.558+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.558+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.558+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T09:00:33.563+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T09:00:33.563+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=976083 +2025-07-11T09:00:33.563+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T09:00:33.575+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.575+0200" +2025-07-11T09:00:33.587+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: network=unix address=/tmp/plugin1082398827 timestamp="2025-07-11T09:00:33.587+0200" +2025-07-11T09:00:33.587+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T09:00:33.597+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.597+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.597+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T09:00:33.601+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T09:00:33.601+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=976096 +2025-07-11T09:00:33.601+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T09:00:33.620+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.620+0200" +2025-07-11T09:00:33.630+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T09:00:33.630+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin2879574854 network=unix timestamp="2025-07-11T09:00:33.630+0200" +2025-07-11T09:00:33.637+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.637+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.642+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T09:00:33.642+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=976112 +2025-07-11T09:00:33.642+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T09:00:33.657+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.657+0200" +2025-07-11T09:00:33.669+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T09:00:33.669+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: network=unix address=/tmp/plugin640267359 timestamp="2025-07-11T09:00:33.669+0200" +2025-07-11T09:00:33.677+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T09:00:33.677+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.677+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.683+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T09:00:33.683+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=976125 +2025-07-11T09:00:33.683+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T09:00:33.702+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.702+0200" +2025-07-11T09:00:33.710+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T09:00:33.710+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1176719555 network=unix timestamp="2025-07-11T09:00:33.710+0200" +2025-07-11T09:00:33.717+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.717+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.718+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @module=helm tf_req_id=e6efa709-a708-3068-2c62-72a2937cd5a6 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ConfigureProvider timestamp="2025-07-11T09:00:33.718+0200" +2025-07-11T09:00:33.718+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cb351999-c6d2-70e4-e258-98f8042c4b52 tf_rpc=ConfigureProvider timestamp="2025-07-11T09:00:33.718+0200" +2025-07-11T09:00:33.718+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:33 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T09:00:33.718+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cb351999-c6d2-70e4-e258-98f8042c4b52 @module=helm timestamp="2025-07-11T09:00:33.718+0200" +2025-07-11T09:00:33.718+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=aac13003-a329-4b98-f046-98e37e54dfb5 tf_rpc=ConfigureProvider timestamp="2025-07-11T09:00:33.718+0200" +2025-07-11T09:00:33.718+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=aac13003-a329-4b98-f046-98e37e54dfb5 tf_rpc=ConfigureProvider settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" timestamp="2025-07-11T09:00:33.718+0200" +2025-07-11T09:00:33.719+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=aac13003-a329-4b98-f046-98e37e54dfb5 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 timestamp="2025-07-11T09:00:33.718+0200" +2025-07-11T09:00:33.718+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=4b8a694f-6ff1-70e8-6cbd-8453898c6f06 tf_rpc=ConfigureProvider @module=helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" timestamp="2025-07-11T09:00:33.718+0200" +2025-07-11T09:00:33.719+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: tf_rpc=ConfigureProvider tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_req_id=4b8a694f-6ff1-70e8-6cbd-8453898c6f06 timestamp="2025-07-11T09:00:33.718+0200" +2025-07-11T09:00:33.718+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e6efa709-a708-3068-2c62-72a2937cd5a6 tf_rpc=ConfigureProvider settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 timestamp="2025-07-11T09:00:33.718+0200" +2025-07-11T09:00:33.718+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_req_id=07b8cc8e-7121-8cc2-601c-fe0e31d3a008 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 timestamp="2025-07-11T09:00:33.718+0200" +2025-07-11T09:00:33.718+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:33 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T09:00:33.718+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=cb351999-c6d2-70e4-e258-98f8042c4b52 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm timestamp="2025-07-11T09:00:33.718+0200" +2025-07-11T09:00:33.719+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=4b8a694f-6ff1-70e8-6cbd-8453898c6f06 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm timestamp="2025-07-11T09:00:33.718+0200" +2025-07-11T09:00:33.719+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 @module=helm settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=07b8cc8e-7121-8cc2-601c-fe0e31d3a008 tf_rpc=ConfigureProvider timestamp="2025-07-11T09:00:33.718+0200" +2025-07-11T09:00:33.719+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=07b8cc8e-7121-8cc2-601c-fe0e31d3a008 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 timestamp="2025-07-11T09:00:33.718+0200" +2025-07-11T09:00:33.719+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=e6efa709-a708-3068-2c62-72a2937cd5a6 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm timestamp="2025-07-11T09:00:33.718+0200" +2025-07-11T09:00:33.722+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T09:00:33.723+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=976140 +2025-07-11T09:00:33.723+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T09:00:33.740+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.740+0200" +2025-07-11T09:00:33.749+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin1624243779 network=unix timestamp="2025-07-11T09:00:33.749+0200" +2025-07-11T09:00:33.749+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T09:00:33.756+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.756+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.760+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T09:00:33.760+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=976157 +2025-07-11T09:00:33.760+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T09:00:33.773+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.773+0200" +2025-07-11T09:00:33.785+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T09:00:33.785+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin2374345741 network=unix timestamp="2025-07-11T09:00:33.785+0200" +2025-07-11T09:00:33.793+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T09:00:33.793+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.793+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.798+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5"] +2025-07-11T09:00:33.798+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 pid=976169 +2025-07-11T09:00:33.798+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 +2025-07-11T09:00:33.817+0200 [INFO] provider.terraform-provider-kubernetes_v2.31.0_x5: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.817+0200" +2025-07-11T09:00:33.826+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: plugin address: address=/tmp/plugin3635141393 network=unix timestamp="2025-07-11T09:00:33.825+0200" +2025-07-11T09:00:33.826+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T09:00:33.833+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:33.834+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=975904 +2025-07-11T09:00:33.834+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:33.834+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:33.835+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.7.2/linux_amd64/terraform-provider-random_v3.7.2_x5 id=975864 +2025-07-11T09:00:33.835+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:33.836+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:33.837+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=975936 +2025-07-11T09:00:33.837+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:33.838+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:33.840+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=975917 +2025-07-11T09:00:33.840+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:33.840+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:33.841+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=975950 +2025-07-11T09:00:33.841+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:33.841+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.841+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.842+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:33 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T09:00:33.842+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:33 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T09:00:33.842+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" tf_provider_addr=registry.terraform.io/hashicorp/helm @module=helm tf_req_id=41d57dc8-d581-d224-8ceb-2a7b6f1c0165 tf_rpc=ConfigureProvider timestamp="2025-07-11T09:00:33.842+0200" +2025-07-11T09:00:33.842+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @module=helm tf_rpc=ConfigureProvider settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=41d57dc8-d581-d224-8ceb-2a7b6f1c0165 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 timestamp="2025-07-11T09:00:33.842+0200" +2025-07-11T09:00:33.842+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=41d57dc8-d581-d224-8ceb-2a7b6f1c0165 tf_rpc=ConfigureProvider timestamp="2025-07-11T09:00:33.842+0200" +2025-07-11T09:00:33.846+0200 [DEBUG] provider: starting plugin: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 args=["/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2"] +2025-07-11T09:00:33.846+0200 [DEBUG] provider: plugin started: path=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 pid=976187 +2025-07-11T09:00:33.846+0200 [DEBUG] provider: waiting for RPC address: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 +2025-07-11T09:00:33.859+0200 [INFO] provider.terraform-provider-helm_v3.0.2: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.859+0200" +2025-07-11T09:00:33.872+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T09:00:33.872+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: plugin address: address=/tmp/plugin1996815516 network=unix timestamp="2025-07-11T09:00:33.872+0200" +2025-07-11T09:00:33.880+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:33.882+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=976083 +2025-07-11T09:00:33.882+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:33.882+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:33.884+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=976096 +2025-07-11T09:00:33.884+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:33.884+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:33.885+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/null/3.2.4/linux_amd64/terraform-provider-null_v3.2.4_x5 id=975855 +2025-07-11T09:00:33.885+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:33.886+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:33.887+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=976125 +2025-07-11T09:00:33.887+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:33.887+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:33.888+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=976112 +2025-07-11T09:00:33.888+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:33.888+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:33.889+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=975984 +2025-07-11T09:00:33.889+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:33.889+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.889+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.894+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 args=[".terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0"] +2025-07-11T09:00:33.894+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 pid=976205 +2025-07-11T09:00:33.894+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 +2025-07-11T09:00:33.901+0200 [INFO] provider.terraform-provider-minio_v3.3.0: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.901+0200" +2025-07-11T09:00:33.928+0200 [DEBUG] provider: using plugin: version=5 +2025-07-11T09:00:33.928+0200 [DEBUG] provider.terraform-provider-minio_v3.3.0: plugin address: address=/tmp/plugin3619757369 network=unix timestamp="2025-07-11T09:00:33.928+0200" +2025-07-11T09:00:33.941+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T09:00:33.942+0200 [WARN] ValidateProviderConfig from "module.tenant-365zon.module.minio.provider[\"registry.terraform.io/aminueza/minio\"]" changed the config value, but that value is unused +2025-07-11T09:00:33.942+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:33 [DEBUG] Enabling HTTP requests/responses tracing +2025-07-11T09:00:33.943+0200 [INFO] provider.terraform-provider-minio_v3.3.0: 2025/07/11 09:00:33 [DEBUG] MinIO SSL client transport configured successfully: timestamp="2025-07-11T09:00:33.943+0200" +2025-07-11T09:00:33.943+0200 [WARN] Provider "registry.terraform.io/hashicorp/kubernetes" produced an invalid plan for module.monitoring.kubernetes_namespace.monitoring, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .wait_for_default_service_account: planned value cty.False for a non-computed attribute + - .metadata[0].annotations: planned value cty.MapValEmpty(cty.String) for a non-computed attribute + - .metadata[0].generate_name: planned value cty.StringVal("") for a non-computed attribute + - .metadata[0].labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute +2025-07-11T09:00:33.943+0200 [INFO] Starting apply for module.monitoring.kubernetes_namespace.monitoring +2025-07-11T09:00:33.943+0200 [DEBUG] module.monitoring.kubernetes_namespace.monitoring: applying the planned Update change +2025-07-11T09:00:33.944+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:33.944+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Config values after overrides: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2e3555e3-a6e1-3911-7a30-1f74281c2485 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:465 @module=helm config="map[BurstLimit:map[] Debug:map[] Experiments: HelmDriver:map[] Kubernetes:map[] PluginsPath:map[] Registries:map[] RegistryConfigPath:map[] RepositoryCache:map[] RepositoryConfigPath:map[]]" timestamp="2025-07-11T09:00:33.944+0200" +2025-07-11T09:00:33.944+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings initialized: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:483 settings="map[BurstLimit:100 Debug:false KubeAPIServer: KubeAsGroups: KubeAsUser: KubeCaFile: KubeConfig: KubeContext: KubeInsecureSkipTLSVerify:false KubeTLSServerName: KubeToken: MaxHistory:10 PluginsDirectory:/home/lamelos/.local/share/helm/plugins QPS:0 RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryCache:/home/lamelos/.cache/helm/repository RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml]" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=2e3555e3-a6e1-3911-7a30-1f74281c2485 tf_rpc=ConfigureProvider @module=helm timestamp="2025-07-11T09:00:33.944+0200" +2025-07-11T09:00:33.944+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configure method completed successfully: tf_req_id=2e3555e3-a6e1-3911-7a30-1f74281c2485 tf_rpc=ConfigureProvider @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/provider.go:612 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:00:33.944+0200" +2025-07-11T09:00:33.945+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:33 [INFO] Updating namespace: [{"path":"/metadata/annotations/lifecycle.cattle.io~1create.namespace-auth","op":"remove"} {"path":"/metadata/annotations/cattle.io~1status","op":"remove"}] +2025-07-11T09:00:33.945+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_trans_id=5924b329-57a4-2d29-7b68-c1a198705d79 Content-Length=156 Content-Type="application/json-patch+json" Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_method=PATCH tf_http_op_type=request @module=kubernetes.Kubernetes new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Accept="application/json, */*" Accept-Encoding=gzip tf_http_req_body="[{\"path\":\"/metadata/annotations/lifecycle.cattle.io~1create.namespace-auth\",\"op\":\"remove\"},{\"path\":\"/metadata/annotations/cattle.io~1status\",\"op\":\"remove\"}]" tf_http_req_version=HTTP/1.1 timestamp="2025-07-11T09:00:33.945+0200" +2025-07-11T09:00:33.946+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=976157 +2025-07-11T09:00:33.946+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:33.946+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:33.947+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=976169 +2025-07-11T09:00:33.947+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:33.948+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:33.948+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/local/2.5.3/linux_amd64/terraform-provider-local_v2.5.3_x5 id=975896 +2025-07-11T09:00:33.948+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:33.949+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:33.950+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/aminueza/minio/3.3.0/linux_amd64/terraform-provider-minio_v3.3.0 id=976205 +2025-07-11T09:00:33.950+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:33.950+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.950+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.954+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T09:00:33.954+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=976238 +2025-07-11T09:00:33.954+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T09:00:33.962+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T09:00:33.962+0200" +2025-07-11T09:00:33.974+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T09:00:33.974+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin535976185 network=unix timestamp="2025-07-11T09:00:33.974+0200" +2025-07-11T09:00:33.982+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:33.984+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=976187 +2025-07-11T09:00:33.984+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:33.984+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:33.985+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=976021 +2025-07-11T09:00:33.985+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:33.986+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:33.987+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=976051 +2025-07-11T09:00:33.987+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:33.987+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:33.988+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=976035 +2025-07-11T09:00:33.988+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:33.988+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:33.988+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:33.993+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T09:00:33.993+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=976252 +2025-07-11T09:00:33.993+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T09:00:34.001+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T09:00:34.001+0200" +2025-07-11T09:00:34.013+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T09:00:34.013+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin642024314 network=unix timestamp="2025-07-11T09:00:34.013+0200" +2025-07-11T09:00:34.021+0200 [DEBUG] created provider logger: level=debug +2025-07-11T09:00:34.021+0200 [INFO] provider: configuring client automatic mTLS +2025-07-11T09:00:34.025+0200 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 args=[".terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2"] +2025-07-11T09:00:34.026+0200 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 pid=976266 +2025-07-11T09:00:34.026+0200 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 +2025-07-11T09:00:34.034+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: configuring server automatic mTLS: timestamp="2025-07-11T09:00:34.034+0200" +2025-07-11T09:00:34.045+0200 [DEBUG] provider: using plugin: version=6 +2025-07-11T09:00:34.045+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: plugin address: address=/tmp/plugin2996427298 network=unix timestamp="2025-07-11T09:00:34.045+0200" +2025-07-11T09:00:34.060+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=port tf_req_id=d3603cde-9f4d-94f2-2c4e-3bee994a04a4 timestamp="2025-07-11T09:00:34.060+0200" +2025-07-11T09:00:34.060+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=port tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=d3603cde-9f4d-94f2-2c4e-3bee994a04a4 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T09:00:34.060+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=d3603cde-9f4d-94f2-2c4e-3bee994a04a4 tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T09:00:34.060+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=domain @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=d3603cde-9f4d-94f2-2c4e-3bee994a04a4 timestamp="2025-07-11T09:00:34.060+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_req_id=d3603cde-9f4d-94f2-2c4e-3bee994a04a4 @module=sdk.framework tf_attribute_path=insecure timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" tf_req_id=d3603cde-9f4d-94f2-2c4e-3bee994a04a4 timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=token @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=d3603cde-9f4d-94f2-2c4e-3bee994a04a4 timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_req_id=d3603cde-9f4d-94f2-2c4e-3bee994a04a4 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=token tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=jwt_profile_file tf_req_id=d3603cde-9f4d-94f2-2c4e-3bee994a04a4 timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=d3603cde-9f4d-94f2-2c4e-3bee994a04a4 timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=jwt_profile_json tf_req_id=d3603cde-9f4d-94f2-2c4e-3bee994a04a4 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=d3603cde-9f4d-94f2-2c4e-3bee994a04a4 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=jwt_profile_json timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=6d1b22bc-53bc-ecdd-a28d-4cefa1dfe0bd @module=sdk.framework tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_req_id=6d1b22bc-53bc-ecdd-a28d-4cefa1dfe0bd @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_req_id=6d1b22bc-53bc-ecdd-a28d-4cefa1dfe0bd @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=6d1b22bc-53bc-ecdd-a28d-4cefa1dfe0bd timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_rpc=ValidateProviderConfig tf_attribute_path=jwt_profile_json tf_req_id=6d1b22bc-53bc-ecdd-a28d-4cefa1dfe0bd @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=jwt_profile_json tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=6d1b22bc-53bc-ecdd-a28d-4cefa1dfe0bd tf_rpc=ValidateProviderConfig @module=sdk.framework tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_req_id=6d1b22bc-53bc-ecdd-a28d-4cefa1dfe0bd @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=port tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_req_id=6d1b22bc-53bc-ecdd-a28d-4cefa1dfe0bd tf_rpc=ValidateProviderConfig tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=6d1b22bc-53bc-ecdd-a28d-4cefa1dfe0bd @module=sdk.framework tf_attribute_path=domain tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=domain tf_rpc=ValidateProviderConfig @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=6d1b22bc-53bc-ecdd-a28d-4cefa1dfe0bd timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=insecure tf_req_id=6d1b22bc-53bc-ecdd-a28d-4cefa1dfe0bd @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_mux_provider="*proto6server.Server" @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=insecure tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=6d1b22bc-53bc-ecdd-a28d-4cefa1dfe0bd tf_rpc=ValidateProviderConfig timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Provider Configure: @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=a67e45b4-312c-a5de-7db3-882a9c424e4e tf_rpc=ConfigureProvider tf_mux_provider="*proto6server.Server" @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:12 timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Provider Configure: tf_mux_provider="*proto6server.Server" @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:20 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=a67e45b4-312c-a5de-7db3-882a9c424e4e tf_rpc=ConfigureProvider @module=sdk.framework timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Provider Configure: tf_mux_provider="*proto6server.Server" tf_req_id=f7ace637-0ca1-9959-bbc2-2fc6780c7987 tf_rpc=ConfigureProvider @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:12 @module=sdk.framework tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.061+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Provider Configure: @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:20 tf_req_id=f7ace637-0ca1-9959-bbc2-2fc6780c7987 tf_rpc=ConfigureProvider timestamp="2025-07-11T09:00:34.061+0200" +2025-07-11T09:00:34.062+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:34.062+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=port tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_req_id=1d8b6378-c901-fb9a-2d2e-70b52cdc3323 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T09:00:34.062+0200" +2025-07-11T09:00:34.062+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=port tf_rpc=ValidateProviderConfig tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=1d8b6378-c901-fb9a-2d2e-70b52cdc3323 timestamp="2025-07-11T09:00:34.062+0200" +2025-07-11T09:00:34.062+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_attribute_path=domain tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=1d8b6378-c901-fb9a-2d2e-70b52cdc3323 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_mux_provider="*proto6server.Server" timestamp="2025-07-11T09:00:34.062+0200" +2025-07-11T09:00:34.062+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=domain tf_mux_provider="*proto6server.Server" tf_req_id=1d8b6378-c901-fb9a-2d2e-70b52cdc3323 timestamp="2025-07-11T09:00:34.062+0200" +2025-07-11T09:00:34.062+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_rpc=ValidateProviderConfig @module=sdk.framework tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 tf_req_id=1d8b6378-c901-fb9a-2d2e-70b52cdc3323 timestamp="2025-07-11T09:00:34.062+0200" +2025-07-11T09:00:34.062+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=insecure tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=1d8b6378-c901-fb9a-2d2e-70b52cdc3323 tf_rpc=ValidateProviderConfig @module=sdk.framework timestamp="2025-07-11T09:00:34.062+0200" +2025-07-11T09:00:34.062+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_req_id=1d8b6378-c901-fb9a-2d2e-70b52cdc3323 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=token tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig tf_provider_addr=registry.terraform.io/zitadel/zitadel timestamp="2025-07-11T09:00:34.062+0200" +2025-07-11T09:00:34.062+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: tf_attribute_path=token tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=1d8b6378-c901-fb9a-2d2e-70b52cdc3323 tf_mux_provider="*proto6server.Server" tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework timestamp="2025-07-11T09:00:34.062+0200" +2025-07-11T09:00:34.062+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_rpc=ValidateProviderConfig tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=1d8b6378-c901-fb9a-2d2e-70b52cdc3323 timestamp="2025-07-11T09:00:34.062+0200" +2025-07-11T09:00:34.062+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=jwt_profile_file tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=1d8b6378-c901-fb9a-2d2e-70b52cdc3323 @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T09:00:34.062+0200" +2025-07-11T09:00:34.062+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Type Validate: tf_mux_provider="*proto6server.Server" tf_attribute_path=jwt_profile_json tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=1d8b6378-c901-fb9a-2d2e-70b52cdc3323 tf_rpc=ValidateProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework timestamp="2025-07-11T09:00:34.062+0200" +2025-07-11T09:00:34.063+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=jwt_profile_json tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=1d8b6378-c901-fb9a-2d2e-70b52cdc3323 tf_rpc=ValidateProviderConfig timestamp="2025-07-11T09:00:34.062+0200" +2025-07-11T09:00:34.063+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=976266 +2025-07-11T09:00:34.063+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:34.064+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Calling provider defined Provider Configure: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:12 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_rpc=ConfigureProvider @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_req_id=7d3c59c1-ccc4-5ea4-f17a-dc71e3af0454 timestamp="2025-07-11T09:00:34.064+0200" +2025-07-11T09:00:34.064+0200 [DEBUG] provider.terraform-provider-zitadel_v2.0.2: Called provider defined Provider Configure: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_configureprovider.go:20 @module=sdk.framework tf_mux_provider="*proto6server.Server" tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_req_id=7d3c59c1-ccc4-5ea4-f17a-dc71e3af0454 tf_rpc=ConfigureProvider timestamp="2025-07-11T09:00:34.064+0200" +2025-07-11T09:00:34.065+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:34.066+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/external/2.3.5/linux_amd64/terraform-provider-external_v2.3.5_x5 id=975888 +2025-07-11T09:00:34.066+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:34.066+0200 [INFO] Starting apply for module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default +2025-07-11T09:00:34.066+0200 [DEBUG] module.zitadel-argocd.module.zitadel_project_user_grant.zitadel_user_grant.default: applying the planned Create change +2025-07-11T09:00:34.067+0200 [INFO] provider.terraform-provider-zitadel_v2.0.2: started create: tf_req_id=270ca010-2baa-b4e3-12ac-c9b7c1e06c6c @caller=github.com/zitadel/terraform-provider-zitadel/v2/zitadel/user_grant/funcs.go:62 tf_provider_addr=registry.terraform.io/zitadel/zitadel tf_resource_type=zitadel_user_grant tf_rpc=ApplyResourceChange @module=zitadel tf_mux_provider=tf5to6server.v5tov6Server timestamp="2025-07-11T09:00:34.067+0200" +2025-07-11T09:00:34.070+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:34.072+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=976140 +2025-07-11T09:00:34.072+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:34.072+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:34.073+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=976252 +2025-07-11T09:00:34.073+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:34.110+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_res_version=HTTP/2.0 tf_http_trans_id=5924b329-57a4-2d29-7b68-c1a198705d79 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Content-Type=application/json X-Api-Cattle-Auth=true X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"monitoring","uid":"4e752f54-5f50-4c50-9f26-9b0bc0d1b794","resourceVersion":"109682206","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"monitoring"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:58:48Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + Audit-Id=20824672-7b4d-4a41-8725-83ed51b4f68d Content-Length=794 Date="Fri, 11 Jul 2025 07:00:34 GMT" @module=kubernetes.Kubernetes tf_http_res_status_reason="200 OK" Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response tf_http_res_status_code=200 timestamp="2025-07-11T09:00:34.110+0200" +2025-07-11T09:00:34.110+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:34 [INFO] Submitted updated namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"monitoring", GenerateName:"", Namespace:"", SelfLink:"", UID:"4e752f54-5f50-4c50-9f26-9b0bc0d1b794", ResourceVersion:"109682206", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"monitoring"}, Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000d6f8d8), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 58, 48, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000d6f908), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T09:00:34.110+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:34 [INFO] Checking namespace monitoring +2025-07-11T09:00:34.110+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" tf_http_req_body="" tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring @module=kubernetes.Kubernetes Accept="application/json, */*" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_req_version=HTTP/1.1 Accept-Encoding=gzip Host=rancher.bridge.fourlights.dev tf_http_op_type=request tf_http_trans_id=f96adb08-781d-d579-f28e-cfc0df722ad0 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 User-Agent="HashiCorp/1.0 Terraform/1.12.1" timestamp="2025-07-11T09:00:34.110+0200" +2025-07-11T09:00:34.163+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: Date="Fri, 11 Jul 2025 07:00:34 GMT" tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] Content-Length=1113 X-Api-Cattle-Auth=true X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 tf_http_op_type=response tf_http_trans_id=f96adb08-781d-d579-f28e-cfc0df722ad0 X-Content-Type-Options=nosniff X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"monitoring","uid":"4e752f54-5f50-4c50-9f26-9b0bc0d1b794","resourceVersion":"109682209","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"monitoring"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T07:00:35Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T07:00:34Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + tf_http_res_status_code=200 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=2e989df0-0654-416e-8fc4-4db5eb16e4a9 Content-Type=application/json timestamp="2025-07-11T09:00:34.163+0200" +2025-07-11T09:00:34.163+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:34 [INFO] Namespace monitoring exists +2025-07-11T09:00:34.164+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:34 [INFO] Reading namespace monitoring +2025-07-11T09:00:34.164+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Sending HTTP Request: tf_http_trans_id=49e9fa2f-1580-c5ef-e625-a3088c913ec7 @module=kubernetes.Kubernetes tf_http_op_type=request tf_http_req_version=HTTP/1.1 @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 tf_http_req_method=GET tf_http_req_uri=/k8s/clusters/c-m-fh8pgmtb/api/v1/namespaces/monitoring Accept-Encoding=gzip Authorization="Bearer kubeconfig-user-9slw5k78ws:dvh4q8rn5d6w9tqc5vpl6mnnr8p9b7pxzjn9n6sxmxqqnhpqc54dzz" Host=rancher.bridge.fourlights.dev User-Agent="HashiCorp/1.0 Terraform/1.12.1" new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." Accept="application/json, */*" tf_http_req_body="" timestamp="2025-07-11T09:00:34.164+0200" +2025-07-11T09:00:34.207+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: Received HTTP Response: tf_http_res_status_reason="200 OK" tf_http_res_version=HTTP/2.0 X-Api-Cattle-Auth=true @caller=github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160 Audit-Id=16a4c42e-59c7-4754-b7bf-9b8c3844cde9 Content-Length=1231 Content-Type=application/json tf_http_res_status_code=200 tf_http_trans_id=49e9fa2f-1580-c5ef-e625-a3088c913ec7 X-Kubernetes-Pf-Flowschema-Uid=460c7495-3ce6-429e-8fa8-1b3acec16349 + tf_http_res_body= + | {"kind":"Namespace","apiVersion":"v1","metadata":{"name":"monitoring","uid":"4e752f54-5f50-4c50-9f26-9b0bc0d1b794","resourceVersion":"109682210","creationTimestamp":"2025-07-11T06:29:15Z","labels":{"kubernetes.io/metadata.name":"monitoring"},"annotations":{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T07:00:35Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T07:00:35Z\"}]}","lifecycle.cattle.io/create.namespace-auth":"true"},"finalizers":["controller.cattle.io/namespace-auth"],"managedFields":[{"manager":"HashiCorp","operation":"Update","apiVersion":"v1","time":"2025-07-11T06:29:15Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:labels":{".":{},"f:kubernetes.io/metadata.name":{}}}}},{"manager":"rancher","operation":"Update","apiVersion":"v1","time":"2025-07-11T07:00:34Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:cattle.io/status":{},"f:lifecycle.cattle.io/create.namespace-auth":{}},"f:finalizers":{".":{},"v:\"controller.cattle.io/namespace-auth\"":{}}}}}]},"spec":{"finalizers":["kubernetes"]},"status":{"phase":"Active"}} + X-Kubernetes-Pf-Prioritylevel-Uid=fed038e6-ad6b-4cb7-b030-69721b411f37 @module=kubernetes.Kubernetes Cache-Control=["no-cache, no-store, must-revalidate", "no-cache, private"] new_logger_warning="This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used." tf_http_op_type=response Date="Fri, 11 Jul 2025 07:00:34 GMT" X-Content-Type-Options=nosniff timestamp="2025-07-11T09:00:34.207+0200" +2025-07-11T09:00:34.207+0200 [DEBUG] provider.terraform-provider-kubernetes_v2.31.0_x5: 2025/07/11 09:00:34 [INFO] Received namespace: &v1.Namespace{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"monitoring", GenerateName:"", Namespace:"", SelfLink:"", UID:"4e752f54-5f50-4c50-9f26-9b0bc0d1b794", ResourceVersion:"109682210", Generation:0, CreationTimestamp:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"kubernetes.io/metadata.name":"monitoring"}, Annotations:map[string]string{"cattle.io/status":"{\"Conditions\":[{\"Type\":\"ResourceQuotaInit\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T07:00:35Z\"},{\"Type\":\"InitialRolesPopulated\",\"Status\":\"True\",\"Message\":\"\",\"LastUpdateTime\":\"2025-07-11T07:00:35Z\"}]}", "lifecycle.cattle.io/create.namespace-auth":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string{"controller.cattle.io/namespace-auth"}, ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"HashiCorp", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 8, 29, 15, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000c1ac00), Subresource:""}, v1.ManagedFieldsEntry{Manager:"rancher", Operation:"Update", APIVersion:"v1", Time:time.Date(2025, time.July, 11, 9, 0, 34, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc000c1ac30), Subresource:""}}}, Spec:v1.NamespaceSpec{Finalizers:[]v1.FinalizerName{"kubernetes"}}, Status:v1.NamespaceStatus{Phase:"Active", Conditions:[]v1.NamespaceCondition(nil)}} +2025-07-11T09:00:34.207+0200 [WARN] Provider "module.monitoring.provider[\"registry.terraform.io/hashicorp/kubernetes\"]" produced an unexpected new value for module.monitoring.kubernetes_namespace.monitoring, but we are tolerating it because it is using the legacy plugin SDK. + The following problems may be the cause of any confusing errors from downstream operations: + - .metadata[0].resource_version: was cty.StringVal("109681461"), but now cty.StringVal("109682210") + - .metadata[0].annotations: new element "cattle.io/status" has appeared + - .metadata[0].annotations: new element "lifecycle.cattle.io/create.namespace-auth" has appeared +2025-07-11T09:00:34.208+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T09:00:34.208+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:34.210+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.31.0/linux_amd64/terraform-provider-kubernetes_v2.31.0_x5 id=976003 +2025-07-11T09:00:34.210+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:38.003+0200 [DEBUG] State storage *remote.State declined to persist a state snapshot +2025-07-11T09:00:38.004+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:00:38.006+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/zitadel/zitadel/2.0.2/linux_amd64/terraform-provider-zitadel_v2.0.2 id=976238 +2025-07-11T09:00:38.006+0200 [DEBUG] provider: plugin exited +2025-07-11T09:00:38.006+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T09:00:38.007+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000000b60 Settings:0xc0006e2360 RegistryClient:0xc00078bd80 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=275f9429-94cd-98d4-3779-13b80e792ddd tf_resource_type=helm_release tf_rpc=ValidateResourceConfig timestamp="2025-07-11T09:00:38.007+0200" +2025-07-11T09:00:38.010+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000000b60 Settings:0xc0006e2360 RegistryClient:0xc00078bd80 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_req_id=8f1b190f-5241-f7d7-7463-dadad3c802b8 tf_resource_type=helm_release timestamp="2025-07-11T09:00:38.010+0200" +2025-07-11T09:00:38.011+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Marking Computed attributes with null configuration values as unknown (known after apply) in the plan to prevent potential Terraform errors: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=8f1b190f-5241-f7d7-7463-dadad3c802b8 tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:250 @module=sdk.framework timestamp="2025-07-11T09:00:38.011+0200" +2025-07-11T09:00:38.011+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_req_id=8f1b190f-5241-f7d7-7463-dadad3c802b8 tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_attribute_path="AttributeName(\"metadata\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T09:00:38.011+0200" +2025-07-11T09:00:38.011+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @module=sdk.framework tf_attribute_path="AttributeName(\"id\")" tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8f1b190f-5241-f7d7-7463-dadad3c802b8 tf_resource_type=helm_release timestamp="2025-07-11T09:00:38.011+0200" +2025-07-11T09:00:38.011+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: tf_attribute_path="AttributeName(\"manifest\")" tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8f1b190f-5241-f7d7-7463-dadad3c802b8 tf_resource_type=helm_release timestamp="2025-07-11T09:00:38.011+0200" +2025-07-11T09:00:38.011+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_attribute_path="AttributeName(\"status\")" tf_req_id=8f1b190f-5241-f7d7-7463-dadad3c802b8 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T09:00:38.011+0200" +2025-07-11T09:00:38.014+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"argo-cd" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID: Keyring: Lint:false Manifest: MaxHistory:0 Metadata: Name:"argocd" Namespace:"argocd" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive:[{"name":"config.secret.argocdServerAdminPassword","type":,"value":"3w=tr!042qbxD7d?22Ayj(WFW6qRi@N)yRUJ8KQ:eEDAStFZ"}] SkipCrds:false Status: Timeout:300 Values:[""] Verify:false Version:"7.0.20" Wait:true WaitForJobs:true}: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange tf_req_id=8f1b190f-5241-f7d7-7463-dadad3c802b8 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 @module=helm timestamp="2025-07-11T09:00:38.014+0200" +2025-07-11T09:00:38.014+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: : tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8f1b190f-5241-f7d7-7463-dadad3c802b8 tf_resource_type=helm_release timestamp="2025-07-11T09:00:38.014+0200" +2025-07-11T09:00:38.014+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Start: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8f1b190f-5241-f7d7-7463-dadad3c802b8 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 timestamp="2025-07-11T09:00:38.014+0200" +2025-07-11T09:00:38.014+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @module=helm tf_rpc=PlanResourceChange KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8f1b190f-5241-f7d7-7463-dadad3c802b8 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 timestamp="2025-07-11T09:00:38.014+0200" +2025-07-11T09:00:38.014+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: configPaths=[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8f1b190f-5241-f7d7-7463-dadad3c802b8 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm tf_rpc=PlanResourceChange timestamp="2025-07-11T09:00:38.014+0200" +2025-07-11T09:00:38.014+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_req_id=8f1b190f-5241-f7d7-7463-dadad3c802b8 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:00:38.014+0200" +2025-07-11T09:00:38.015+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Initial Values: Name=argocd, Namespace=argocd, Repository=https://charts.bitnami.com/bitnami, Repository_Username=, Repository_Password=, Chart=argo-cd: tf_req_id=8f1b190f-5241-f7d7-7463-dadad3c802b8 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 @module=helm timestamp="2025-07-11T09:00:38.014+0200" +2025-07-11T09:00:38.015+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Metadata has changes, setting to unknown: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1799 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8f1b190f-5241-f7d7-7463-dadad3c802b8 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T09:00:38.014+0200" +2025-07-11T09:00:38.015+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc0006e2480 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: tf_rpc=PlanResourceChange @module=helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8f1b190f-5241-f7d7-7463-dadad3c802b8 timestamp="2025-07-11T09:00:38.014+0200" +2025-07-11T09:00:50.480+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Got chart: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8f1b190f-5241-f7d7-7463-dadad3c802b8 tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 tf_resource_type=helm_release timestamp="2025-07-11T09:00:50.480+0200" +2025-07-11T09:00:50.480+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: tf_req_id=8f1b190f-5241-f7d7-7463-dadad3c802b8 tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 timestamp="2025-07-11T09:00:50.480+0200" +2025-07-11T09:00:50.480+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Release validated: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8f1b190f-5241-f7d7-7463-dadad3c802b8 tf_rpc=PlanResourceChange @module=helm timestamp="2025-07-11T09:00:50.480+0200" +2025-07-11T09:00:50.480+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: argocd] Done: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=8f1b190f-5241-f7d7-7463-dadad3c802b8 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 timestamp="2025-07-11T09:00:50.480+0200" +2025-07-11T09:00:50.481+0200 [INFO] Starting apply for module.argocd.helm_release.argocd +2025-07-11T09:00:50.481+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T09:00:50.481+0200 [DEBUG] module.argocd.helm_release.argocd: applying the planned Create change +2025-07-11T09:00:50.483+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc000000b60 Settings:0xc0006e2360 RegistryClient:0xc00078bd80 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:00:50.483+0200" +2025-07-11T09:00:50.483+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on Create: {Atomic:false Chart:"argo-cd" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID: Keyring: Lint:false Manifest: MaxHistory:0 Metadata: Name:"argocd" Namespace:"argocd" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://charts.bitnami.com/bitnami" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive:[{"name":"config.secret.argocdServerAdminPassword","type":,"value":"3w=tr!042qbxD7d?22Ayj(WFW6qRi@N)yRUJ8KQ:eEDAStFZ"}] SkipCrds:false Status:"deployed" Timeout:300 Values:[""] Verify:false Version:"7.0.20" Wait:true WaitForJobs:true}: tf_rpc=ApplyResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:724 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release timestamp="2025-07-11T09:00:50.483+0200" +2025-07-11T09:00:50.483+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 KubernetesData=map[] timestamp="2025-07-11T09:00:50.483+0200" +2025-07-11T09:00:50.483+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm configPaths=[] tf_resource_type=helm_release tf_rpc=ApplyResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 timestamp="2025-07-11T09:00:50.483+0200" +2025-07-11T09:00:50.483+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @module=helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:00:50.483+0200" +2025-07-11T09:00:50.484+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc0006e2480 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:00:50.483+0200" +2025-07-11T09:00:55.092+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:00:55.092+0200" +2025-07-11T09:00:55.092+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Processing Set_list attribute: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1336 timestamp="2025-07-11T09:00:55.092+0200" +2025-07-11T09:00:55.092+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Processing Set_Sensitive attribute: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1358 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:00:55.092+0200" +2025-07-11T09:00:55.092+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Processing Set_Sensitive element at index 0: {"config.secret.argocdServerAdminPassword" "3w=tr!042qbxD7d?22Ayj(WFW6qRi@N)yRUJ8KQ:eEDAStFZ"}: tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1368 @module=helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_rpc=ApplyResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:00:55.092+0200" +2025-07-11T09:00:55.092+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Final merged values: map[config:map[secret:map[argocdServerAdminPassword:3w=tr!042qbxD7d?22Ayj(WFW6qRi@N)yRUJ8KQ:eEDAStFZ]]]: tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1378 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:00:55.092+0200" +2025-07-11T09:00:55.092+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: ---[ values.yaml ]----------------------------------- +config: + secret: + argocdServerAdminPassword: (sensitive value) + +: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1457 tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 timestamp="2025-07-11T09:00:55.092+0200" +2025-07-11T09:02:34.843+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"2.12.6","chart":"argo-cd","first_deployed":1752217258,"last_deployed":1752217258,"name":"argocd","namespace":"argocd","notes":"CHART NAME: redis\nCHART VERSION: 20.2.1\nAPP VERSION: 7.4.1\n\n** Please be patient while the chart is being deployed **\n\nRedis® can be accessed via port 6379 on the following DNS name from within your cluster:\n\n argocd-redis-master.argocd.svc.cluster.local\n\n\n\nTo get your password run:\n\n export REDIS_PASSWORD=$(kubectl get secret --namespace argocd argocd-redis -o jsonpath=\"{.data.redis-password}\" | base64 -d)\n\nTo connect to your Redis® server:\n\n1. Run a Redis® pod that you can use as a client:\n\n kubectl run --namespace argocd redis-client --restart='Never' --env REDIS_PASSWORD=$REDIS_PASSWORD --image docker.io/bitnami/redis:7.4.1-debian-12-r0 --command -- sleep infinity\n\n Use the following command to attach to the pod:\n\n kubectl exec --tty -i redis-client \\\n --namespace argocd -- bash\n\n2. Connect using the Redis® CLI:\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h argocd-redis-master\n\nTo connect to your database from outside the cluster execute the following commands:\n\n kubectl port-forward --namespace argocd svc/argocd-redis-master 6379:6379 &\n REDISCLI_AUTH=\"$REDIS_PASSWORD\" redis-cli -h 127.0.0.1 -p 6379\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - replica.resources\n - master.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\nCHART NAME: argo-cd\nCHART VERSION: 7.0.20\nAPP VERSION: 2.12.6\n\n** Please be patient while the chart is being deployed **\n\n1. Access your Argo CD installation:\n Execute the following commands:\n\n kubectl port-forward --namespace argocd svc/argocd-argo-cd-server 8080:80 &\n export URL=http://127.0.0.1:8080/\n echo \"Argo CD URL: http://127.0.0.1:8080/\"\n\n2. Execute the following commands to obtain the Argo CD credentials:\n\n echo \"Username: \\\"admin\\\"\"\n echo \"Password: $(kubectl -n argocd get secret argocd-secret -o jsonpath=\"{.data.clearPassword}\" | base64 -d)\"\n\nWARNING: There are \"resources\" sections in the chart not set. Using \"resourcesPreset\" is not recommended for production. For production installations, please set the following values according to your workload needs:\n - controller.resources\n - repoServer.resources\n - server.resources\n+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/","revision":1,"values":"{\"config\":{\"secret\":{\"argocdServerAdminPassword\":\"(sensitive value)\"}}}","version":"7.0.20"}: tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_rpc=ApplyResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T09:02:34.843+0200" +2025-07-11T09:02:34.843+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ApplyResourceChange @module=sdk.framework tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=reset_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 timestamp="2025-07-11T09:02:34.843+0200" +2025-07-11T09:02:34.843+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_attribute_path=cleanup_on_fail timestamp="2025-07-11T09:02:34.843+0200" +2025-07-11T09:02:34.843+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=pass_credentials timestamp="2025-07-11T09:02:34.843+0200" +2025-07-11T09:02:34.843+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=create_namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:02:34.843+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ApplyResourceChange tf_attribute_path=timeout tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=chart timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=values[0] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ApplyResourceChange tf_attribute_path=values tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=wait_for_jobs tf_resource_type=helm_release tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=reuse_values tf_resource_type=helm_release tf_rpc=ApplyResourceChange @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release tf_rpc=ApplyResourceChange tf_attribute_path=disable_webhooks tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=atomic tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release @module=sdk.framework tf_attribute_path=repository tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=replace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ApplyResourceChange tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release tf_rpc=ApplyResourceChange @module=sdk.framework @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=wait timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=namespace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release @module=sdk.framework tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=name tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=disable_crd_hooks @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=lint tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_rpc=ApplyResourceChange tf_resource_type=helm_release timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=render_subchart_notes tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ApplyResourceChange @module=sdk.framework tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=verify tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @module=sdk.framework timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=force_update tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release tf_rpc=ApplyResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_attribute_path=max_history tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=status tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm @module=sdk.framework tf_attribute_path=disable_openapi_validation tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=dependency_update tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=skip_crds tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=recreate_pods tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=version tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=set_sensitive[0].value tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ApplyResourceChange tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=set_sensitive[0].name tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_rpc=ApplyResourceChange @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_attribute_path=set_sensitive[0] tf_resource_type=helm_release tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.844+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_req_id=0e76e03d-e4fc-4ee3-de52-95cf4f439602 tf_resource_type=helm_release tf_rpc=ApplyResourceChange tf_attribute_path=set_sensitive tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:02:34.844+0200" +2025-07-11T09:02:34.846+0200 [DEBUG] states/remote: state read serial is: 45; serial is: 45 +2025-07-11T09:02:34.846+0200 [DEBUG] states/remote: state read lineage is: 8bb1bb78-c340-a09d-d7d3-bfdfbe0a740e; lineage is: 8bb1bb78-c340-a09d-d7d3-bfdfbe0a740e +2025-07-11T09:02:34.856+0200 [INFO] backend-s3: Uploading remote state: tf_backend.operation=Put tf_backend.req_id=f92a17dc-afe7-b00d-25b3-d85f73b38707 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T09:02:34.856+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=PutObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Put tf_backend.req_id=f92a17dc-afe7-b00d-25b3-d85f73b38707 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.method=PUT net.peer.name=storage.bridge.fourlights.dev http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 ft/s3-transfer m/G,Z" http.request_content_length=311907 http.request.header.x_amz_content_sha256=STREAMING-UNSIGNED-PAYLOAD-TRAILER http.request.header.x_amz_decoded_content_length=311825 http.request.body="[Redacted: 304.6 KB (311,907 bytes), Type: application/json]" http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate?x-id=PutObject http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;content-encoding;content-length;content-type;host;x-amz-content-sha256;x-amz-date;x-amz-decoded-content-length;x-amz-sdk-checksum-algorithm;x-amz-trailer, Signature=*****" http.request.header.accept_encoding=identity http.request.header.amz_sdk_invocation_id=f936785a-6919-432f-a154-fdd959113b4f http.request.header.x_amz_sdk_checksum_algorithm=SHA256 http.request.header.amz_sdk_request="attempt=1; max=5" http.request.header.content_type=application/json http.request.header.content_encoding=aws-chunked http.request.header.x_amz_trailer=x-amz-checksum-sha256 http.request.header.x_amz_date=20250711T070234Z +2025-07-11T09:02:35.631+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=PutObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Put tf_backend.req_id=f92a17dc-afe7-b00d-25b3-d85f73b38707 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.server=MinIO http.response.body="" http.status_code=200 http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.x_amz_checksum_sha256="ifh5ueeLuu1LE2C6YKQo1FLLleJWU9GoYKppFEt+ui4=" http.response.header.x_xss_protection="1; mode=block" http.response.header.x_content_type_options=nosniff http.duration=774 http.response.header.x_ratelimit_limit=57 http.response.header.date="Fri, 11 Jul 2025 07:02:35 GMT" http.response.header.x_ratelimit_remaining=57 http.response.header.etag="\"63abac05140f206982e4ca8897b64e98\"" http.response.header.x_amz_request_id=1851206698C72ABF http.response.header.accept_ranges=bytes http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" +2025-07-11T09:02:35.631+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:02:35.637+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=976069 +2025-07-11T09:02:35.637+0200 [DEBUG] provider: plugin exited +2025-07-11T09:02:35.637+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T09:02:35.639+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc00070e380 Settings:0xc000724240 RegistryClient:0xc000073a80 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_req_id=99ca593e-a416-e8f4-a3a6-0a33d18c9aef tf_rpc=ValidateResourceConfig timestamp="2025-07-11T09:02:35.639+0200" +2025-07-11T09:02:35.640+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc00070e380 Settings:0xc000724240 RegistryClient:0xc000073a80 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 tf_req_id=7b8508bf-1118-add9-d888-350943191ec1 tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:02:35.640+0200" +2025-07-11T09:02:35.642+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Marking Computed attributes with null configuration values as unknown (known after apply) in the plan to prevent potential Terraform errors: tf_req_id=7b8508bf-1118-add9-d888-350943191ec1 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:250 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T09:02:35.642+0200" +2025-07-11T09:02:35.642+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=7b8508bf-1118-add9-d888-350943191ec1 tf_rpc=PlanResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_attribute_path="AttributeName(\"manifest\")" tf_resource_type=helm_release timestamp="2025-07-11T09:02:35.642+0200" +2025-07-11T09:02:35.642+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_attribute_path="AttributeName(\"status\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=7b8508bf-1118-add9-d888-350943191ec1 tf_rpc=PlanResourceChange timestamp="2025-07-11T09:02:35.642+0200" +2025-07-11T09:02:35.642+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 tf_attribute_path="AttributeName(\"id\")" tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @module=sdk.framework tf_req_id=7b8508bf-1118-add9-d888-350943191ec1 tf_resource_type=helm_release timestamp="2025-07-11T09:02:35.642+0200" +2025-07-11T09:02:35.642+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: marking computed attribute that is null in the config as unknown: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwserver/server_planresourcechange.go:538 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_attribute_path="AttributeName(\"metadata\")" tf_req_id=7b8508bf-1118-add9-d888-350943191ec1 timestamp="2025-07-11T09:02:35.642+0200" +2025-07-11T09:02:35.645+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on ModifyPlan: {Atomic:false Chart:"kube-prometheus-stack" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID: Keyring: Lint:false Manifest: MaxHistory:0 Metadata: Name:"monitoring" Namespace:"monitoring" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://prometheus-community.github.io/helm-charts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status: Timeout:300 Values:["additionalPrometheusRulesMap:\n custom-app-rules:\n groups:\n - name: aspnetcore\n interval: 30s\n rules:\n - alert: HighRequestLatency\n expr: histogram_quantile(0.95, http_request_duration_seconds_bucket) > 0.5\n for: 5m\n labels:\n severity: warning\n annotations:\n summary: \"High request latency on {{ $labels.instance }}\"\n description: \"95th percentile latency is above 500ms (current value: {{ $value }}s)\"\n - alert: HighErrorRate\n expr: 'rate(http_requests_total{status=~\"5..\"}[5m]) > 0.05'\n for: 5m\n labels:\n severity: critical\n annotations:\n summary: \"High error rate on {{ $labels.instance }}\"\n description: \"Error rate is above 5% (current value: {{ $value }})\"\n \nprometheus:\n prometheusSpec:\n retention: 24h\n retentionSize: 10GB\n\n resources:\n requests:\n memory: 200Mi\n cpu: 100m\n limits:\n memory: 500Mi\n cpu: 500m\n\n # Remote write to VictoriaMetrics\n remoteWrite:\n - url: https://metrics.binarysunset.dev/api/v1/write\n basicAuth:\n username:\n name: prometheus-remote-write-auth\n key: username\n password:\n name: prometheus-remote-write-auth\n key: password\n writeRelabelConfigs:\n - sourceLabels: [\"__name__\"]\n regex: \"(up|kube_.*|container_.*|node_.*|http_.*|process_.*)\"\n action: keep\n\n # Remote read from VictoriaMetrics for old data\n remoteRead:\n - url: https://metrics.binarysunset.dev/api/v1/read\n basicAuth:\n username:\n name: prometheus-remote-write-auth\n key: username\n password:\n name: prometheus-remote-write-auth\n key: password\n readRecent: false # Only read data older than local retention\n\nalertmanager:\n enabled: true\n alertmanagerSpec:\n replicas: 1\n resources:\n requests:\n memory: 50Mi\n cpu: 10m\n limits:\n memory: 150Mi\n cpu: 100m\n retention: 24h\n\ngrafana:\n resources:\n requests:\n memory: 100Mi\n cpu: 50m\n limits:\n memory: 300Mi\n cpu: 200m\n persistence:\n enabled: true\n size: 1Gi\n adminUser: admin\n adminPassword: acf0vJ0XUVECnChUTU1u6WCBUeXXJVKB2qwpsWQH\n\nkubeStateMetrics:\n resources:\n requests:\n memory: 50Mi\n cpu: 10m\n limits:\n memory: 150Mi\n cpu: 100m\n\nnodeExporter:\n resources:\n requests:\n memory: 30Mi\n cpu: 10m\n limits:\n memory: 100Mi\n cpu: 100m\n\nprometheusOperator:\n resources:\n requests:\n memory: 100Mi\n cpu: 50m\n limits:\n memory: 300Mi\n cpu: 200m\n\ndefaultRules:\n create: true\n rules:\n alertmanager: true\n etcd: false\n general: true\n k8s: true\n kubernetesApps: true\n kubernetesResources: true\n kubernetesStorage: true\n kubernetesSystem: true\n node: true\n prometheus: true"] Verify:false Version:"75.9.0" Wait:true WaitForJobs:false}: tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1767 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=7b8508bf-1118-add9-d888-350943191ec1 timestamp="2025-07-11T09:02:35.645+0200" +2025-07-11T09:02:35.645+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Actual state on ModifyPlan: : @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1768 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange @module=helm tf_req_id=7b8508bf-1118-add9-d888-350943191ec1 timestamp="2025-07-11T09:02:35.645+0200" +2025-07-11T09:02:35.645+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Start: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=7b8508bf-1118-add9-d888-350943191ec1 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1771 timestamp="2025-07-11T09:02:35.645+0200" +2025-07-11T09:02:35.645+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 @module=helm KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=7b8508bf-1118-add9-d888-350943191ec1 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T09:02:35.645+0200" +2025-07-11T09:02:35.646+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: configPaths=[] tf_req_id=7b8508bf-1118-add9-d888-350943191ec1 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T09:02:35.646+0200" +2025-07-11T09:02:35.646+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=7b8508bf-1118-add9-d888-350943191ec1 tf_rpc=PlanResourceChange timestamp="2025-07-11T09:02:35.646+0200" +2025-07-11T09:02:35.646+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Initial Values: Name=monitoring, Namespace=monitoring, Repository=https://prometheus-community.github.io/helm-charts, Repository_Username=, Repository_Password=, Chart=kube-prometheus-stack: tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_req_id=7b8508bf-1118-add9-d888-350943191ec1 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1782 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:02:35.646+0200" +2025-07-11T09:02:35.646+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Metadata has changes, setting to unknown: tf_req_id=7b8508bf-1118-add9-d888-350943191ec1 tf_resource_type=helm_release tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1799 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:02:35.646+0200" +2025-07-11T09:02:35.646+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc000724360 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: tf_req_id=7b8508bf-1118-add9-d888-350943191ec1 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 @module=helm tf_resource_type=helm_release tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:02:35.646+0200" +2025-07-11T09:02:37.342+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Got chart: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=7b8508bf-1118-add9-d888-350943191ec1 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1830 tf_resource_type=helm_release tf_rpc=PlanResourceChange timestamp="2025-07-11T09:02:37.342+0200" +2025-07-11T09:02:37.342+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 tf_req_id=7b8508bf-1118-add9-d888-350943191ec1 tf_resource_type=helm_release @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange timestamp="2025-07-11T09:02:37.342+0200" +2025-07-11T09:02:37.342+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Release validated: tf_req_id=7b8508bf-1118-add9-d888-350943191ec1 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=PlanResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1851 @module=helm timestamp="2025-07-11T09:02:37.342+0200" +2025-07-11T09:02:37.342+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: [resourceDiff: monitoring] Done: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:2023 @module=helm tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=7b8508bf-1118-add9-d888-350943191ec1 tf_resource_type=helm_release timestamp="2025-07-11T09:02:37.342+0200" +2025-07-11T09:02:37.343+0200 [INFO] Starting apply for module.monitoring.helm_release.kube_prometheus_stack +2025-07-11T09:02:37.343+0200 [DEBUG] skipping FixUpBlockAttrs +2025-07-11T09:02:37.344+0200 [DEBUG] module.monitoring.helm_release.kube_prometheus_stack: applying the planned Create change +2025-07-11T09:02:37.345+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Configured meta: &{providerData: Data:0xc00070e380 Settings:0xc000724240 RegistryClient:0xc000073a80 HelmDriver: Experiments:map[manifest:false] Mutex:{_:{} mu:{state:0 sema:0}}}: tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:670 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:02:37.345+0200" +2025-07-11T09:02:37.346+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Plan state on Create: {Atomic:false Chart:"kube-prometheus-stack" CleanupOnFail:false CreateNamespace:false DependencyUpdate:false Description: Devel: DisableCrdHooks:false DisableOpenapiValidation:false DisableWebhooks:false ForceUpdate:false ID: Keyring: Lint:false Manifest: MaxHistory:0 Metadata: Name:"monitoring" Namespace:"monitoring" PassCredentials:false PostRender: RecreatePods:false Replace:false RenderSubchartNotes:true Repository:"https://prometheus-community.github.io/helm-charts" RepositoryCaFile: RepositoryCertFile: RepositoryKeyFile: RepositoryPassword: RepositoryUsername: ResetValues:false ReuseValues:false SetWO: SetWORevision: Set: SetList: SetSensitive: SkipCrds:false Status:"deployed" Timeout:300 Values:["additionalPrometheusRulesMap:\n custom-app-rules:\n groups:\n - name: aspnetcore\n interval: 30s\n rules:\n - alert: HighRequestLatency\n expr: histogram_quantile(0.95, http_request_duration_seconds_bucket) > 0.5\n for: 5m\n labels:\n severity: warning\n annotations:\n summary: \"High request latency on {{ $labels.instance }}\"\n description: \"95th percentile latency is above 500ms (current value: {{ $value }}s)\"\n - alert: HighErrorRate\n expr: 'rate(http_requests_total{status=~\"5..\"}[5m]) > 0.05'\n for: 5m\n labels:\n severity: critical\n annotations:\n summary: \"High error rate on {{ $labels.instance }}\"\n description: \"Error rate is above 5% (current value: {{ $value }})\"\n \nprometheus:\n prometheusSpec:\n retention: 24h\n retentionSize: 10GB\n\n resources:\n requests:\n memory: 200Mi\n cpu: 100m\n limits:\n memory: 500Mi\n cpu: 500m\n\n # Remote write to VictoriaMetrics\n remoteWrite:\n - url: https://metrics.binarysunset.dev/api/v1/write\n basicAuth:\n username:\n name: prometheus-remote-write-auth\n key: username\n password:\n name: prometheus-remote-write-auth\n key: password\n writeRelabelConfigs:\n - sourceLabels: [\"__name__\"]\n regex: \"(up|kube_.*|container_.*|node_.*|http_.*|process_.*)\"\n action: keep\n\n # Remote read from VictoriaMetrics for old data\n remoteRead:\n - url: https://metrics.binarysunset.dev/api/v1/read\n basicAuth:\n username:\n name: prometheus-remote-write-auth\n key: username\n password:\n name: prometheus-remote-write-auth\n key: password\n readRecent: false # Only read data older than local retention\n\nalertmanager:\n enabled: true\n alertmanagerSpec:\n replicas: 1\n resources:\n requests:\n memory: 50Mi\n cpu: 10m\n limits:\n memory: 150Mi\n cpu: 100m\n retention: 24h\n\ngrafana:\n resources:\n requests:\n memory: 100Mi\n cpu: 50m\n limits:\n memory: 300Mi\n cpu: 200m\n persistence:\n enabled: true\n size: 1Gi\n adminUser: admin\n adminPassword: acf0vJ0XUVECnChUTU1u6WCBUeXXJVKB2qwpsWQH\n\nkubeStateMetrics:\n resources:\n requests:\n memory: 50Mi\n cpu: 10m\n limits:\n memory: 150Mi\n cpu: 100m\n\nnodeExporter:\n resources:\n requests:\n memory: 30Mi\n cpu: 10m\n limits:\n memory: 100Mi\n cpu: 100m\n\nprometheusOperator:\n resources:\n requests:\n memory: 100Mi\n cpu: 50m\n limits:\n memory: 300Mi\n cpu: 200m\n\ndefaultRules:\n create: true\n rules:\n alertmanager: true\n etcd: false\n general: true\n k8s: true\n kubernetesApps: true\n kubernetesResources: true\n kubernetesStorage: true\n kubernetesSystem: true\n node: true\n prometheus: true"] Verify:false Version:"75.9.0" Wait:true WaitForJobs:false}: tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:724 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 timestamp="2025-07-11T09:02:37.345+0200" +2025-07-11T09:02:37.346+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Raw Kubernetes Data before conversion: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:87 KubernetesData=map[] tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ApplyResourceChange @module=helm tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release timestamp="2025-07-11T09:02:37.346+0200" +2025-07-11T09:02:37.346+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Initial configPaths: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:116 tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 @module=helm configPaths=[] timestamp="2025-07-11T09:02:37.346+0200" +2025-07-11T09:02:37.346+0200 [INFO] provider.terraform-provider-helm_v3.0.2: Successfully initialized kubernetes config: tf_rpc=ApplyResourceChange tf_resource_type=helm_release @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go:227 @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 timestamp="2025-07-11T09:02:37.346+0200" +2025-07-11T09:02:37.346+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Helm settings: &{namespace: config:0xc000724360 KubeConfig: KubeContext: KubeToken: KubeAsUser: KubeAsGroups:[] KubeAPIServer: KubeCaFile: KubeInsecureSkipTLSVerify:false KubeTLSServerName: Debug:false RegistryConfig:/home/lamelos/.config/helm/registry/config.json RepositoryConfig:/home/lamelos/.config/helm/repositories.yaml RepositoryCache:/home/lamelos/.cache/helm/repository PluginsDirectory:/home/lamelos/.local/share/helm/plugins MaxHistory:10 BurstLimit:100 QPS:0}: @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1242 @module=helm tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_rpc=ApplyResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release timestamp="2025-07-11T09:02:37.346+0200" +2025-07-11T09:02:38.530+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Chart dependencies are up to date.: tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release tf_rpc=ApplyResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1741 @module=helm timestamp="2025-07-11T09:02:38.530+0200" +2025-07-11T09:02:38.530+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Processing Set_list attribute: tf_rpc=ApplyResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1336 @module=helm tf_resource_type=helm_release timestamp="2025-07-11T09:02:38.530+0200" +2025-07-11T09:02:38.531+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Final merged values: map[additionalPrometheusRulesMap:map[custom-app-rules:map[groups:[map[interval:30s name:aspnetcore rules:[map[alert:HighRequestLatency annotations:map[description:95th percentile latency is above 500ms (current value: {{ $value }}s) summary:High request latency on {{ $labels.instance }}] expr:histogram_quantile(0.95, http_request_duration_seconds_bucket) > 0.5 for:5m labels:map[severity:warning]] map[alert:HighErrorRate annotations:map[description:Error rate is above 5% (current value: {{ $value }}) summary:High error rate on {{ $labels.instance }}] expr:rate(http_requests_total{status=~"5.."}[5m]) > 0.05 for:5m labels:map[severity:critical]]]]]]] alertmanager:map[alertmanagerSpec:map[replicas:1 resources:map[limits:map[cpu:100m memory:150Mi] requests:map[cpu:10m memory:50Mi]] retention:24h] enabled:true] defaultRules:map[create:true rules:map[alertmanager:true etcd:false general:true k8s:true kubernetesApps:true kubernetesResources:true kubernetesStorage:true kubernetesSystem:true node:true prometheus:true]] grafana:map[adminPassword:acf0vJ0XUVECnChUTU1u6WCBUeXXJVKB2qwpsWQH adminUser:admin persistence:map[enabled:true size:1Gi] resources:map[limits:map[cpu:200m memory:300Mi] requests:map[cpu:50m memory:100Mi]]] kubeStateMetrics:map[resources:map[limits:map[cpu:100m memory:150Mi] requests:map[cpu:10m memory:50Mi]]] nodeExporter:map[resources:map[limits:map[cpu:100m memory:100Mi] requests:map[cpu:10m memory:30Mi]]] prometheus:map[prometheusSpec:map[remoteRead:[map[basicAuth:map[password:map[key:password name:prometheus-remote-write-auth] username:map[key:username name:prometheus-remote-write-auth]] readRecent:false url:https://metrics.binarysunset.dev/api/v1/read]] remoteWrite:[map[basicAuth:map[password:map[key:password name:prometheus-remote-write-auth] username:map[key:username name:prometheus-remote-write-auth]] url:https://metrics.binarysunset.dev/api/v1/write writeRelabelConfigs:[map[action:keep regex:(up|kube_.*|container_.*|node_.*|http_.*|process_.*) sourceLabels:[__name__]]]]] resources:map[limits:map[cpu:500m memory:500Mi] requests:map[cpu:100m memory:200Mi]] retention:24h retentionSize:10GB]] prometheusOperator:map[resources:map[limits:map[cpu:200m memory:300Mi] requests:map[cpu:50m memory:100Mi]]]]: tf_rpc=ApplyResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1378 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release @module=helm timestamp="2025-07-11T09:02:38.530+0200" +2025-07-11T09:02:38.531+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: ---[ values.yaml ]----------------------------------- +additionalPrometheusRulesMap: + custom-app-rules: + groups: + - interval: 30s + name: aspnetcore + rules: + - alert: HighRequestLatency + annotations: + description: '95th percentile latency is above 500ms (current value: {{ + $value }}s)' + summary: High request latency on {{ $labels.instance }} + expr: histogram_quantile(0.95, http_request_duration_seconds_bucket) > 0.5 + for: 5m + labels: + severity: warning + - alert: HighErrorRate + annotations: + description: 'Error rate is above 5% (current value: {{ $value }})' + summary: High error rate on {{ $labels.instance }} + expr: rate(http_requests_total{status=~"5.."}[5m]) > 0.05 + for: 5m + labels: + severity: critical +alertmanager: + alertmanagerSpec: + replicas: 1 + resources: + limits: + cpu: 100m + memory: 150Mi + requests: + cpu: 10m + memory: 50Mi + retention: 24h + enabled: true +defaultRules: + create: true + rules: + alertmanager: true + etcd: false + general: true + k8s: true + kubernetesApps: true + kubernetesResources: true + kubernetesStorage: true + kubernetesSystem: true + node: true + prometheus: true +grafana: + adminPassword: acf0vJ0XUVECnChUTU1u6WCBUeXXJVKB2qwpsWQH + adminUser: admin + persistence: + enabled: true + size: 1Gi + resources: + limits: + cpu: 200m + memory: 300Mi + requests: + cpu: 50m + memory: 100Mi +kubeStateMetrics: + resources: + limits: + cpu: 100m + memory: 150Mi + requests: + cpu: 10m + memory: 50Mi +nodeExporter: + resources: + limits: + cpu: 100m + memory: 100Mi + requests: + cpu: 10m + memory: 30Mi +prometheus: + prometheusSpec: + remoteRead: + - basicAuth: + password: + key: password + name: prometheus-remote-write-auth + username: + key: username + name: prometheus-remote-write-auth + readRecent: false + url: https://metrics.binarysunset.dev/api/v1/read + remoteWrite: + - basicAuth: + password: + key: password + name: prometheus-remote-write-auth + username: + key: username + name: prometheus-remote-write-auth + url: https://metrics.binarysunset.dev/api/v1/write + writeRelabelConfigs: + - action: keep + regex: (up|kube_.*|container_.*|node_.*|http_.*|process_.*) + sourceLabels: + - __name__ + resources: + limits: + cpu: 500m + memory: 500Mi + requests: + cpu: 100m + memory: 200Mi + retention: 24h + retentionSize: 10GB +prometheusOperator: + resources: + limits: + cpu: 200m + memory: 300Mi + requests: + cpu: 50m + memory: 100Mi + +: tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1457 @module=helm tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:02:38.531+0200" +2025-07-11T09:05:16.771+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Metadata after conversion: {"app_version":"v0.83.0","chart":"kube-prometheus-stack","first_deployed":1752217366,"last_deployed":1752217366,"name":"monitoring","namespace":"monitoring","notes":"kube-prometheus-stack has been installed. Check its status by running:\n kubectl --namespace monitoring get pods -l \"release=monitoring\"\n\nGet Grafana 'admin' user password by running:\n\n kubectl --namespace monitoring get secrets monitoring-grafana -o jsonpath=\"{.data.admin-password}\" | base64 -d ; echo\n\nAccess Grafana local instance:\n\n export POD_NAME=$(kubectl --namespace monitoring get pod -l \"app.kubernetes.io/name=grafana,app.kubernetes.io/instance=monitoring\" -oname)\n kubectl --namespace monitoring port-forward $POD_NAME 3000\n\nVisit https://github.com/prometheus-operator/kube-prometheus for instructions on how to create & configure Alertmanager and Prometheus instances using the Operator.\n\nkube-state-metrics is a simple service that listens to the Kubernetes API server and generates metrics about the state of the objects.\nThe exposed metrics can be found here:\nhttps://github.com/kubernetes/kube-state-metrics/blob/master/docs/README.md#exposed-metrics\n\nThe metrics are exported on the HTTP endpoint /metrics on the listening port.\nIn your case, monitoring-kube-state-metrics.monitoring.svc.cluster.local:8080/metrics\n\nThey are served either as plaintext or protobuf depending on the Accept header.\nThey are designed to be consumed either by Prometheus itself or by a scraper that is compatible with scraping a Prometheus client endpoint.\n\n1. Get your 'admin' user password by running:\n\n kubectl get secret --namespace monitoring monitoring-grafana -o jsonpath=\"{.data.admin-password}\" | base64 --decode ; echo\n\n\n2. The Grafana server can be accessed via port 80 on the following DNS name from within your cluster:\n\n monitoring-grafana.monitoring.svc.cluster.local\n\n Get the Grafana URL to visit by running these commands in the same shell:\n export POD_NAME=$(kubectl get pods --namespace monitoring -l \"app.kubernetes.io/name=grafana,app.kubernetes.io/instance=monitoring\" -o jsonpath=\"{.items[0].metadata.name}\")\n kubectl --namespace monitoring port-forward $POD_NAME 3000\n\n3. Login with the password from step 1 and the username: admin\n\n1. Get the application URL by running these commands:\n export POD_NAME=$(kubectl get pods --namespace monitoring -l \"app.kubernetes.io/name=prometheus-node-exporter,app.kubernetes.io/instance=monitoring\" -o jsonpath=\"{.items[0].metadata.name}\")\n echo \"Visit http://127.0.0.1:9100 to use your application\"\n kubectl port-forward --namespace monitoring $POD_NAME 9100","revision":1,"values":"{\"additionalPrometheusRulesMap\":{\"custom-app-rules\":{\"groups\":[{\"interval\":\"30s\",\"name\":\"aspnetcore\",\"rules\":[{\"alert\":\"HighRequestLatency\",\"annotations\":{\"description\":\"95th percentile latency is above 500ms (current value: {{ $value }}s)\",\"summary\":\"High request latency on {{ $labels.instance }}\"},\"expr\":\"histogram_quantile(0.95, http_request_duration_seconds_bucket) \\u003e 0.5\",\"for\":\"5m\",\"labels\":{\"severity\":\"warning\"}},{\"alert\":\"HighErrorRate\",\"annotations\":{\"description\":\"Error rate is above 5% (current value: {{ $value }})\",\"summary\":\"High error rate on {{ $labels.instance }}\"},\"expr\":\"rate(http_requests_total{status=~\\\"5..\\\"}[5m]) \\u003e 0.05\",\"for\":\"5m\",\"labels\":{\"severity\":\"critical\"}}]}]}},\"alertmanager\":{\"alertmanagerSpec\":{\"replicas\":1,\"resources\":{\"limits\":{\"cpu\":\"100m\",\"memory\":\"150Mi\"},\"requests\":{\"cpu\":\"10m\",\"memory\":\"50Mi\"}},\"retention\":\"24h\"},\"enabled\":true},\"defaultRules\":{\"create\":true,\"rules\":{\"alertmanager\":true,\"etcd\":false,\"general\":true,\"k8s\":true,\"kubernetesApps\":true,\"kubernetesResources\":true,\"kubernetesStorage\":true,\"kubernetesSystem\":true,\"node\":true,\"prometheus\":true}},\"grafana\":{\"adminPassword\":\"acf0vJ0XUVECnChUTU1u6WCBUeXXJVKB2qwpsWQH\",\"adminUser\":\"admin\",\"persistence\":{\"enabled\":true,\"size\":\"1Gi\"},\"resources\":{\"limits\":{\"cpu\":\"200m\",\"memory\":\"300Mi\"},\"requests\":{\"cpu\":\"50m\",\"memory\":\"100Mi\"}}},\"kubeStateMetrics\":{\"resources\":{\"limits\":{\"cpu\":\"100m\",\"memory\":\"150Mi\"},\"requests\":{\"cpu\":\"10m\",\"memory\":\"50Mi\"}}},\"nodeExporter\":{\"resources\":{\"limits\":{\"cpu\":\"100m\",\"memory\":\"100Mi\"},\"requests\":{\"cpu\":\"10m\",\"memory\":\"30Mi\"}}},\"prometheus\":{\"prometheusSpec\":{\"remoteRead\":[{\"basicAuth\":{\"password\":{\"key\":\"password\",\"name\":\"prometheus-remote-write-auth\"},\"username\":{\"key\":\"username\",\"name\":\"prometheus-remote-write-auth\"}},\"readRecent\":false,\"url\":\"https://metrics.binarysunset.dev/api/v1/read\"}],\"remoteWrite\":[{\"basicAuth\":{\"password\":{\"key\":\"password\",\"name\":\"prometheus-remote-write-auth\"},\"username\":{\"key\":\"username\",\"name\":\"prometheus-remote-write-auth\"}},\"url\":\"https://metrics.binarysunset.dev/api/v1/write\",\"writeRelabelConfigs\":[{\"action\":\"keep\",\"regex\":\"(up|kube_.*|container_.*|node_.*|http_.*|process_.*)\",\"sourceLabels\":[\"__name__\"]}]}],\"resources\":{\"limits\":{\"cpu\":\"500m\",\"memory\":\"500Mi\"},\"requests\":{\"cpu\":\"100m\",\"memory\":\"200Mi\"}},\"retention\":\"24h\",\"retentionSize\":\"10GB\"}},\"prometheusOperator\":{\"resources\":{\"limits\":{\"cpu\":\"200m\",\"memory\":\"300Mi\"},\"requests\":{\"cpu\":\"50m\",\"memory\":\"100Mi\"}}}}","version":"75.9.0"}: @module=helm tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/Projects/fourlights/devops/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go:1605 timestamp="2025-07-11T09:05:16.771+0200" +2025-07-11T09:05:16.771+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=wait_for_jobs tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:05:16.771+0200" +2025-07-11T09:05:16.771+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=name @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:05:16.771+0200" +2025-07-11T09:05:16.771+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=verify tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T09:05:16.771+0200" +2025-07-11T09:05:16.771+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=values[0] tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:05:16.771+0200" +2025-07-11T09:05:16.771+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release tf_attribute_path=values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T09:05:16.771+0200" +2025-07-11T09:05:16.771+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ApplyResourceChange @module=sdk.framework tf_attribute_path=cleanup_on_fail timestamp="2025-07-11T09:05:16.771+0200" +2025-07-11T09:05:16.771+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=namespace tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release tf_rpc=ApplyResourceChange @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm timestamp="2025-07-11T09:05:16.771+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=disable_webhooks tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release timestamp="2025-07-11T09:05:16.771+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=disable_openapi_validation tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:05:16.771+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=reset_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release timestamp="2025-07-11T09:05:16.771+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=status tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 timestamp="2025-07-11T09:05:16.772+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release tf_rpc=ApplyResourceChange @module=sdk.framework tf_attribute_path=wait tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T09:05:16.772+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=create_namespace tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T09:05:16.772+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=timeout @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:05:16.772+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_attribute_path=chart tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 timestamp="2025-07-11T09:05:16.772+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_rpc=ApplyResourceChange tf_attribute_path=force_update tf_resource_type=helm_release timestamp="2025-07-11T09:05:16.772+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=recreate_pods tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:05:16.772+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=atomic tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:05:16.772+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=max_history timestamp="2025-07-11T09:05:16.772+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_attribute_path=replace tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ApplyResourceChange @module=sdk.framework timestamp="2025-07-11T09:05:16.772+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release tf_rpc=ApplyResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=render_subchart_notes timestamp="2025-07-11T09:05:16.772+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=repository tf_resource_type=helm_release tf_rpc=ApplyResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T09:05:16.772+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_rpc=ApplyResourceChange tf_provider_addr=registry.terraform.io/hashicorp/helm @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_attribute_path=disable_crd_hooks tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release timestamp="2025-07-11T09:05:16.772+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=dependency_update tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ApplyResourceChange @module=sdk.framework timestamp="2025-07-11T09:05:16.772+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release tf_rpc=ApplyResourceChange tf_attribute_path=pass_credentials timestamp="2025-07-11T09:05:16.772+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: tf_attribute_path=version tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework timestamp="2025-07-11T09:05:16.772+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=reuse_values tf_provider_addr=registry.terraform.io/hashicorp/helm tf_resource_type=helm_release @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_rpc=ApplyResourceChange timestamp="2025-07-11T09:05:16.772+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 @module=sdk.framework tf_resource_type=helm_release tf_rpc=ApplyResourceChange tf_attribute_path=lint tf_provider_addr=registry.terraform.io/hashicorp/helm tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 timestamp="2025-07-11T09:05:16.772+0200" +2025-07-11T09:05:16.772+0200 [DEBUG] provider.terraform-provider-helm_v3.0.2: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=skip_crds tf_provider_addr=registry.terraform.io/hashicorp/helm tf_rpc=ApplyResourceChange @caller=/home/lamelos/go/pkg/mod/github.com/hashicorp/terraform-plugin-framework@v1.15.0/internal/fwschemadata/value_semantic_equality.go:91 tf_req_id=ac0fb9f4-3649-64e7-1b5b-d6c5041ef495 tf_resource_type=helm_release timestamp="2025-07-11T09:05:16.772+0200" +2025-07-11T09:05:16.774+0200 [DEBUG] states/remote: state read serial is: 46; serial is: 46 +2025-07-11T09:05:16.774+0200 [DEBUG] states/remote: state read lineage is: 8bb1bb78-c340-a09d-d7d3-bfdfbe0a740e; lineage is: 8bb1bb78-c340-a09d-d7d3-bfdfbe0a740e +2025-07-11T09:05:16.785+0200 [INFO] backend-s3: Uploading remote state: tf_backend.operation=Put tf_backend.req_id=41bd17e8-eaed-e4e6-7009-1726cffab213 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T09:05:16.785+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=PutObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Put tf_backend.req_id=41bd17e8-eaed-e4e6-7009-1726cffab213 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.method=PUT net.peer.name=storage.bridge.fourlights.dev http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;content-encoding;content-length;content-type;host;x-amz-content-sha256;x-amz-date;x-amz-decoded-content-length;x-amz-sdk-checksum-algorithm;x-amz-trailer, Signature=*****" http.request.header.x_amz_content_sha256=STREAMING-UNSIGNED-PAYLOAD-TRAILER http.request.header.accept_encoding=identity http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate?x-id=PutObject http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 ft/s3-transfer m/G,Z" http.request.header.x_amz_trailer=x-amz-checksum-sha256 http.request.header.x_amz_sdk_checksum_algorithm=SHA256 http.request.header.x_amz_decoded_content_length=325560 http.request.header.content_type=application/json http.request.header.amz_sdk_invocation_id=f3c76204-b9c1-4443-8923-4b9927522378 http.request.body="[Redacted: 318.0 KB (325,642 bytes), Type: application/json]" http.request.header.x_amz_date=20250711T070516Z http.request_content_length=325642 http.request.header.content_encoding=aws-chunked http.request.header.amz_sdk_request="attempt=1; max=5" +2025-07-11T09:05:18.136+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=PutObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Put tf_backend.req_id=41bd17e8-eaed-e4e6-7009-1726cffab213 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.response.header.x_ratelimit_limit=57 http.response.header.date="Fri, 11 Jul 2025 07:05:18 GMT" http.duration=1350 http.response.header.server=MinIO http.status_code=200 http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.etag="\"907eec71f79e33efc2d8c06fbc80ac96\"" http.response.header.accept_ranges=bytes http.response.header.x_ratelimit_remaining=57 http.response.header.x_xss_protection="1; mode=block" http.response.body="" http.response.header.x_amz_checksum_sha256=lECXvdkerFYkLM/7rnmgYzurM/0nWs5OZxcXGMJLbN0= http.response.header.x_amz_request_id=1851208C52849276 http.response.header.x_content_type_options=nosniff http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 +2025-07-11T09:05:18.137+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:05:18.143+0200 [INFO] provider: plugin process exited: plugin=/home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64/terraform-provider-helm_v3.0.2 id=975968 +2025-07-11T09:05:18.143+0200 [DEBUG] provider: plugin exited +2025-07-11T09:05:18.143+0200 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" +2025-07-11T09:05:18.144+0200 [INFO] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/public-cloud-wl/slugify/0.1.1/linux_amd64/terraform-provider-slugify_v0.1.1 id=975873 +2025-07-11T09:05:18.144+0200 [DEBUG] provider: plugin exited +2025-07-11T09:05:18.145+0200 [DEBUG] states/remote: state read serial is: 47; serial is: 47 +2025-07-11T09:05:18.145+0200 [DEBUG] states/remote: state read lineage is: 8bb1bb78-c340-a09d-d7d3-bfdfbe0a740e; lineage is: 8bb1bb78-c340-a09d-d7d3-bfdfbe0a740e +2025-07-11T09:05:18.156+0200 [INFO] backend-s3: Uploading remote state: tf_backend.operation=Put tf_backend.req_id=a80753d9-c61c-14b3-ce68-ca5d746fb0b2 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T09:05:18.156+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=PutObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Put tf_backend.req_id=a80753d9-c61c-14b3-ce68-ca5d746fb0b2 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.request.header.content_encoding=aws-chunked http.request.header.accept_encoding=identity http.request.header.amz_sdk_invocation_id=cf544762-286c-498c-8212-870042208ca8 http.request.header.x_amz_sdk_checksum_algorithm=SHA256 http.request.body="[Redacted: 317.9 KB (325,561 bytes), Type: application/json]" http.request_content_length=325561 http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;content-encoding;content-length;content-type;host;x-amz-content-sha256;x-amz-date;x-amz-decoded-content-length;x-amz-sdk-checksum-algorithm;x-amz-trailer, Signature=*****" http.request.header.x_amz_content_sha256=STREAMING-UNSIGNED-PAYLOAD-TRAILER http.request.header.content_type=application/json http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 ft/s3-transfer m/G,Z" http.request.header.x_amz_decoded_content_length=325479 http.method=PUT http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate?x-id=PutObject net.peer.name=storage.bridge.fourlights.dev http.request.header.amz_sdk_request="attempt=1; max=5" http.request.header.x_amz_date=20250711T070518Z http.request.header.x_amz_trailer=x-amz-checksum-sha256 +2025-07-11T09:05:18.925+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=PutObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Put tf_backend.req_id=a80753d9-c61c-14b3-ce68-ca5d746fb0b2 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.response.header.x_ratelimit_limit=57 http.response.header.x_ratelimit_remaining=57 http.response.header.x_amz_checksum_sha256=9EvQiNhtxzoBfCOiNBgWtxbQbazi9M5HMpELFF2QEGo= http.response.header.x_content_type_options=nosniff http.response.header.x_xss_protection="1; mode=block" http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.x_amz_request_id=1851208C98AC2F0C http.response.header.accept_ranges=bytes http.duration=768 http.response.header.date="Fri, 11 Jul 2025 07:05:18 GMT" http.response.header.server=MinIO http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.etag="\"81e508957d065e97cbfab562ab4ff1ea\"" http.response.body="" http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.status_code=200 +2025-07-11T09:13:04.842+0200 [INFO] Terraform version: 1.12.1 +2025-07-11T09:13:04.842+0200 [DEBUG] using github.com/hashicorp/go-tfe v1.74.1 +2025-07-11T09:13:04.842+0200 [DEBUG] using github.com/hashicorp/hcl/v2 v2.23.1-0.20250203194505-ba0759438da2 +2025-07-11T09:13:04.842+0200 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1 +2025-07-11T09:13:04.842+0200 [DEBUG] using github.com/zclconf/go-cty v1.16.2 +2025-07-11T09:13:04.842+0200 [INFO] Go runtime version: go1.24.3 +2025-07-11T09:13:04.842+0200 [INFO] CLI args: []string{"terraform", "output", "minio-access-key"} +2025-07-11T09:13:04.842+0200 [DEBUG] Attempting to open CLI config file: /home/lamelos/.terraformrc +2025-07-11T09:13:04.842+0200 [INFO] Loading CLI configuration from /home/lamelos/.terraformrc +2025-07-11T09:13:04.842+0200 [DEBUG] checking for credentials in "/home/lamelos/.terraform.d/plugins" +2025-07-11T09:13:04.842+0200 [DEBUG] Explicit provider installation configuration is set +2025-07-11T09:13:04.842+0200 [INFO] CLI command args: []string{"output", "minio-access-key"} +2025-07-11T09:13:04.844+0200 [DEBUG] backend-s3.aws-base: Resolving credentials provider: tf_backend.operation=Configure tf_backend.req_id=e85baead-12ea-ff0a-7515-20698fa22891 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T09:13:04.844+0200 [DEBUG] backend-s3.aws-base: Using authentication parameters: tf_backend.operation=Configure tf_backend.req_id=e85baead-12ea-ff0a-7515-20698fa22891 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate tf_aws.auth_fields=["access key", "secret key"] tf_aws.auth_fields.source=provider +2025-07-11T09:13:04.844+0200 [INFO] backend-s3.aws-base: Retrieved credentials: tf_backend.operation=Configure tf_backend.req_id=e85baead-12ea-ff0a-7515-20698fa22891 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate tf_aws.credentials_source=StaticCredentials +2025-07-11T09:13:04.844+0200 [DEBUG] backend-s3.aws-base: Loading configuration: tf_backend.operation=Configure tf_backend.req_id=e85baead-12ea-ff0a-7515-20698fa22891 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T09:13:04.846+0200 [DEBUG] Provider registry.terraform.io/hashicorp/helm is overridden by dev_overrides +2025-07-11T09:13:05.037+0200 [DEBUG] Provider registry.terraform.io/hashicorp/helm is overridden to load from /home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64 +2025-07-11T09:13:05.037+0200 [DEBUG] checking for provisioner in "." +2025-07-11T09:13:05.044+0200 [DEBUG] checking for provisioner in "/usr/bin" +2025-07-11T09:13:05.044+0200 [DEBUG] checking for provisioner in "/home/lamelos/.terraform.d/plugins" +2025-07-11T09:13:05.045+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon rpc.method=ListObjectsV2 rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Workspaces tf_backend.req_id=be479317-53ef-6253-ce06-d44964bfec1b tf_backend.s3.bucket=app-365zon tf_backend.workspace-prefix=env:/ http.url="https://storage.bridge.fourlights.dev/app-365zon?list-type=2&max-keys=1000&prefix=env%3A%2F" net.peer.name=storage.bridge.fourlights.dev http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.request.header.amz_sdk_invocation_id=b65531dd-5635-4733-bf19-b15dbbee0d8d http.request.body="" http.method=GET http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 m/C" http.request.header.accept_encoding=identity http.request.header.amz_sdk_request="attempt=1; max=5" http.request.header.x_amz_date=20250711T071305Z +2025-07-11T09:13:05.472+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon rpc.method=ListObjectsV2 rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Workspaces tf_backend.req_id=be479317-53ef-6253-ce06-d44964bfec1b tf_backend.s3.bucket=app-365zon tf_backend.workspace-prefix=env:/ http.response_content_length=246 http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.x_amz_request_id=185120F95854BB62 + http.response.body= + | + | app-365zonenv:/01000false + http.response.header.content_type=application/xml http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.vary=["Origin", "Accept-Encoding"] http.duration=427 http.response.header.x_content_type_options=nosniff http.response.header.date="Fri, 11 Jul 2025 07:13:05 GMT" http.response.header.x_ratelimit_limit=57 http.response.header.x_ratelimit_remaining=57 http.status_code=200 http.response.header.server=MinIO http.response.header.x_xss_protection="1; mode=block" http.response.header.accept_ranges=bytes +2025-07-11T09:13:05.472+0200 [INFO] backend-s3: Downloading remote state: tf_backend.operation=Get tf_backend.req_id=a6075690-9a4c-fe95-6ba3-80edddf8d635 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T09:13:05.473+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=HeadObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=a6075690-9a4c-fe95-6ba3-80edddf8d635 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.request.header.accept_encoding=identity http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate http.request.header.x_amz_date=20250711T071305Z http.request.body="" http.method=HEAD net.peer.name=storage.bridge.fourlights.dev http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2" http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.amz_sdk_invocation_id=05a1711f-7c5f-4f76-adb9-3518706dabc1 http.request.header.amz_sdk_request="attempt=1; max=5" http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 +2025-07-11T09:13:05.883+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=HeadObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=a6075690-9a4c-fe95-6ba3-80edddf8d635 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.response.header.etag="\"81e508957d065e97cbfab562ab4ff1ea\"" http.response.header.x_xss_protection="1; mode=block" http.response.header.date="Fri, 11 Jul 2025 07:13:05 GMT" http.response.header.x_content_type_options=nosniff http.response.header.x_ratelimit_limit=57 http.response.header.x_ratelimit_remaining=57 http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.accept_ranges=bytes http.duration=410 http.status_code=200 http.response.header.server=MinIO http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response_content_length=325479 http.response.header.x_amz_request_id=185120F96343C0F9 http.response.header.last_modified="Fri, 11 Jul 2025 07:05:18 GMT" http.response.header.content_type=application/json http.response.body="" +2025-07-11T09:13:05.884+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=a6075690-9a4c-fe95-6ba3-80edddf8d635 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate?x-id=GetObject net.peer.name=storage.bridge.fourlights.dev http.request.header.amz_sdk_invocation_id=56f9f050-542c-498b-afe6-01aca27434b1 http.request.header.x_amz_checksum_mode=ENABLED http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.request.header.range=bytes=0-5242879 http.request.header.accept_encoding=identity http.request.header.amz_sdk_request="attempt=1; max=5" http.method=GET http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 ft/s3-transfer m/G,b" http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;range;x-amz-checksum-mode;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.x_amz_date=20250711T071305Z http.request.body="" +2025-07-11T09:13:06.128+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=a6075690-9a4c-fe95-6ba3-80edddf8d635 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.response.header.x_ratelimit_limit=57 http.response.header.content_range="bytes 0-325478/325479" http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.body="[Redacted: 317.9 KB (325,479 bytes), Type: application/json]" http.duration=244 http.response.header.last_modified="Fri, 11 Jul 2025 07:05:18 GMT" http.response.header.server=MinIO http.response.header.x_content_type_options=nosniff http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.content_type=application/json http.response.header.etag="\"81e508957d065e97cbfab562ab4ff1ea\"" http.response.header.date="Fri, 11 Jul 2025 07:13:06 GMT" http.response.header.x_xss_protection="1; mode=block" http.response_content_length=325479 http.response.header.x_ratelimit_remaining=57 http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.x_amz_request_id=185120F97B191B9D http.status_code=206 http.response.header.accept_ranges=bytes +2025-07-11T09:13:06.128+0200 [WARN] backend-s3: Response has no supported checksum. Not validating response payload.: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=a6075690-9a4c-fe95-6ba3-80edddf8d635 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T09:13:09.293+0200 [INFO] Terraform version: 1.12.1 +2025-07-11T09:13:09.293+0200 [DEBUG] using github.com/hashicorp/go-tfe v1.74.1 +2025-07-11T09:13:09.293+0200 [DEBUG] using github.com/hashicorp/hcl/v2 v2.23.1-0.20250203194505-ba0759438da2 +2025-07-11T09:13:09.293+0200 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1 +2025-07-11T09:13:09.293+0200 [DEBUG] using github.com/zclconf/go-cty v1.16.2 +2025-07-11T09:13:09.293+0200 [INFO] Go runtime version: go1.24.3 +2025-07-11T09:13:09.293+0200 [INFO] CLI args: []string{"terraform", "output", "minio-secret-key"} +2025-07-11T09:13:09.293+0200 [DEBUG] Attempting to open CLI config file: /home/lamelos/.terraformrc +2025-07-11T09:13:09.293+0200 [INFO] Loading CLI configuration from /home/lamelos/.terraformrc +2025-07-11T09:13:09.293+0200 [DEBUG] checking for credentials in "/home/lamelos/.terraform.d/plugins" +2025-07-11T09:13:09.293+0200 [DEBUG] Explicit provider installation configuration is set +2025-07-11T09:13:09.293+0200 [INFO] CLI command args: []string{"output", "minio-secret-key"} +2025-07-11T09:13:09.295+0200 [DEBUG] backend-s3.aws-base: Resolving credentials provider: tf_backend.operation=Configure tf_backend.req_id=b5fb1d33-b4f5-9b5f-accf-4f949f971d2e tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T09:13:09.295+0200 [DEBUG] backend-s3.aws-base: Using authentication parameters: tf_backend.operation=Configure tf_backend.req_id=b5fb1d33-b4f5-9b5f-accf-4f949f971d2e tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate tf_aws.auth_fields.source=provider tf_aws.auth_fields=["access key", "secret key"] +2025-07-11T09:13:09.295+0200 [INFO] backend-s3.aws-base: Retrieved credentials: tf_backend.operation=Configure tf_backend.req_id=b5fb1d33-b4f5-9b5f-accf-4f949f971d2e tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate tf_aws.credentials_source=StaticCredentials +2025-07-11T09:13:09.295+0200 [DEBUG] backend-s3.aws-base: Loading configuration: tf_backend.operation=Configure tf_backend.req_id=b5fb1d33-b4f5-9b5f-accf-4f949f971d2e tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T09:13:09.298+0200 [DEBUG] Provider registry.terraform.io/hashicorp/helm is overridden by dev_overrides +2025-07-11T09:13:09.488+0200 [DEBUG] Provider registry.terraform.io/hashicorp/helm is overridden to load from /home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64 +2025-07-11T09:13:09.489+0200 [DEBUG] checking for provisioner in "." +2025-07-11T09:13:09.496+0200 [DEBUG] checking for provisioner in "/usr/bin" +2025-07-11T09:13:09.496+0200 [DEBUG] checking for provisioner in "/home/lamelos/.terraform.d/plugins" +2025-07-11T09:13:09.497+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon rpc.method=ListObjectsV2 rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Workspaces tf_backend.req_id=94bcabf4-8b6b-ade0-d87f-dcb4ed6c651f tf_backend.s3.bucket=app-365zon tf_backend.workspace-prefix=env:/ http.url="https://storage.bridge.fourlights.dev/app-365zon?list-type=2&max-keys=1000&prefix=env%3A%2F" net.peer.name=storage.bridge.fourlights.dev http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.amz_sdk_invocation_id=403358b6-13a6-485d-ad22-a0241a5c703c http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.request.header.x_amz_date=20250711T071309Z http.request.body="" http.method=GET http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 m/C" http.request.header.accept_encoding=identity http.request.header.amz_sdk_request="attempt=1; max=5" +2025-07-11T09:13:09.618+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon rpc.method=ListObjectsV2 rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Workspaces tf_backend.req_id=94bcabf4-8b6b-ade0-d87f-dcb4ed6c651f tf_backend.s3.bucket=app-365zon tf_backend.workspace-prefix=env:/ http.response.header.date="Fri, 11 Jul 2025 07:13:09 GMT" http.response.header.x_xss_protection="1; mode=block" http.response.header.x_amz_request_id=185120FA56F59A80 http.status_code=200 http.response_content_length=246 http.response.header.content_type=application/xml http.response.header.x_content_type_options=nosniff http.duration=121 http.response.header.x_ratelimit_limit=57 http.response.header.x_ratelimit_remaining=57 http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 + http.response.body= + | + | app-365zonenv:/01000false + http.response.header.server=MinIO http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.accept_ranges=bytes +2025-07-11T09:13:09.618+0200 [INFO] backend-s3: Downloading remote state: tf_backend.operation=Get tf_backend.req_id=be0d8bbd-c5cd-eb87-b0e7-94e787be18cc tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T09:13:09.618+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=HeadObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=be0d8bbd-c5cd-eb87-b0e7-94e787be18cc tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate net.peer.name=storage.bridge.fourlights.dev http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2" http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.accept_encoding=identity http.request.header.amz_sdk_request="attempt=1; max=5" http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.request.header.x_amz_date=20250711T071309Z http.method=HEAD http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate http.request.header.amz_sdk_invocation_id=37267b90-afd7-43b3-8bcf-cba593caf813 http.request.body="" +2025-07-11T09:13:09.877+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=HeadObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=be0d8bbd-c5cd-eb87-b0e7-94e787be18cc tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.response_content_length=325479 http.response.header.x_xss_protection="1; mode=block" http.response.header.x_amz_request_id=185120FA5A346BBB http.response.header.x_ratelimit_limit=57 http.response.header.date="Fri, 11 Jul 2025 07:13:09 GMT" http.response.header.last_modified="Fri, 11 Jul 2025 07:05:18 GMT" http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.x_content_type_options=nosniff http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.content_type=application/json http.response.header.server=MinIO http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.accept_ranges=bytes http.response.body="" http.response.header.etag="\"81e508957d065e97cbfab562ab4ff1ea\"" http.response.header.x_ratelimit_remaining=57 http.duration=258 http.status_code=200 +2025-07-11T09:13:09.878+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=be0d8bbd-c5cd-eb87-b0e7-94e787be18cc tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.request.header.x_amz_date=20250711T071309Z http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate?x-id=GetObject http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 ft/s3-transfer m/G,b" http.request.header.x_amz_checksum_mode=ENABLED http.request.header.range=bytes=0-5242879 http.request.body="" http.method=GET net.peer.name=storage.bridge.fourlights.dev http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;range;x-amz-checksum-mode;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.amz_sdk_request="attempt=1; max=5" http.request.header.accept_encoding=identity http.request.header.amz_sdk_invocation_id=fa0d071c-252e-4f49-ac67-f50570df2211 +2025-07-11T09:13:10.125+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=be0d8bbd-c5cd-eb87-b0e7-94e787be18cc tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.response.header.x_ratelimit_limit=57 http.response.header.date="Fri, 11 Jul 2025 07:13:10 GMT" http.response.header.last_modified="Fri, 11 Jul 2025 07:05:18 GMT" http.duration=247 http.response_content_length=325479 http.response.header.x_amz_request_id=185120FA6F7B5ACF http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.content_range="bytes 0-325478/325479" http.response.header.content_type=application/json http.response.header.x_xss_protection="1; mode=block" http.response.header.accept_ranges=bytes http.status_code=206 http.response.header.server=MinIO http.response.header.etag="\"81e508957d065e97cbfab562ab4ff1ea\"" http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.x_content_type_options=nosniff http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.x_ratelimit_remaining=57 http.response.body="[Redacted: 317.9 KB (325,479 bytes), Type: application/json]" +2025-07-11T09:13:10.126+0200 [WARN] backend-s3: Response has no supported checksum. Not validating response payload.: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=be0d8bbd-c5cd-eb87-b0e7-94e787be18cc tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T09:13:41.788+0200 [INFO] Terraform version: 1.12.1 +2025-07-11T09:13:41.788+0200 [DEBUG] using github.com/hashicorp/go-tfe v1.74.1 +2025-07-11T09:13:41.788+0200 [DEBUG] using github.com/hashicorp/hcl/v2 v2.23.1-0.20250203194505-ba0759438da2 +2025-07-11T09:13:41.788+0200 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1 +2025-07-11T09:13:41.788+0200 [DEBUG] using github.com/zclconf/go-cty v1.16.2 +2025-07-11T09:13:41.788+0200 [INFO] Go runtime version: go1.24.3 +2025-07-11T09:13:41.788+0200 [INFO] CLI args: []string{"terraform", "output", "minio-root-access-key"} +2025-07-11T09:13:41.788+0200 [DEBUG] Attempting to open CLI config file: /home/lamelos/.terraformrc +2025-07-11T09:13:41.788+0200 [INFO] Loading CLI configuration from /home/lamelos/.terraformrc +2025-07-11T09:13:41.788+0200 [DEBUG] checking for credentials in "/home/lamelos/.terraform.d/plugins" +2025-07-11T09:13:41.788+0200 [DEBUG] Explicit provider installation configuration is set +2025-07-11T09:13:41.788+0200 [INFO] CLI command args: []string{"output", "minio-root-access-key"} +2025-07-11T09:13:41.790+0200 [DEBUG] backend-s3.aws-base: Resolving credentials provider: tf_backend.operation=Configure tf_backend.req_id=cc24b43b-e88b-add3-4bea-10a995b8284b tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T09:13:41.790+0200 [DEBUG] backend-s3.aws-base: Using authentication parameters: tf_backend.operation=Configure tf_backend.req_id=cc24b43b-e88b-add3-4bea-10a995b8284b tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate tf_aws.auth_fields=["access key", "secret key"] tf_aws.auth_fields.source=provider +2025-07-11T09:13:41.790+0200 [INFO] backend-s3.aws-base: Retrieved credentials: tf_backend.operation=Configure tf_backend.req_id=cc24b43b-e88b-add3-4bea-10a995b8284b tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate tf_aws.credentials_source=StaticCredentials +2025-07-11T09:13:41.790+0200 [DEBUG] backend-s3.aws-base: Loading configuration: tf_backend.operation=Configure tf_backend.req_id=cc24b43b-e88b-add3-4bea-10a995b8284b tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T09:13:41.791+0200 [DEBUG] Provider registry.terraform.io/hashicorp/helm is overridden by dev_overrides +2025-07-11T09:13:41.982+0200 [DEBUG] Provider registry.terraform.io/hashicorp/helm is overridden to load from /home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64 +2025-07-11T09:13:41.982+0200 [DEBUG] checking for provisioner in "." +2025-07-11T09:13:41.991+0200 [DEBUG] checking for provisioner in "/usr/bin" +2025-07-11T09:13:41.991+0200 [DEBUG] checking for provisioner in "/home/lamelos/.terraform.d/plugins" +2025-07-11T09:13:41.991+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon rpc.method=ListObjectsV2 rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Workspaces tf_backend.req_id=5d415f6f-8887-dff8-634a-8b04db85591f tf_backend.s3.bucket=app-365zon tf_backend.workspace-prefix=env:/ http.url="https://storage.bridge.fourlights.dev/app-365zon?list-type=2&max-keys=1000&prefix=env%3A%2F" net.peer.name=storage.bridge.fourlights.dev http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.request.header.accept_encoding=identity http.method=GET http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 m/C" http.request.header.x_amz_date=20250711T071341Z http.request.header.amz_sdk_invocation_id=f34c6a73-2ada-4e07-a36e-dd8e8e28e492 http.request.header.amz_sdk_request="attempt=1; max=5" http.request.body="" +2025-07-11T09:13:42.660+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon rpc.method=ListObjectsV2 rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Workspaces tf_backend.req_id=5d415f6f-8887-dff8-634a-8b04db85591f tf_backend.s3.bucket=app-365zon tf_backend.workspace-prefix=env:/ http.response.header.x_xss_protection="1; mode=block" http.response.header.date="Fri, 11 Jul 2025 07:13:42 GMT" http.response.header.accept_ranges=bytes http.response.header.content_type=application/xml + http.response.body= + | + | app-365zonenv:/01000false + http.response.header.x_ratelimit_remaining=57 http.response.header.server=MinIO http.response.header.x_content_type_options=nosniff http.response.header.x_ratelimit_limit=57 http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.x_amz_request_id=18512101F8F15891 http.duration=668 http.status_code=200 http.response_content_length=246 +2025-07-11T09:13:42.660+0200 [INFO] backend-s3: Downloading remote state: tf_backend.operation=Get tf_backend.req_id=6c6bbb03-f193-e1b0-28e0-c8f7eb3f931d tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T09:13:42.661+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=HeadObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=6c6bbb03-f193-e1b0-28e0-c8f7eb3f931d tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.accept_encoding=identity http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.request.body="" http.method=HEAD http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate net.peer.name=storage.bridge.fourlights.dev http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2" http.request.header.amz_sdk_invocation_id=e4d40e13-5e25-43a9-9bfd-c57b42354712 http.request.header.amz_sdk_request="attempt=1; max=5" http.request.header.x_amz_date=20250711T071342Z +2025-07-11T09:13:43.116+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=HeadObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=6c6bbb03-f193-e1b0-28e0-c8f7eb3f931d tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.response.header.etag="\"81e508957d065e97cbfab562ab4ff1ea\"" http.response.header.x_amz_request_id=1851210215182476 http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.last_modified="Fri, 11 Jul 2025 07:05:18 GMT" http.response_content_length=325479 http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.accept_ranges=bytes http.response.header.x_ratelimit_remaining=57 http.response.header.x_xss_protection="1; mode=block" http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.date="Fri, 11 Jul 2025 07:13:43 GMT" http.response.body="" http.duration=454 http.status_code=200 http.response.header.server=MinIO http.response.header.content_type=application/json http.response.header.x_content_type_options=nosniff http.response.header.x_ratelimit_limit=57 +2025-07-11T09:13:43.116+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=6c6bbb03-f193-e1b0-28e0-c8f7eb3f931d tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.request.header.amz_sdk_request="attempt=1; max=5" http.request.header.amz_sdk_invocation_id=946b72b3-3345-4041-bc53-db3ba519d902 http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.request.body="" http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate?x-id=GetObject http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 ft/s3-transfer m/G,b" http.request.header.x_amz_date=20250711T071343Z http.request.header.x_amz_checksum_mode=ENABLED http.request.header.range=bytes=0-5242879 http.request.header.accept_encoding=identity http.method=GET net.peer.name=storage.bridge.fourlights.dev http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;range;x-amz-checksum-mode;x-amz-content-sha256;x-amz-date, Signature=*****" +2025-07-11T09:13:43.423+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=6c6bbb03-f193-e1b0-28e0-c8f7eb3f931d tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.content_range="bytes 0-325478/325479" http.response.header.x_ratelimit_remaining=57 http.status_code=206 http.response.header.x_amz_request_id=1851210226F809EE http.response.header.x_content_type_options=nosniff http.duration=306 http.response_content_length=325479 http.response.header.content_type=application/json http.response.header.server=MinIO http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.last_modified="Fri, 11 Jul 2025 07:05:18 GMT" http.response.header.etag="\"81e508957d065e97cbfab562ab4ff1ea\"" http.response.body="[Redacted: 317.9 KB (325,479 bytes), Type: application/json]" http.response.header.accept_ranges=bytes http.response.header.x_xss_protection="1; mode=block" http.response.header.date="Fri, 11 Jul 2025 07:13:43 GMT" http.response.header.x_ratelimit_limit=57 +2025-07-11T09:13:43.423+0200 [WARN] backend-s3: Response has no supported checksum. Not validating response payload.: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=6c6bbb03-f193-e1b0-28e0-c8f7eb3f931d tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T09:14:01.737+0200 [INFO] Terraform version: 1.12.1 +2025-07-11T09:14:01.737+0200 [DEBUG] using github.com/hashicorp/go-tfe v1.74.1 +2025-07-11T09:14:01.737+0200 [DEBUG] using github.com/hashicorp/hcl/v2 v2.23.1-0.20250203194505-ba0759438da2 +2025-07-11T09:14:01.737+0200 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1 +2025-07-11T09:14:01.737+0200 [DEBUG] using github.com/zclconf/go-cty v1.16.2 +2025-07-11T09:14:01.737+0200 [INFO] Go runtime version: go1.24.3 +2025-07-11T09:14:01.737+0200 [INFO] CLI args: []string{"terraform", "output", "minio-root-secret-key"} +2025-07-11T09:14:01.737+0200 [DEBUG] Attempting to open CLI config file: /home/lamelos/.terraformrc +2025-07-11T09:14:01.737+0200 [INFO] Loading CLI configuration from /home/lamelos/.terraformrc +2025-07-11T09:14:01.737+0200 [DEBUG] checking for credentials in "/home/lamelos/.terraform.d/plugins" +2025-07-11T09:14:01.737+0200 [DEBUG] Explicit provider installation configuration is set +2025-07-11T09:14:01.738+0200 [INFO] CLI command args: []string{"output", "minio-root-secret-key"} +2025-07-11T09:14:01.739+0200 [DEBUG] backend-s3.aws-base: Resolving credentials provider: tf_backend.operation=Configure tf_backend.req_id=fdb59a3d-12ad-624d-6abe-0a8d3a73fb65 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T09:14:01.739+0200 [DEBUG] backend-s3.aws-base: Using authentication parameters: tf_backend.operation=Configure tf_backend.req_id=fdb59a3d-12ad-624d-6abe-0a8d3a73fb65 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate tf_aws.auth_fields.source=provider tf_aws.auth_fields=["access key", "secret key"] +2025-07-11T09:14:01.739+0200 [INFO] backend-s3.aws-base: Retrieved credentials: tf_backend.operation=Configure tf_backend.req_id=fdb59a3d-12ad-624d-6abe-0a8d3a73fb65 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate tf_aws.credentials_source=StaticCredentials +2025-07-11T09:14:01.739+0200 [DEBUG] backend-s3.aws-base: Loading configuration: tf_backend.operation=Configure tf_backend.req_id=fdb59a3d-12ad-624d-6abe-0a8d3a73fb65 tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T09:14:01.741+0200 [DEBUG] Provider registry.terraform.io/hashicorp/helm is overridden by dev_overrides +2025-07-11T09:14:01.933+0200 [DEBUG] Provider registry.terraform.io/hashicorp/helm is overridden to load from /home/lamelos/.terraform.d/plugins/terraform.local/hashicorp/helm/3.0.2/linux_amd64 +2025-07-11T09:14:01.933+0200 [DEBUG] checking for provisioner in "." +2025-07-11T09:14:01.940+0200 [DEBUG] checking for provisioner in "/usr/bin" +2025-07-11T09:14:01.940+0200 [DEBUG] checking for provisioner in "/home/lamelos/.terraform.d/plugins" +2025-07-11T09:14:01.941+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon rpc.method=ListObjectsV2 rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Workspaces tf_backend.req_id=a437a697-f1e6-dafc-a46e-6eebe3a826fc tf_backend.s3.bucket=app-365zon tf_backend.workspace-prefix=env:/ http.request.body="" http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 m/C" http.request.header.x_amz_date=20250711T071401Z http.request.header.amz_sdk_request="attempt=1; max=5" http.method=GET http.url="https://storage.bridge.fourlights.dev/app-365zon?list-type=2&max-keys=1000&prefix=env%3A%2F" net.peer.name=storage.bridge.fourlights.dev http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.request.header.amz_sdk_invocation_id=d05f0647-6cf9-46bc-bb29-d1696c62187b http.request.header.accept_encoding=identity +2025-07-11T09:14:02.080+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon rpc.method=ListObjectsV2 rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Workspaces tf_backend.req_id=a437a697-f1e6-dafc-a46e-6eebe3a826fc tf_backend.s3.bucket=app-365zon tf_backend.workspace-prefix=env:/ http.response.header.x_ratelimit_remaining=57 http.response.header.vary=["Origin", "Accept-Encoding"] http.duration=139 http.response.header.x_amz_request_id=185121068DDC22E3 http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response_content_length=246 http.response.header.x_xss_protection="1; mode=block" http.response.header.server=MinIO http.response.header.accept_ranges=bytes http.response.header.date="Fri, 11 Jul 2025 07:14:02 GMT" http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.x_ratelimit_limit=57 http.response.header.content_type=application/xml http.response.header.x_content_type_options=nosniff + http.response.body= + | + | app-365zonenv:/01000false + http.status_code=200 +2025-07-11T09:14:02.080+0200 [INFO] backend-s3: Downloading remote state: tf_backend.operation=Get tf_backend.req_id=1b668e8e-97eb-1d48-7e3e-bec7b30add4e tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate +2025-07-11T09:14:02.081+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=HeadObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=1b668e8e-97eb-1d48-7e3e-bec7b30add4e tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.request.header.amz_sdk_invocation_id=1d8f06e1-bb72-482b-8a77-7a1d5d5d06aa http.request.header.accept_encoding=identity http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 http.request.header.x_amz_date=20250711T071402Z http.request.body="" http.method=HEAD http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate http.request.header.amz_sdk_request="attempt=1; max=5" net.peer.name=storage.bridge.fourlights.dev http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2" http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;x-amz-content-sha256;x-amz-date, Signature=*****" +2025-07-11T09:14:02.306+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=HeadObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=1b668e8e-97eb-1d48-7e3e-bec7b30add4e tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.status_code=200 http.response.header.server=MinIO http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.x_ratelimit_limit=57 http.response.header.content_type=application/json http.duration=224 http.response_content_length=325479 http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.x_content_type_options=nosniff http.response.header.accept_ranges=bytes http.response.header.x_ratelimit_remaining=57 http.response.header.x_amz_request_id=1851210690DE3B15 http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.response.header.x_xss_protection="1; mode=block" http.response.body="" http.response.header.date="Fri, 11 Jul 2025 07:14:02 GMT" http.response.header.etag="\"81e508957d065e97cbfab562ab4ff1ea\"" http.response.header.last_modified="Fri, 11 Jul 2025 07:05:18 GMT" +2025-07-11T09:14:02.306+0200 [DEBUG] backend-s3: HTTP Request Sent: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=1b668e8e-97eb-1d48-7e3e-bec7b30add4e tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.request.header.range=bytes=0-5242879 http.request.header.amz_sdk_invocation_id=1dee402e-072d-4874-86f5-03724e46b89f http.request.body="" http.method=GET http.url=https://storage.bridge.fourlights.dev/app-365zon/terraform.tfstate?x-id=GetObject http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.12.1 (+https://www.terraform.io) aws-sdk-go-v2/1.36.0 ua/2.1 os/linux lang/go#1.24.3 md/GOOS#linux md/GOARCH#amd64 api/s3#1.75.2 ft/s3-transfer m/G,b" http.request.header.authorization="AWS4-HMAC-SHA256 Credential=Y2Y1EA9WES29336DP9SE/20250711/eu-central-1/s3/aws4_request, SignedHeaders=accept-encoding;amz-sdk-invocation-id;amz-sdk-request;host;range;x-amz-checksum-mode;x-amz-content-sha256;x-amz-date, Signature=*****" http.request.header.amz_sdk_request="attempt=1; max=5" http.request.header.accept_encoding=identity http.request.header.x_amz_checksum_mode=ENABLED http.request.header.x_amz_date=20250711T071402Z net.peer.name=storage.bridge.fourlights.dev http.request.header.x_amz_content_sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 +2025-07-11T09:14:02.613+0200 [DEBUG] backend-s3: HTTP Response Received: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.custom_endpoint=true tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=1b668e8e-97eb-1d48-7e3e-bec7b30add4e tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate http.response.header.x_content_type_options=nosniff http.response.header.server=MinIO http.response.header.x_amz_id_2=dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8 http.response.header.x_ratelimit_limit=57 http.response.header.accept_ranges=bytes http.response.body="[Redacted: 317.9 KB (325,479 bytes), Type: application/json]" http.status_code=206 http.response.header.vary=["Origin", "Accept-Encoding"] http.response.header.etag="\"81e508957d065e97cbfab562ab4ff1ea\"" http.response.header.x_xss_protection="1; mode=block" http.response.header.content_type=application/json http.response.header.strict_transport_security="max-age=31536000; includeSubDomains" http.duration=307 http.response.header.x_amz_request_id=185121069F5D724E http.response.header.date="Fri, 11 Jul 2025 07:14:02 GMT" http.response.header.content_range="bytes 0-325478/325479" http.response_content_length=325479 http.response.header.x_ratelimit_remaining=57 http.response.header.last_modified="Fri, 11 Jul 2025 07:05:18 GMT" +2025-07-11T09:14:02.613+0200 [WARN] backend-s3: Response has no supported checksum. Not validating response payload.: aws.region=eu-central-1 aws.s3.bucket=app-365zon aws.s3.key=terraform.tfstate rpc.method=GetObject rpc.service=S3 rpc.system=aws-api tf_aws.sdk=aws-sdk-go-v2 tf_backend.operation=Get tf_backend.req_id=1b668e8e-97eb-1d48-7e3e-bec7b30add4e tf_backend.s3.bucket=app-365zon tf_backend.s3.path=terraform.tfstate diff --git a/infra/clusters/app-365zon/zitadel-admin-sa.json b/infra/clusters/app-365zon/zitadel-admin-sa.json new file mode 100755 index 0000000..54695de --- /dev/null +++ b/infra/clusters/app-365zon/zitadel-admin-sa.json @@ -0,0 +1 @@ +{"type":"serviceaccount","keyId":"328362785044575662","key":"-----BEGIN RSA PRIVATE KEY-----\nMIIEowIBAAKCAQEA1+ggA05PsZZzpklcqEAck8UUkn1H5HJXiD3to0IU2vnLQYk9\n/pxHM30n2uWLOflL3OWeqy0rDfR2tp3a0gziGO3MV6EuDPg73WZqHMwxa4RkPOMO\nLcHcfnp4bG9RxZgbvj2pFkvPJ/j5KC54HDyol2urWuGSVKKIGY7bUE4HD0n+ejr6\nLoEeGtIV17ttipqvF2jPMXHvH/yjsQWPofRQh6kqnxTuwyesjlEXyezMP1+WfpCa\n/kmGfowocyIuMNHUSeymLfBX3KIYVWp+/HukP1J781RQLPivdh8hiPZT560gXh72\niSKCLgTLuUt72LFs+1XnKuq2gIOFvP8jpae+GQIDAQABAoIBAEkc+SJFdaVMrpMk\nCrWLKGI9/e5xcFQDCHNBjWSYrxlMN7FUuWKsJ0xfWIy+6LvUGQWP2IBdBlRucXj7\n0asJ49LPTEBse3y23wbldI+V8jJXnd4kgZurJ3DJJliKBeXk0ZhFpym+uELwA+fA\nfLoLLIhCVL+s3XG9rFsDTm9OTQO2ykPvwGAx151nitBnLJm6ms+meBOPc/f/nsH+\nIR6W3Fm4hWjSeKdeWSJG6ePkJqbXLTNYhxnkbgNg4fz4CCPf39aqS3NbwiUv/dQG\ni8cp/UnsZGF0IlmSyipQirFk9wLd9iX9vNorPPMosD68m/plC3eXFIQATbBXEGaf\nelMUmeUCgYEA2j0M42iiBQ0qsuj4rfdCv8rjaIva5EG6Jp2AMtXmQQulrp31iuKw\njfpMoUAip5HS1PdQuXCK6m7DVS3Nr39pBcGrsumU/nW1h3AWTR4GeWFtcCj5ek7q\nitJKfpGnyfWlpPeluXfGmS6npA36URlhX+FfaE6vEHVa7o/hcw4bF6sCgYEA/UPK\nHCwJNBPP04Q7zGF2ivl/zz9WDwnp3d9QZzpmjCZa3J52tLShs5URC8VeSH6mWh78\nfMoFb8fFiJUSjA1Dh0X1pbhXLeFnJmobHAlHZvdMgGDQSe0VfnmC7tJxwEQ3tdxu\n/E95kNFvXUSq0lSICG8TFwr2zHueJf8sPHvsbUsCgYEAzut3nt6ET/nN9FhEAN4h\n4atCtstzvVw8XYSUGp8Ic7/RVaDbQNXyxIr/wRwIP41ZsybS2SBF9kUS215UWQOa\n1iRs4XPrGuEMPuAdpPzE8q1XkDKpaDgO1ZTRoPQFfM12QtWzwgg4uuCrfjbqkZ5Y\n3wnW5hVEk3xRvUOaZPaI5YUCgYAQC5NqZX/PxNGN3PrM3//aniPyxVh2a3JdlCBL\n6e9FQcjP4Voz6J21+uOxkzd98EgpvXzRixr9EfL5zDf4l36Hu27sqNkdFwKp9F7z\nT8MuSsyV9Yw8osCR2rDo4HxEag39f5GoeoCBJEOh7Q/Fc4WKwz66Xv9zxQEn9xqe\nWluIMQKBgEFkltf0957pEC7pPb/t9/20j7ODKSKrSYE3+SGi9XwUeT74HkU43Euf\na3KWlwMmJcYvtc4RDNuYJ6F9/eAq5c5MqgySEHoMh386u3YzzZBcI5L06pMI4kYb\njhK63OCrlzeILxwcwc00ztYHbjxk/yFOUWQ/OknCzlGE0o8TOPyu\n-----END RSA PRIVATE KEY-----\n","expirationDate":"2026-01-01T00:00:00Z","userId":"328362785044510126"} diff --git a/infra/clusters/bridge/.terraform.lock.hcl b/infra/clusters/bridge/.terraform.lock.hcl index 7c86c05..7dca7bc 100644 --- a/infra/clusters/bridge/.terraform.lock.hcl +++ b/infra/clusters/bridge/.terraform.lock.hcl @@ -61,22 +61,41 @@ provider "registry.terraform.io/fusionauth/fusionauth" { ] } -provider "registry.terraform.io/hashicorp/helm" { - version = "2.16.1" +provider "registry.terraform.io/hashicorp/external" { + version = "2.3.5" hashes = [ - "h1:TerRBdq69SxIWg3ET2VE0bcP0BYRIWZOp1QxXj/14Fk=", - "zh:0003f6719a32aee9afaeeb001687fc0cfc8c2d5f54861298cf1dc5711f3b4e65", - "zh:16cd5bfee09e7bb081b8b4470f31a9af508e52220fd97fd81c6dda725d9422fe", - "zh:51817de8fdc2c2e36785f23fbf4ec022111bd1cf7679498c16ad0ad7471c16db", - "zh:51b95829b2873be40a65809294bffe349e40cfccc3ff6fee0f471d01770e0ebd", - "zh:56b158dde897c47e1460181fc472c3e920aa23db40579fdc2aad333c1456d2dd", - "zh:916641d26c386959eb982e680028aa677b787687ef7c1283241e45620bc8df50", - "zh:aec15ca8605babba77b283f2ca35daca53e006d567e1c3a3daf50497035b820b", - "zh:c2cecf710b87c8f3a4d186da2ea12cf08041f97ae0c6db82649720d6ed929d65", - "zh:dbdd96f17aea25c7db2d516ab8172a5e683c6686c72a1a44173d2fe96319be39", - "zh:de11e180368434a796b1ab6f20fde7554dc74f7800e063b8e4c8ec3a86d0be63", + "h1:smKSos4zs57pJjQrNuvGBpSWth2el9SgePPbPHo0aps=", + "zh:6e89509d056091266532fa64de8c06950010498adf9070bf6ff85bc485a82562", + "zh:78d5eefdd9e494defcb3c68d282b8f96630502cac21d1ea161f53cfe9bb483b3", + "zh:86868aec05b58dc0aa1904646a2c26b9367d69b890c9ad70c33c0d3aa7b1485a", + "zh:a2ce38fda83a62fa5fb5a70e6ca8453b168575feb3459fa39803f6f40bd42154", + "zh:a6c72798f4a9a36d1d1433c0372006cc9b904e8cfd60a2ae03ac5b7d2abd2398", + "zh:a8a3141d2fc71c86bf7f3c13b0b3be8a1b0f0144a47572a15af4dfafc051e28a", + "zh:aa20a1242eb97445ad26ebcfb9babf2cd675bdb81cac5f989268ebefa4ef278c", + "zh:b58a22445fb8804e933dcf835ab06c29a0f33148dce61316814783ee7f4e4332", + "zh:cb5626a661ee761e0576defb2a2d75230a3244799d380864f3089c66e99d0dcc", + "zh:d1acb00d20445f682c4e705c965e5220530209c95609194c2dc39324f3d4fcce", + "zh:d91a254ba77b69a29d8eae8ed0e9367cbf0ea6ac1a85b58e190f8cb096a40871", + "zh:f6592327673c9f85cdb6f20336faef240abae7621b834f189c4a62276ea5db41", + ] +} + +provider "registry.terraform.io/hashicorp/helm" { + version = "3.0.2" + hashes = [ + "h1:+tHGl509bhyUrvvj9GQTBsdK+ImHJnRuo6ppDZPavqY=", + "zh:2778de76c7dfb2e85c75fe6de3c11172a25551ed499bfb9e9f940a5be81167b0", + "zh:3b4c436a41e4fbae5f152852a9bd5c97db4460af384e26977477a40adf036690", + "zh:617a372f5bb2288f3faf5fd4c878a68bf08541cf418a3dbb8a19bc41ad4a0bf2", + "zh:84de431479548c96cb61c495278e320f361e80ab4f8835a5425ece24a9b6d310", + "zh:8b4cf5f81d10214e5e1857d96cff60a382a22b9caded7f5d7a92e5537fc166c1", + "zh:baeb26a00ffbcf3d507cdd940b2a2887eee723af5d3319a53eec69048d5e341e", + "zh:ca05a8814e9bf5fbffcd642df3a8d9fae9549776c7057ceae6d6f56471bae80f", + "zh:ca4bf3f94dedb5c5b1a73568f2dad7daf0ef3f85e688bc8bc2d0e915ec148366", + "zh:d331f2129fd3165c4bda875c84a65555b22eb007801522b9e017d065ac69b67e", + "zh:e583b2b478dde67da28e605ab4ef6521c2e390299b471d7d8ef05a0b608dcdad", + "zh:f238b86611647c108c073d265f8891a2738d3158c247468ae0ff5b1a3ac4122a", "zh:f569b65999264a9416862bca5cd2a6177d94ccb0424f3a4ef424428912b9cb3c", - "zh:f827a9c1540d210c56053a2d5d5a6abda924896ffa8eeedc94054cf6d44c5f60", ] } @@ -101,100 +120,100 @@ provider "registry.terraform.io/hashicorp/kubernetes" { } provider "registry.terraform.io/hashicorp/null" { - version = "3.2.3" + version = "3.2.4" hashes = [ - "h1:+AnORRgFbRO6qqcfaQyeX80W0eX3VmjadjnUFUJTiXo=", - "zh:22d062e5278d872fe7aed834f5577ba0a5afe34a3bdac2b81f828d8d3e6706d2", - "zh:23dead00493ad863729495dc212fd6c29b8293e707b055ce5ba21ee453ce552d", - "zh:28299accf21763ca1ca144d8f660688d7c2ad0b105b7202554ca60b02a3856d3", - "zh:55c9e8a9ac25a7652df8c51a8a9a422bd67d784061b1de2dc9fe6c3cb4e77f2f", - "zh:756586535d11698a216291c06b9ed8a5cc6a4ec43eee1ee09ecd5c6a9e297ac1", + "h1:hkf5w5B6q8e2A42ND2CjAvgvSN3puAosDmOJb3zCVQM=", + "zh:59f6b52ab4ff35739647f9509ee6d93d7c032985d9f8c6237d1f8a59471bbbe2", "zh:78d5eefdd9e494defcb3c68d282b8f96630502cac21d1ea161f53cfe9bb483b3", - "zh:9d5eea62fdb587eeb96a8c4d782459f4e6b73baeece4d04b4a40e44faaee9301", - "zh:a6355f596a3fb8fc85c2fb054ab14e722991533f87f928e7169a486462c74670", - "zh:b5a65a789cff4ada58a5baffc76cb9767dc26ec6b45c00d2ec8b1b027f6db4ed", - "zh:db5ab669cf11d0e9f81dc380a6fdfcac437aea3d69109c7aef1a5426639d2d65", - "zh:de655d251c470197bcbb5ac45d289595295acb8f829f6c781d4a75c8c8b7c7dd", - "zh:f5c68199f2e6076bce92a12230434782bf768103a427e9bb9abee99b116af7b5", + "zh:795c897119ff082133150121d39ff26cb5f89a730a2c8c26f3a9c1abf81a9c43", + "zh:7b9c7b16f118fbc2b05a983817b8ce2f86df125857966ad356353baf4bff5c0a", + "zh:85e33ab43e0e1726e5f97a874b8e24820b6565ff8076523cc2922ba671492991", + "zh:9d32ac3619cfc93eb3c4f423492a8e0f79db05fec58e449dee9b2d5873d5f69f", + "zh:9e15c3c9dd8e0d1e3731841d44c34571b6c97f5b95e8296a45318b94e5287a6e", + "zh:b4c2ab35d1b7696c30b64bf2c0f3a62329107bd1a9121ce70683dec58af19615", + "zh:c43723e8cc65bcdf5e0c92581dcbbdcbdcf18b8d2037406a5f2033b1e22de442", + "zh:ceb5495d9c31bfb299d246ab333f08c7fb0d67a4f82681fbf47f2a21c3e11ab5", + "zh:e171026b3659305c558d9804062762d168f50ba02b88b231d20ec99578a6233f", + "zh:ed0fe2acdb61330b01841fa790be00ec6beaac91d41f311fb8254f74eb6a711f", ] } provider "registry.terraform.io/hashicorp/random" { - version = "3.6.3" + version = "3.7.2" hashes = [ - "h1:Fnaec9vA8sZ8BXVlN3Xn9Jz3zghSETIKg7ch8oXhxno=", - "zh:04ceb65210251339f07cd4611885d242cd4d0c7306e86dda9785396807c00451", - "zh:448f56199f3e99ff75d5c0afacae867ee795e4dfda6cb5f8e3b2a72ec3583dd8", - "zh:4b4c11ccfba7319e901df2dac836b1ae8f12185e37249e8d870ee10bb87a13fe", - "zh:4fa45c44c0de582c2edb8a2e054f55124520c16a39b2dfc0355929063b6395b1", - "zh:588508280501a06259e023b0695f6a18149a3816d259655c424d068982cbdd36", - "zh:737c4d99a87d2a4d1ac0a54a73d2cb62974ccb2edbd234f333abd079a32ebc9e", + "h1:356j/3XnXEKr9nyicLUufzoF4Yr6hRy481KIxRVpK0c=", + "zh:14829603a32e4bc4d05062f059e545a91e27ff033756b48afbae6b3c835f508f", + "zh:1527fb07d9fea400d70e9e6eb4a2b918d5060d604749b6f1c361518e7da546dc", + "zh:1e86bcd7ebec85ba336b423ba1db046aeaa3c0e5f921039b3f1a6fc2f978feab", + "zh:24536dec8bde66753f4b4030b8f3ef43c196d69cccbea1c382d01b222478c7a3", + "zh:29f1786486759fad9b0ce4fdfbbfece9343ad47cd50119045075e05afe49d212", + "zh:4d701e978c2dd8604ba1ce962b047607701e65c078cb22e97171513e9e57491f", "zh:78d5eefdd9e494defcb3c68d282b8f96630502cac21d1ea161f53cfe9bb483b3", - "zh:a357ab512e5ebc6d1fda1382503109766e21bbfdfaa9ccda43d313c122069b30", - "zh:c51bfb15e7d52cc1a2eaec2a903ac2aff15d162c172b1b4c17675190e8147615", - "zh:e0951ee6fa9df90433728b96381fb867e3db98f66f735e0c3e24f8f16903f0ad", - "zh:e3cdcb4e73740621dabd82ee6a37d6cfce7fee2a03d8074df65086760f5cf556", - "zh:eff58323099f1bd9a0bec7cb04f717e7f1b2774c7d612bf7581797e1622613a0", + "zh:7b8434212eef0f8c83f5a90c6d76feaf850f6502b61b53c329e85b3b281cba34", + "zh:ac8a23c212258b7976e1621275e3af7099e7e4a3d4478cf8d5d2a27f3bc3e967", + "zh:b516ca74431f3df4c6cf90ddcdb4042c626e026317a33c53f0b445a3d93b720d", + "zh:dc76e4326aec2490c1600d6871a95e78f9050f9ce427c71707ea412a2f2f1a62", + "zh:eac7b63e86c749c7d48f527671c7aee5b4e26c10be6ad7232d6860167f99dbb0", ] } provider "registry.terraform.io/hashicorp/tls" { - version = "4.0.6" + version = "4.1.0" hashes = [ - "h1:dYSb3V94K5dDMtrBRLPzBpkMTPn+3cXZ/kIJdtFL+2M=", - "zh:10de0d8af02f2e578101688fd334da3849f56ea91b0d9bd5b1f7a243417fdda8", - "zh:37fc01f8b2bc9d5b055dc3e78bfd1beb7c42cfb776a4c81106e19c8911366297", - "zh:4578ca03d1dd0b7f572d96bd03f744be24c726bfd282173d54b100fd221608bb", - "zh:6c475491d1250050765a91a493ef330adc24689e8837a0f07da5a0e1269e11c1", - "zh:81bde94d53cdababa5b376bbc6947668be4c45ab655de7aa2e8e4736dfd52509", - "zh:abdce260840b7b050c4e401d4f75c7a199fafe58a8b213947a258f75ac18b3e8", - "zh:b754cebfc5184873840f16a642a7c9ef78c34dc246a8ae29e056c79939963c7a", - "zh:c928b66086078f9917aef0eec15982f2e337914c5c4dbc31dd4741403db7eb18", - "zh:cded27bee5f24de6f2ee0cfd1df46a7f88e84aaffc2ecbf3ff7094160f193d50", - "zh:d65eb3867e8f69aaf1b8bb53bd637c99c6b649ba3db16ded50fa9a01076d1a27", - "zh:ecb0c8b528c7a619fa71852bb3fb5c151d47576c5aab2bf3af4db52588722eeb", + "h1:Ka8mEwRFXBabR33iN/WTIEW6RP0z13vFsDlwn11Pf2I=", + "zh:14c35d89307988c835a7f8e26f1b83ce771e5f9b41e407f86a644c0152089ac2", + "zh:2fb9fe7a8b5afdbd3e903acb6776ef1be3f2e587fb236a8c60f11a9fa165faa8", + "zh:35808142ef850c0c60dd93dc06b95c747720ed2c40c89031781165f0c2baa2fc", + "zh:35b5dc95bc75f0b3b9c5ce54d4d7600c1ebc96fbb8dfca174536e8bf103c8cdc", + "zh:38aa27c6a6c98f1712aa5cc30011884dc4b128b4073a4a27883374bfa3ec9fac", + "zh:51fb247e3a2e88f0047cb97bb9df7c228254a3b3021c5534e4563b4007e6f882", + "zh:62b981ce491e38d892ba6364d1d0cdaadcee37cc218590e07b310b1dfa34be2d", + "zh:bc8e47efc611924a79f947ce072a9ad698f311d4a60d0b4dfff6758c912b7298", + "zh:c149508bd131765d1bc085c75a870abb314ff5a6d7f5ac1035a8892d686b6297", + "zh:d38d40783503d278b63858978d40e07ac48123a2925e1a6b47e62179c046f87a", "zh:f569b65999264a9416862bca5cd2a6177d94ccb0424f3a4ef424428912b9cb3c", + "zh:fb07f708e3316615f6d218cec198504984c0ce7000b9f1eebff7516e384f4b54", ] } provider "registry.terraform.io/hashicorp/vault" { - version = "4.5.0" + version = "5.1.0" hashes = [ - "h1:oKiQcEqj/HTCMzgGtZ531D/jnnM0i7iguSM8pU7aK8U=", - "zh:0a9301aa6a9b59db97682be568329526033bb50a4a308ad695c2a1877c1241c3", - "zh:0f8fee69ea4eaa27b86a391edc7de8e8b215e3c48f7074bab799986d5f707014", - "zh:2a2e51fe280e07700920bc8ed29b77e5c79fada0e4d5315d55ec0d2893bb5eed", - "zh:3fc7d9016bebe26a4c779ce6b87b181ed6a1af12499419726b8b0a0e3eaa7234", + "h1:x9cfzSpsdqUfrKM4qD/Mfqvy66ZWKrLtA+PZx7HhqZ8=", + "zh:121c84975a3732d2c68db6b555c37a4520f3c283fd916e25e472e784518662a7", + "zh:2a80da4424db091d3b9846a569b0ae3e60f3e95b0a988ff94f3986391a62c93d", + "zh:2bcb3aadf97aecf0b9f98393affd766b929eafd3cb68ed4f26419405c3e8ec64", + "zh:5a5f11db49784e9be251fbad2bb3a46c5f9999ab4e1ea7940f120b3743afca28", "zh:78d5eefdd9e494defcb3c68d282b8f96630502cac21d1ea161f53cfe9bb483b3", - "zh:813a9e4875e58dbca2526b3088c0f76dbb2a66b10b910497a0b703518eaa73cd", - "zh:889ed6f21b94f89b8cbc4224454ced01a2792f12f53379d2fb1a2f2749bf624a", - "zh:acf9c01d403584015005083e64d8479d167e4f54e87e540311010133fcb5b023", - "zh:b377945a4b6a75c79793cb92c873aacc9c087c2a6e5792a1613f3aa2f3693848", - "zh:be243567b2a76ba2a546449e89764f707477cf25dcdd6d7f3b808ddf40aaf9f6", - "zh:d879fa16f391fb75b779067c751f3b8f80f5f4d73b2ff86814662038878a0ce4", - "zh:e47fb3daac933f5dcb034379fe77c0bf834512da7348e7643457c9af3b2ab36b", + "zh:976b000cf6fa75c33c3b3a3c2e5c67a8c1958744b0521a1f807de9f8855dc961", + "zh:a4321ce4ff9422d90c3c85bb4835a84563eb761d0714d1db9c81ca810a48fd7c", + "zh:a7464751eaf0b9cc7afb03e098d7efcf8c559215f3de7f34a56458e75709c94d", + "zh:ae434febd2590e58040308d18bf772f796b2fad90670be263acdd447db8fb106", + "zh:c61a27d8c9daa483feb4e3fecd42fa9f2887c5588433bb15df6d62572a7bb6f4", + "zh:dd2e8bdc76f09f8a47485d129140cd6126ad722014f6704ad5d8c4f18014571d", + "zh:f15d32b1eaeb419533e586b0c2c1e2b2f732925b3a094e31e9669cd6e6e735f0", ] } provider "registry.terraform.io/hetznercloud/hcloud" { - version = "1.49.1" + version = "1.51.0" constraints = "~> 1.45" hashes = [ - "h1:FKGRNHVbcfQJd8EWrb8Ze5QHkaGr8zI+ZKxBMjvOwPk=", - "zh:3d5f9773da4f8203cf625d04a5a0e4ff7e202684c010a801a945756140c61cde", - "zh:446305d492017cda91e5c15122ec16ff15bfe3ef4d3fd6bcea0cdf7742ab1b86", - "zh:44d4f9156ed8b4f0444bd4dc456825940be49048828565964a192286d28c9f20", - "zh:492ad893d2f89bb17c9beb877c8ceb4a16caf39db1a79030fefeada6c7aa217f", - "zh:68dc552c19ad9d209ec6018445df6e06fb77a637513a53cc66ddce1b024082be", - "zh:7492495ffda6f6c49ab38b539bd2eb965b1150a63fb6b191a27dec07d17601cb", - "zh:850fe92005981ea00db86c3e49ba5b49732fdf1f7bd5530a68f6e272847059fc", - "zh:8cb67f744c233acfb1d68a6c27686315439d944edf733b95f113b4aa63d86713", - "zh:8e13dac46e8c2497772ed1baee701b1d1c26bcc95a63b5c4566c83468f504868", - "zh:c44249c6a8ba931e208a334792686b5355ab2da465cadea03c1ea8e73c02db12", - "zh:d103125a28a85c89aea0cb0c534fe3f504416c4d4fc75c37364b9ec5f66dd77d", - "zh:ed8f64e826aa9bfca95b72892271678cb78411b40d7b404a52404141e05a4ab1", - "zh:f40efad816de00b279bd1e2cbf62c76b0e5b2da150a0764f259984b318e30945", - "zh:f5e912d0873bf4ecc43feba4ceccdf158048080c76d557e47f34749139fdd452", + "h1:yER+O3OKYfxBAO7KVYZzH+4EYrmorCO0J0hlnRUfH00=", + "zh:0e8e78084c12866e8e3873011bcac125780b62afeaa518d4749b9a063ae6e32b", + "zh:145738cee21bcdeea1cf82f0d44f7f239c27c2214249e5e5079668c479522a8a", + "zh:164406be8ee83952f58a449d514837cc6d9763b6d29e72262d5582d5d5b89315", + "zh:1a0e6ffab3196b35ca65eb445622615bb8dddd68d0bf350ed60d25e1e74f67dc", + "zh:3b7729d1bb5cc7a5af60b42a607f7b3fec690192b1efb55e2341cee88405ecb0", + "zh:3bcfc5c40d1b7702f39dac5d2dd9eef58c9c934effb4676e26fbe85fe2057e8f", + "zh:3ce193892dca025b804de6d99316c50a33462eb36336006a9db7ea44be439eba", + "zh:4f92437e1eba8eafe4417f8b61d557ed47f121622305ee2b3c13c31e45c69ca4", + "zh:554c308bf64b603a075a8f13a151a136b68ba382c2d83977a0df26de7dea2d3d", + "zh:8c57aa6032fed5da43a0102a4f26262c0496803b99f2f92e5ceb02c80161e291", + "zh:99cd4d246d0ad3a3529176df22a47f254700f8c4fc33f62c14464259284945b7", + "zh:af38a4d1e93f2392a296970ba4ecea341204e888d579cd74642e9f23a94b3b06", + "zh:f0766d42dd97b3eac6fa614fa5809ff2511c9104f3834d0d4b6e84674f13f092", + "zh:f20f7379876ede225f3b6f0719826706a171ea4c1dd438a8a3103dee8fe43ccc", ] } diff --git a/infra/clusters/bridge/backend.tfvars b/infra/clusters/bridge/backend.tfvars index dc42882..3d001af 100644 --- a/infra/clusters/bridge/backend.tfvars +++ b/infra/clusters/bridge/backend.tfvars @@ -1,6 +1,6 @@ endpoints = { s3 = "https://storage.bridge.fourlights.dev" } -access_key = "" -secret_key = "" +access_key = "T8V84SHIVT6MAV424ES0" +secret_key = "23+N28yBK+cL3O2t9xsstT8jr2TpK+SgORCVIuxc" bucket = "management" key = "terraform.tfstate" region = "eu-central-1" diff --git a/infra/clusters/bridge/terraform.tfvars b/infra/clusters/bridge/terraform.tfvars index da896a8..265984d 100644 --- a/infra/clusters/bridge/terraform.tfvars +++ b/infra/clusters/bridge/terraform.tfvars @@ -1,9 +1,9 @@ endpoints = { s3 = "https://storage.bridge.fourlights.dev" } -access_key = "" -secret_key = "" +access_key = "T8V84SHIVT6MAV424ES0" +secret_key = "23+N28yBK+cL3O2t9xsstT8jr2TpK+SgORCVIuxc" bucket = "management" region = "eu-central-1" minio_server = "storage.bridge.fourlights.dev" rancher_server = "https://rancher.bridge.fourlights.dev" -vault_token = "hvs.CAESIPcy0DY5Jc-d0P2ZRRhiLXr3DmOOawpoA6--QTCoRCqqGh4KHGh2cy5lZjhJdTRINEVKaU55Q21VUTg4ZzZwSWI" +vault_token = "hvs.BsIbdvXLdbQn0v4sR3jSWJa9" vault_addr = "https://vault.bridge.fourlights.dev" diff --git a/infra/modules/argocd/main.tf b/infra/modules/argocd/main.tf index 091ab39..fd5b6e2 100644 --- a/infra/modules/argocd/main.tf +++ b/infra/modules/argocd/main.tf @@ -31,23 +31,23 @@ resource "kubernetes_secret" "argocd-tls" { } resource "helm_release" "argocd" { - depends_on = [var.wait_on, kubernetes_secret.argocd-tls] + depends_on = [var.wait_on] name = "argocd" repository = "https://charts.bitnami.com/bitnami" chart = "argo-cd" namespace = kubernetes_namespace.argocd.metadata[0].name - version = "7.0.20" + version = "9.0.29" create_namespace = false wait = true wait_for_jobs = true - set_sensitive { + set_sensitive = [{ name = "config.secret.argocdServerAdminPassword" value = random_password.admin_password.result - } + }] values = [ - templatefile("${path.module}/values.yaml", { + templatefile("${path.module}/values.yaml.tftpl", { service_uri = local.service_uri, server_dns = var.server_dns, grpc_service_uri = local.grpc_service_uri, @@ -58,7 +58,9 @@ resource "helm_release" "argocd" { oauth_issuer = var.oauth_issuer, oauth_client_id = var.oauth_client_id, oauth_client_secret = var.oauth_client_secret, - oauth_redirect_uri = var.oauth_redirect_uri + oauth_redirect_uri = var.oauth_redirect_uri, + tls = var.tls, + ingress_class = var.ingressClass }) ] } diff --git a/infra/modules/argocd/provider.tf b/infra/modules/argocd/provider.tf index 6c84a8e..42c5053 100644 --- a/infra/modules/argocd/provider.tf +++ b/infra/modules/argocd/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/argocd/repository/provider.tf b/infra/modules/argocd/repository/provider.tf index 6c84a8e..42c5053 100644 --- a/infra/modules/argocd/repository/provider.tf +++ b/infra/modules/argocd/repository/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/argocd/values.yaml b/infra/modules/argocd/values.yaml deleted file mode 100644 index d838682..0000000 --- a/infra/modules/argocd/values.yaml +++ /dev/null @@ -1,74 +0,0 @@ -commonEnvVars: &commonEnvVars - - name: REDIS_USERNAME - value: "" - - name: REDIS_PASSWORD - value: ${ redis_password } - -commonArgs: &commonRedisArgs - - --redis=${ redis_service_uri }:6379 - - --redisdb=${ redis_index } - -redis: - enabled: false - -redisWait: - enabled: false - -externalRedis: - host: ${ redis_service_uri } - password: ${ redis_password } - database: ${ redis_index } - -dex: - enabled: true - -controller: - extraArgs: *commonRedisArgs - extraEnvVars: *commonEnvVars - -repoServer: - extraArgs: *commonRedisArgs - extraEnvVars: *commonEnvVars - -server: - extraArgs: *commonRedisArgs - extraEnvVars: *commonEnvVars - - url: https://${ service_uri } - insecure: true - ingress: - enabled: true - ingressClassName: traefik - hostname: ${ service_uri } - annotations: - kubernetes.io/ingress.class: traefik - traefik.ingress.kubernetes.io/router.entrypoints: web,websecure - traefik.ingress.kubernetes.io/router.middlewares: default-redirect-to-https@kubernetescrd,default-preserve-host-headers@kubernetescrd - extraTls: - - hosts: - - ${ service_uri } - secretName: argocd-tls - - config: - %{ if oauth_uri != null } - dex.config: | - connectors: - - type: oidc - id: oidc - name: OIDC - config: - issuer: ${ oauth_issuer } - clientID: ${ oauth_client_id } - clientSecret: ${ oauth_client_secret } - insecureSkipEmailVerified: true - insecureEnableGroups: true - scopes: - - profile - - email - - openid - - groups - claimMapping: - name: fullName # ArgoCD expects 'name', FusionAuth provides 'fullName' - preferred_username: email - %{ endif } - diff --git a/infra/modules/argocd/values.yaml.tftpl b/infra/modules/argocd/values.yaml.tftpl new file mode 100644 index 0000000..ece7647 --- /dev/null +++ b/infra/modules/argocd/values.yaml.tftpl @@ -0,0 +1,104 @@ +redis: + enabled: false + +redisWait: + enabled: false + +externalRedis: + host: ${ redis_service_uri } + password: ${ redis_password } + database: ${ redis_index } + +dex: + enabled: true + +controller: + extraArgs: + - --redis=${ redis_service_uri }:6379 + - --redisdb=${ redis_index } + extraEnvVars: + - name: REDIS_USERNAME + value: "" + - name: REDIS_PASSWORD + value: ${ redis_password } + +repoServer: + extraArgs: + - --redis=${ redis_service_uri }:6379 + - --redisdb=${ redis_index } + extraEnvVars: + - name: REDIS_USERNAME + value: "" + - name: REDIS_PASSWORD + value: ${ redis_password } + +server: + extraArgs: + - --redis=${ redis_service_uri }:6379 + - --redisdb=${ redis_index } + extraEnvVars: + - name: REDIS_USERNAME + value: "" + - name: REDIS_PASSWORD + value: ${ redis_password } + + url: https://${ service_uri } + insecure: true + ingress: + enabled: true + ingressClassName: ${ingress_class} + hostname: ${ service_uri } + annotations: + kubernetes.io/ingress.class: ${ingress_class} + cert-manager.io/cluster-issuer: letsencrypt + %{ if ingress_class == "traefik" } + %{ if tls } + traefik.ingress.kubernetes.io/router.entrypoints: web,websecure + traefik.ingress.kubernetes.io/router.middlewares: default-redirect-to-https@kubernetescrd,default-preserve-host-headers@kubernetescrd + %{ else } + traefik.ingress.kubernetes.io/router.entrypoints: web + traefik.ingress.kubernetes.io/router.middlewares: default-preserve-host-headers@kubernetescrd + %{ endif } + %{ else } + nginx.ingress.kubernetes.io/force-ssl-redirect: "true" + nginx.ingress.kubernetes.io/ssl-passthrough: "true" + %{ endif } + %{ if tls } + extraTls: + - hosts: + - ${ service_uri } + secretName: argocd-tls + %{ endif } + + config: + rbac: | + scopes: '[groups]' + "policy.csv": | + g, admin, role:admin + g, user, role:readonly + "policy.default": '' + %{ if oauth_uri != null } + dex.config: | + connectors: + - type: oidc + id: oidc + name: OIDC + config: + issuer: "${ oauth_issuer }" + clientID: "${ oauth_client_id }" + clientSecret: "${ oauth_client_secret }" + insecureSkipEmailVerified: true + insecureEnableGroups: true + scopes: + - profile + - email + - openid + - groups + logoutURL: "${ oauth_redirect_uri }" + getUserInfo: true + claimMapping: + name: fullName + groups: "urn:zitadel:iam:org:project:roles" + preferred_username: email + + %{ endif } diff --git a/infra/modules/argocd/variables.tf b/infra/modules/argocd/variables.tf index 69cc207..6b46fdd 100644 --- a/infra/modules/argocd/variables.tf +++ b/infra/modules/argocd/variables.tf @@ -64,3 +64,14 @@ variable "oauth_redirect_uri" { description = "OAuth redirect URI" default = null } + +variable "tls" { + type = bool + default = false +} + +variable "ingressClass" { + description = "Ingress class to use" + type = string + default = "nginx" +} diff --git a/infra/modules/cert-manager/hetzner/main.tf b/infra/modules/cert-manager/hetzner/main.tf index 61db133..7050ad6 100644 --- a/infra/modules/cert-manager/hetzner/main.tf +++ b/infra/modules/cert-manager/hetzner/main.tf @@ -4,10 +4,10 @@ resource "helm_release" "cert-manager-webhook-hetzner" { repository = "https://vadimkim.github.io/cert-manager-webhook-hetzner" chart = "cert-manager-webhook-hetzner" - set { + set = [{ name = "groupName" value = "acme.${var.tld}" - } + }] } resource "kubernetes_secret" "hetzner-secret" { diff --git a/infra/modules/cert-manager/hetzner/provider.tf b/infra/modules/cert-manager/hetzner/provider.tf index 7b43e74..8cb018b 100644 --- a/infra/modules/cert-manager/hetzner/provider.tf +++ b/infra/modules/cert-manager/hetzner/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/cert-manager/main.tf b/infra/modules/cert-manager/main.tf index 5bf7d79..fc547d1 100644 --- a/infra/modules/cert-manager/main.tf +++ b/infra/modules/cert-manager/main.tf @@ -5,22 +5,22 @@ resource "helm_release" "cert_manager" { create_namespace = true wait = true - set { + set = [{ name = "installCRDs" value = "true" - } - - set_list { - name = "dnsConfig.nameservers" - value = ["1.1.1.1", "8.8.8.8"] - } - - set { + }, + { name = "email" value = var.email - } + }] + + set_list = [{ + name = "dnsConfig.nameservers" + value = ["1.1.1.1", "8.8.8.8"] + }] } + output "installed" { value = true depends_on = [helm_release.cert_manager] diff --git a/infra/modules/cert-manager/provider.tf b/infra/modules/cert-manager/provider.tf index 71bc030..1de7152 100644 --- a/infra/modules/cert-manager/provider.tf +++ b/infra/modules/cert-manager/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/cluster/devops/provider.tf b/infra/modules/cluster/devops/provider.tf index 79fba7c..7cd8ea3 100644 --- a/infra/modules/cluster/devops/provider.tf +++ b/infra/modules/cluster/devops/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/cluster/init-rke2/main.tf b/infra/modules/cluster/init-rke2/main.tf index 754ba06..76603f8 100644 --- a/infra/modules/cluster/init-rke2/main.tf +++ b/infra/modules/cluster/init-rke2/main.tf @@ -7,6 +7,106 @@ module "longhorn" { wait_on = var.wait_on } +resource "helm_release" "descheduler" { + name = "descheduler" + repository = "https://kubernetes-sigs.github.io/descheduler/" + chart = "descheduler" + namespace = "kube-system" + version = "0.33.0" + + values = [ + yamlencode({ + deschedulerPolicy = { + # Only evict pods older than 5 minutes + maxPodLifeTimeSeconds = 300 + + # Respect PodDisruptionBudgets + evictLocalStoragePods = false + ignorePvcPods = true + + strategies = { + LowNodeUtilization = { + enabled = true + params = { + nodeResourceUtilizationThresholds = { + thresholds = { + cpu = 30 + memory = 30 + } + targetThresholds = { + cpu = 50 + memory = 50 + } + } + evictableNamespaces = { + exclude = ["kube-system", "longhorn-system"] + } + } + } + } + } + + # Additional settings + schedule = "*/10 * * * *" # Run every 10 minutes + + # Don't run on control plane nodes + nodeSelector = { + "node-role.kubernetes.io/control-plane" = null + } + + # Resource limits for the descheduler pod itself + resources = { + requests = { + cpu = "100m" + memory = "100Mi" + } + limits = { + cpu = "500m" + memory = "256Mi" + } + } + }) + ] +} + +# resource "kubernetes_config_map" "scheduler_config" { +# metadata { +# name = "scheduler-config" +# namespace = "kube-system" +# } +# +# data = { +# "config.yaml" = yamlencode({ +# apiVersion = "kubescheduler.config.k8s.io/v1beta3" +# kind = "KubeSchedulerConfiguration" +# profiles = [{ +# schedulerName = "default-scheduler" +# plugins = { +# score = { +# enabled = [ +# { name = "NodeResourcesFit", weight = 100 }, +# { name = "NodeResourcesBalancedAllocation", weight = 100 }, +# { name = "NodeAffinity", weight = 50 }, +# { name = "InterPodAffinity", weight = 50 }, +# { name = "NodePreferAvoidPods", weight = 10000 }, +# { name = "TaintToleration", weight = 100 } +# ] +# } +# } +# pluginConfig = [{ +# name = "NodeResourcesBalancedAllocation" +# args = { +# resources = [ +# { name = "cpu", weight = 100 }, +# { name = "memory", weight = 100 } +# ] +# } +# }] +# }] +# }) +# } +# } + # Configure ingress to allow forwarded headers resource "kubernetes_manifest" "rke2-ingress-nginx-config" { manifest = { @@ -21,6 +121,25 @@ resource "kubernetes_manifest" "rke2-ingress-nginx-config" { controller: config: use-forwarded-headers: "true" + + # Buffer settings to prevent "upstream sent too big header" errors + proxy-buffer-size: "16k" + proxy-buffers: "8 16k" + proxy-busy-buffers-size: "32k" + large-client-header-buffers: "4 16k" + client-header-buffer-size: "16k" + client-body-buffer-size: "16k" + + # File upload settings for production + client-max-body-size: "100m" + proxy-body-size: "100m" + proxy-request-buffering: "off" + + # Additional production timeouts + proxy-connect-timeout: "600" + proxy-send-timeout: "600" + proxy-read-timeout: "600" + client-body-timeout: "600" EOT } } diff --git a/infra/modules/cluster/init-rke2/provider.tf b/infra/modules/cluster/init-rke2/provider.tf index 7b43e74..8cb018b 100644 --- a/infra/modules/cluster/init-rke2/provider.tf +++ b/infra/modules/cluster/init-rke2/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/cluster/provider.tf b/infra/modules/cluster/provider.tf index 1bbdce0..bb24c0e 100644 --- a/infra/modules/cluster/provider.tf +++ b/infra/modules/cluster/provider.tf @@ -36,7 +36,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/cluster/tls/provider.tf b/infra/modules/cluster/tls/provider.tf index 7b43e74..8cb018b 100644 --- a/infra/modules/cluster/tls/provider.tf +++ b/infra/modules/cluster/tls/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/fusionauth/provider.tf b/infra/modules/fusionauth/provider.tf index 7b43e74..8cb018b 100644 --- a/infra/modules/fusionauth/provider.tf +++ b/infra/modules/fusionauth/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/homepage/main.tf b/infra/modules/homepage/main.tf index 7cd6fc6..63eaa79 100644 --- a/infra/modules/homepage/main.tf +++ b/infra/modules/homepage/main.tf @@ -4,7 +4,7 @@ resource "helm_release" "homepage" { chart = "homepage" namespace = var.namespace create_namespace = true - version = "2.0.1" + version = "2.1.0" values = [ templatefile("${path.module}/values.yaml.tftpl", { diff --git a/infra/modules/homepage/provider.tf b/infra/modules/homepage/provider.tf index 7b43e74..8cb018b 100644 --- a/infra/modules/homepage/provider.tf +++ b/infra/modules/homepage/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/homepage/values.yaml.tftpl b/infra/modules/homepage/values.yaml.tftpl index 8c40e6e..66e9fa9 100644 --- a/infra/modules/homepage/values.yaml.tftpl +++ b/infra/modules/homepage/values.yaml.tftpl @@ -1,26 +1,7 @@ config: bookmarks: - - Developer: - - Github: - - abbr: GH - href: https://github.com/ services: - - My First Group: - - My First Service: - href: http://localhost/ - description: Homepage is awesome - - - My Second Group: - - My Second Service: - href: http://localhost/ - description: Homepage is the best - - - My Third Group: - - My Third Service: - href: http://localhost/ - description: Homepage is 😎 widgets: - # show the kubernetes widget, with the cluster summary and individual nodes - kubernetes: cluster: show: true @@ -33,9 +14,6 @@ config: cpu: true memory: true showLabel: true - - search: - provider: duckduckgo - target: _blank kubernetes: mode: cluster settings: @@ -48,16 +26,20 @@ serviceAccount: # This enables the service account to access the necessary resources enableRbac: true +env: + - name: HOMEPAGE_ALLOWED_HOSTS + value: ${service_uri} + ingress: main: enabled: true - annotations: - # Example annotations to add Homepage to your Homepage! - gethomepage.dev/enabled: "true" - gethomepage.dev/name: "Homepage" - gethomepage.dev/description: "Dynamically Detected Homepage" - gethomepage.dev/group: "Dynamic" - gethomepage.dev/icon: "homepage.png" + #annotations: + # # Example annotations to add Homepage to your Homepage! + # gethomepage.dev/enabled: "true" + # gethomepage.dev/name: "Homepage" + # gethomepage.dev/description: "Dynamically Detected Homepage" + # gethomepage.dev/group: "Dynamic" + # gethomepage.dev/icon: "homepage.png" hosts: - host: ${service_uri} paths: diff --git a/infra/modules/letsencrypt/provider.tf b/infra/modules/letsencrypt/provider.tf index 71bc030..1de7152 100644 --- a/infra/modules/letsencrypt/provider.tf +++ b/infra/modules/letsencrypt/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/longhorn/main.tf b/infra/modules/longhorn/main.tf index d2a98b2..1992c67 100644 --- a/infra/modules/longhorn/main.tf +++ b/infra/modules/longhorn/main.tf @@ -7,50 +7,38 @@ resource "helm_release" "longhorn" { create_namespace = true version = "1.7.1" - set { - name = "defaultSettings.defaultDataPath" - value = "/var/lib/longhorn/" - } - - set { - name = "defaultSettings.defaultDataLocality" - value = "best-effort" - } - - set { - name = "defaultSettings.storageOverProvisioningPercentage" - value = "90" - } - - # set { - # name = "global.cattle.systemDefaultRegistry" - # value = "" # Set this to your private registry if you're using one - # } - - set { - name = "csi.kubeletRootDir" - value = "/var/lib/kubelet" # Adjust if your Rancher setup uses a different path - } - - set { - name = "enablePSP" - value = "false" - } - - set { - name = "serviceMonitor.enabled" - value = "true" - } - - set { - name = "persistence.defaultClassReplicaCount" - value = "1" - } - - set { - name = "persistence.defaultDataLocality" - value = "best-effort" - } + set = [{ + name = "defaultSettings.defaultDataPath" + value = "/var/lib/longhorn/" + }, + { + name = "defaultSettings.defaultDataLocality" + value = "best-effort" + }, + { + name = "defaultSettings.storageOverProvisioningPercentage" + value = "90" + }, + { + name = "csi.kubeletRootDir" + value = "/var/lib/kubelet" # Adjust if your Rancher setup uses a different path + }, + { + name = "enablePSP" + value = "false" + }, + { + name = "serviceMonitor.enabled" + value = "true" + }, + { + name = "persistence.defaultClassReplicaCount" + value = "1" + }, + { + name = "persistence.defaultDataLocality" + value = "best-effort" + }] } output "installed" { diff --git a/infra/modules/longhorn/provider.tf b/infra/modules/longhorn/provider.tf index 7b43e74..8cb018b 100644 --- a/infra/modules/longhorn/provider.tf +++ b/infra/modules/longhorn/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/mijn-365zon-nl/provider.tf b/infra/modules/mijn-365zon-nl/provider.tf index 71bc030..1de7152 100644 --- a/infra/modules/mijn-365zon-nl/provider.tf +++ b/infra/modules/mijn-365zon-nl/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/minio/main.tf b/infra/modules/minio/main.tf index 4873dd8..c4d8d3f 100644 --- a/infra/modules/minio/main.tf +++ b/infra/modules/minio/main.tf @@ -6,50 +6,56 @@ resource "random_password" "minio_access_key" { resource "random_password" "minio_secret_key" { length = 40 special = true + #override_special = "!#$%&*()-_=+[]{}<>:?" + #min_special = 2 + #min_upper = 2 + #min_lower = 2 + #min_numeric = 2 } resource "helm_release" "minio" { name = "minio" - repository = "https://charts.bitnami.com/bitnami" + repository = "oci://registry-1.docker.io/bitnamicharts" chart = "minio" namespace = var.namespace create_namespace = true - version = "14.7.16" + version = "16.0.0" + wait = true + wait_for_jobs = true - set_sensitive { - name = "auth.rootUser" - value = random_password.minio_access_key.result - } + set_sensitive = [{ + name = "auth.rootUser" + value = random_password.minio_access_key.result + }, + { + name = "auth.rootPassword" + value = random_password.minio_secret_key.result + }] - set_sensitive { - name = "auth.rootPassword" - value = random_password.minio_secret_key.result - } - - set { + set = [{ name = "mode" value = var.mode - } + }, - set { + { name = "resourcesPreset" value = "nano" - } + }, - set { + { name = "statefulset.replicaCount" value = var.replicas - } + }, - set { + { name = "statefulset.drivesPerNode" value = var.replicas < 4 ? 2 : 1 - } + }, - set { + { name = "persistence.size" value = var.storageSize - } + }] values = [ templatefile("${path.module}/values.yaml.tftpl", { @@ -58,6 +64,7 @@ resource "helm_release" "minio" { admin = var.admin, tls = var.mode == "distributed" ? false : var.tls ingressClass = var.ingressClass + displayOnHomepage = var.displayOnHomepage }) ] } @@ -66,3 +73,13 @@ output "installed" { value = true depends_on = [helm_release.minio] } + +output "access_key" { + value = random_password.minio_access_key.result + sensitive = true +} + +output "secret_key" { + value = random_password.minio_secret_key.result + sensitive = true +} diff --git a/infra/modules/minio/provider.tf b/infra/modules/minio/provider.tf index 7b43e74..8cb018b 100644 --- a/infra/modules/minio/provider.tf +++ b/infra/modules/minio/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/minio/tenant/main.tf b/infra/modules/minio/tenant/main.tf index b28e7e9..29b9a65 100644 --- a/infra/modules/minio/tenant/main.tf +++ b/infra/modules/minio/tenant/main.tf @@ -1,10 +1,28 @@ -resource "minio_s3_bucket" "overlay" { +resource "null_resource" "health_check" { depends_on = [var.wait_on] + + provisioner "local-exec" { + command = <<-EOT + until curl -s -f "https://${var.server}/minio/health/live" || [[ $attempts -ge 60 ]]; do + sleep 10 + attempts=$((attempts+1)) + done + if [[ $attempts -ge 60 ]]; then + echo "Minio health check failed after maximum attempts" + exit 1 + fi + EOT + } +} + +resource "minio_s3_bucket" "overlay" { + depends_on = [null_resource.health_check] bucket = var.name acl = "private" } resource "minio_s3_bucket_policy" "overlay" { + depends_on = [minio_s3_bucket.overlay] bucket = minio_s3_bucket.overlay.bucket policy = jsonencode({ "Version" : "2012-10-17", @@ -20,7 +38,7 @@ resource "minio_s3_bucket_policy" "overlay" { "s3:GetBucketLocation" ], "Resource" : [ - "arn:aws:s3:::bouwroute" + minio_s3_bucket.overlay.arn, ] }, { @@ -34,7 +52,7 @@ resource "minio_s3_bucket_policy" "overlay" { "s3:ListBucket" ], "Resource" : [ - "arn:aws:s3:::bouwroute" + minio_s3_bucket.overlay.arn, ], "Condition" : { "StringEquals" : { @@ -55,7 +73,72 @@ resource "minio_s3_bucket_policy" "overlay" { "s3:GetObject" ], "Resource" : [ - "arn:aws:s3:::bouwroute/**" + "${minio_s3_bucket.overlay.arn}/**", + ] + } + ] + }) +} + +resource "minio_s3_bucket" "uploads" { + depends_on = [null_resource.health_check] + bucket = "uploads" + acl = "private" +} + +resource "minio_s3_bucket_policy" "uploads" { + depends_on = [minio_s3_bucket.uploads] + bucket = minio_s3_bucket.uploads.bucket + policy = jsonencode({ + "Version" : "2012-10-17", + "Statement" : [ + { + "Effect" : "Allow", + "Principal" : { + "AWS" : [ + "*" + ] + }, + "Action" : [ + "s3:GetBucketLocation" + ], + "Resource" : [ + minio_s3_bucket.uploads.arn, + ] + }, + { + "Effect" : "Allow", + "Principal" : { + "AWS" : [ + "*" + ] + }, + "Action" : [ + "s3:ListBucket" + ], + "Resource" : [ + minio_s3_bucket.uploads.arn, + ], + "Condition" : { + "StringEquals" : { + "s3:prefix" : [ + "*" + ] + } + } + }, + { + "Effect" : "Allow", + "Principal" : { + "AWS" : [ + "*" + ] + }, + "Action" : [ + "s3:GetObject" + ], + "Resource" : [ + "${minio_s3_bucket.uploads.arn}/**", ] } ] @@ -63,10 +146,12 @@ resource "minio_s3_bucket_policy" "overlay" { } resource "minio_iam_user" "overlay" { + depends_on = [null_resource.health_check] name = var.name } resource "minio_iam_policy" "overlay" { + depends_on = [minio_s3_bucket.overlay, minio_s3_bucket.uploads] name = minio_s3_bucket.overlay.bucket policy = jsonencode({ Version = "2012-10-17" @@ -74,7 +159,7 @@ resource "minio_iam_policy" "overlay" { { Effect = "Allow" Action = ["s3:ListBucket"] - Resource = ["arn:aws:s3:::${var.name}"] + Resource = [minio_s3_bucket.overlay.arn, minio_s3_bucket.uploads.arn, ] }, { Effect = "Allow" @@ -83,7 +168,7 @@ resource "minio_iam_policy" "overlay" { "s3:PutObject", "s3:DeleteObject" ] - Resource = ["arn:aws:s3:::${var.name}/*"] + Resource = ["${minio_s3_bucket.overlay.arn}/*", "${minio_s3_bucket.uploads.arn}/*"] } ] }) @@ -91,11 +176,14 @@ resource "minio_iam_policy" "overlay" { resource "minio_iam_user_policy_attachment" "overlay" { + depends_on = [minio_iam_user.overlay, minio_iam_policy.overlay] + user_name = minio_iam_user.overlay.id policy_name = minio_iam_policy.overlay.id } resource "minio_iam_service_account" "overlay" { + depends_on = [minio_iam_user.overlay, minio_s3_bucket.overlay, minio_s3_bucket.uploads] target_user = minio_iam_user.overlay.name policy = jsonencode({ Version = "2012-10-17" @@ -103,7 +191,7 @@ resource "minio_iam_service_account" "overlay" { { Effect = "Allow" Action = ["s3:ListBucket"] - Resource = ["arn:aws:s3:::${var.name}"] + Resource = [minio_s3_bucket.overlay.arn, minio_s3_bucket.uploads.arn] }, { Effect = "Allow" @@ -112,12 +200,16 @@ resource "minio_iam_service_account" "overlay" { "s3:PutObject", "s3:DeleteObject" ] - Resource = ["arn:aws:s3:::${var.name}/*"] + Resource = ["${minio_s3_bucket.overlay.arn}/*", "${minio_s3_bucket.uploads.arn}/*"] } ] }) } +output "bucket" { + value = var.name +} + output "access_key" { value = minio_iam_service_account.overlay.access_key sensitive = true diff --git a/infra/modules/minio/tenant/providers.tf b/infra/modules/minio/tenant/providers.tf index 58e0984..6073068 100644 --- a/infra/modules/minio/tenant/providers.tf +++ b/infra/modules/minio/tenant/providers.tf @@ -2,7 +2,7 @@ terraform { required_providers { minio = { source = "aminueza/minio" - version = "~> 2.5.0" + version = "~> 3.3.0" } } } diff --git a/infra/modules/minio/values.yaml.tftpl b/infra/modules/minio/values.yaml.tftpl index 0fe6965..6d639dc 100644 --- a/infra/modules/minio/values.yaml.tftpl +++ b/infra/modules/minio/values.yaml.tftpl @@ -1,6 +1,12 @@ tls: enabled: ${tobool(tls)} +metrics: + enabled: true + serviceMonitor: + enabled: true + namespace: monitoring + ingress: enabled: ${tobool(admin)} tls: ${tobool(tls)} @@ -22,6 +28,13 @@ ingress: ingress.kubernetes.io/proxy-body-size: "0" nginx.ingress.kubernetes.io/proxy-body-size: "0" %{ endif } + %{ if displayOnHomepage } + gethomepage.dev/enabled: "true" + gethomepage.dev/name: "Minio" + gethomepage.dev/description: "S3-Compatible cloud storage" + gethomepage.dev/group: "Tools" + gethomepage.dev/icon: "minio.png" + %{ endif } apiIngress: enabled: true @@ -44,3 +57,13 @@ apiIngress: ingress.kubernetes.io/proxy-body-size: "0" nginx.ingress.kubernetes.io/proxy-body-size: "0" %{ endif } + +affinity: + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - weight: 100 + podAffinityTerm: + labelSelector: + matchLabels: + app.kubernetes.io/name: minio + topologyKey: kubernetes.io/hostname \ No newline at end of file diff --git a/infra/modules/minio/variables.tf b/infra/modules/minio/variables.tf index e4c0dfd..5b72ab1 100644 --- a/infra/modules/minio/variables.tf +++ b/infra/modules/minio/variables.tf @@ -61,7 +61,11 @@ variable "ingressClass" { } variable "storageSize" { - type = string + type = string default = "6Gi" } +variable "displayOnHomepage" { + type = bool + default = false +} diff --git a/infra/modules/mongodb/main.tf b/infra/modules/mongodb/main.tf index 5b16d72..7110384 100644 --- a/infra/modules/mongodb/main.tf +++ b/infra/modules/mongodb/main.tf @@ -56,3 +56,16 @@ output "installed" { value = true depends_on = [helm_release.mongodb] } + +output "connection_string" { + value = format( + "mongodb://%s:%s@%s/%s?replicaSet=rs0&authSource=admin", + "root", + random_password.mongodb_root_password.result, + join(",", [ + for i in range(var.replicas) :format("mongodb-%d.mongodb-headless.mongodb.svc.cluster.local:27017", i) + ]), + "admin" + ) + sensitive = true +} diff --git a/infra/modules/mongodb/provider.tf b/infra/modules/mongodb/provider.tf index 6c84a8e..42c5053 100644 --- a/infra/modules/mongodb/provider.tf +++ b/infra/modules/mongodb/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/mongodb/values.yaml b/infra/modules/mongodb/values.yaml index 86acfeb..b0a4614 100644 --- a/infra/modules/mongodb/values.yaml +++ b/infra/modules/mongodb/values.yaml @@ -16,14 +16,14 @@ mongodb: readinessProbe: initialDelaySeconds: 30 periodSeconds: 10 - timeoutSeconds: 5 + timeoutSeconds: 15 failureThreshold: 3 successThreshold: 1 livenessProbe: initialDelaySeconds: 60 periodSeconds: 20 - timeoutSeconds: 5 + timeoutSeconds: 15 failureThreshold: 6 # Proper shutdown handling @@ -55,3 +55,11 @@ auth: - ${ database } %{ endfor ~} %{ endif } + +resources: + limits: + cpu: 1000m + memory: 1.5Gi + requests: + cpu: 500m + memory: 1Gi diff --git a/infra/modules/monitoring/locals.tf b/infra/modules/monitoring/locals.tf new file mode 100644 index 0000000..6bf05a2 --- /dev/null +++ b/infra/modules/monitoring/locals.tf @@ -0,0 +1,3 @@ +locals { + service_uri = join(".", [var.service_name, var.server_dns]) +} diff --git a/infra/modules/monitoring/main.tf b/infra/modules/monitoring/main.tf new file mode 100644 index 0000000..bdcc875 --- /dev/null +++ b/infra/modules/monitoring/main.tf @@ -0,0 +1,92 @@ +# Monitoring stack for k3s cluster with Thanos +terraform { + required_providers { + helm = { + source = "hashicorp/helm" + version = ">= 2.0.0" + } + kubernetes = { + source = "hashicorp/kubernetes" + version = ">= 2.0.0" + } + } +} + +# Create monitoring namespace +resource "kubernetes_namespace" "monitoring" { + metadata { + name = "monitoring" + } + + lifecycle { + ignore_changes = [metadata] + } +} + +resource "random_password" "grafana_admin_password" { + length = 40 + special = false +} + +# Create secret for remote write authentication +resource "kubernetes_secret" "prometheus_remote_write_auth" { + metadata { + name = "prometheus-remote-write-auth" + namespace = kubernetes_namespace.monitoring.metadata[0].name + } + + data = { + username = var.remote_write_username + password = var.remote_write_password + } +} + +# Prometheus + Grafana + Alertmanager stack +resource "helm_release" "kube_prometheus_stack" { + depends_on = [var.wait_on, kubernetes_secret.prometheus_remote_write_auth] + + name = "monitoring" + repository = "https://prometheus-community.github.io/helm-charts" + chart = "kube-prometheus-stack" + namespace = kubernetes_namespace.monitoring.metadata[0].name + version = "75.9.0" # Specify version for reproducibility + + # Use values from template file + values = [ + templatefile("${path.module}/monitoring-values.yaml.tftpl", { + remote_write_url = var.remote_write_url + remote_read_url = var.remote_read_url + grafana_admin_password = random_password.grafana_admin_password.result + }) + ] +} + +# Output important endpoints +output "grafana_url" { + value = "http://monitoring-grafana.${kubernetes_namespace.monitoring.metadata[0].name}.svc.cluster.local" +} + +output "alertmanager_url" { + value = "http://monitoring-kube-prometheus-alertmanager.${kubernetes_namespace.monitoring.metadata[0].name}.svc.cluster.local:9093" +} + +output "prometheus_url" { + value = "http://monitoring-kube-prometheus-prometheus.${kubernetes_namespace.monitoring.metadata[0].name}.svc.cluster.local:9090" +} + +# Instructions for accessing services +output "access_instructions" { + value = <<-EOT + To access services from outside the cluster: + + Grafana: + kubectl port-forward -n ${kubernetes_namespace.monitoring.metadata[0].name} svc/monitoring-grafana 3000:80 + + Alertmanager: + kubectl port-forward -n ${kubernetes_namespace.monitoring.metadata[0].name} svc/monitoring-kube-prometheus-alertmanager 9093:9093 + + Default Grafana credentials: + Username: admin + Password: ${random_password.grafana_admin_password.result} + EOT +} \ No newline at end of file diff --git a/infra/modules/monitoring/monitoring-values.yaml.tftpl b/infra/modules/monitoring/monitoring-values.yaml.tftpl new file mode 100644 index 0000000..e9d9f69 --- /dev/null +++ b/infra/modules/monitoring/monitoring-values.yaml.tftpl @@ -0,0 +1,135 @@ +additionalPrometheusRulesMap: + custom-app-rules: + groups: + - name: aspnetcore + interval: 5m + rules: + - alert: HighRequestLatency + expr: histogram_quantile(0.95, sum by (job, instance) (rate(http_request_duration_seconds_bucket[5m]))) > 0.5 + for: 5m + labels: + severity: warning + annotations: + summary: "High request latency on {{ $labels.instance }}" + description: "95th percentile latency is above 500ms (current value: {{ $value }}s)" + - alert: HighErrorRate + expr: 'rate(http_requests_total{status=~"5.."}[5m]) > 0.05' + for: 5m + labels: + severity: critical + annotations: + summary: "High error rate on {{ $labels.instance }}" + description: "Error rate is above 5% (current value: {{ $value }})" + +prometheus: + prometheusSpec: + retention: 24h + retentionSize: 10GB + + resources: + requests: + memory: 200Mi + cpu: 100m + limits: + memory: 500Mi + cpu: 500m + + # Remote write to VictoriaMetrics + remoteWrite: + - url: ${remote_write_url} + queueConfig: + maxSamplesPerSend: 10000 + maxShards: 5 + minShards: 1 + batchSendDeadline: 5s + basicAuth: + username: + name: prometheus-remote-write-auth + key: username + password: + name: prometheus-remote-write-auth + key: password + writeRelabelConfigs: + - sourceLabels: ["__name__"] + regex: "(up|kube_.*|container_.*|node_.*|http_.*|process_.*)" + action: keep + + # Remote read from VictoriaMetrics for old data + remoteRead: + - url: ${remote_read_url} + basicAuth: + username: + name: prometheus-remote-write-auth + key: username + password: + name: prometheus-remote-write-auth + key: password + readRecent: false # Only read data older than local retention + +alertmanager: + enabled: true + alertmanagerSpec: + replicas: 1 + resources: + requests: + memory: 50Mi + cpu: 10m + limits: + memory: 150Mi + cpu: 100m + retention: 24h + +grafana: + resources: + requests: + memory: 100Mi + cpu: 50m + limits: + memory: 300Mi + cpu: 200m + persistence: + enabled: true + size: 1Gi + adminUser: admin + adminPassword: ${grafana_admin_password} + +kubeStateMetrics: + resources: + requests: + memory: 50Mi + cpu: 10m + limits: + memory: 150Mi + cpu: 100m + +nodeExporter: + resources: + requests: + memory: 30Mi + cpu: 10m + limits: + memory: 100Mi + cpu: 100m + +prometheusOperator: + resources: + requests: + memory: 100Mi + cpu: 50m + limits: + memory: 300Mi + cpu: 200m + +defaultRules: + create: true + rules: + alertmanager: true + etcd: false + general: true + k8s: true + kubernetesApps: true + kubernetesResources: true + kubernetesStorage: true + kubernetesSystem: true + node: true + prometheus: true \ No newline at end of file diff --git a/infra/modules/monitoring/provider.tf b/infra/modules/monitoring/provider.tf new file mode 100644 index 0000000..8cb018b --- /dev/null +++ b/infra/modules/monitoring/provider.tf @@ -0,0 +1,33 @@ +locals { + k8s_config = yamldecode(var.k8s_config_yaml) + k8s_host = local.k8s_config.clusters[0].cluster.server + k8s_auth = try( + { + token = local.k8s_config.users[0].user.token + using_token = true + }, + { + client_certificate = base64decode(local.k8s_config.users[0].user["client-certificate-data"]) + client_key = base64decode(local.k8s_config.users[0].user["client-key-data"]) + using_token = false + } + ) +} + +provider "kubernetes" { + host = local.k8s_host + insecure = true + token = local.k8s_auth.using_token ? local.k8s_auth.token : null + client_certificate = local.k8s_auth.using_token ? null : local.k8s_auth.client_certificate + client_key = local.k8s_auth.using_token ? null : local.k8s_auth.client_key +} + +provider "helm" { + kubernetes = { + host = local.k8s_host + insecure = true + token = local.k8s_auth.using_token ? local.k8s_auth.token : null + client_certificate = local.k8s_auth.using_token ? null : local.k8s_auth.client_certificate + client_key = local.k8s_auth.using_token ? null : local.k8s_auth.client_key + } +} diff --git a/infra/modules/monitoring/variables.tf b/infra/modules/monitoring/variables.tf new file mode 100644 index 0000000..2a5d2cf --- /dev/null +++ b/infra/modules/monitoring/variables.tf @@ -0,0 +1,60 @@ +variable "remote_write_url" { + description = "URL for remote write endpoint on local machine" + type = string + default = "https://metrics.binarysunset.dev/api/v1/write" +} + +variable "remote_read_url" { + description = "URL for remote read endpoint on local machine" + type = string + default = "https://metrics.binarysunset.dev/api/v1/read" +} + +variable "remote_write_username" { + description = "Username for remote write authentication" + type = string + default = "prometheus" +} + +variable "remote_write_password" { + description = "Password for remote write authentication" + type = string + default = "your-secure-password" + sensitive = true +} + +variable "service_name" { + type = string + description = "Name of the service" + default = "auth" +} + +variable "server_dns" { + type = string + description = "Domain for the server" +} + +variable "k8s_config_yaml" { + description = "Content of k8s config yaml file" + type = string +} + +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "namespace" { + type = string +} + +variable "enabled" { + type = bool + default = true +} + +variable "ingressClass" { + type = string + default = "nginx" +} diff --git a/infra/modules/postgresql/main.tf b/infra/modules/postgresql/main.tf index 0e2ef9f..5de514b 100644 --- a/infra/modules/postgresql/main.tf +++ b/infra/modules/postgresql/main.tf @@ -1,4 +1,6 @@ resource "kubernetes_namespace" "postgresql" { + count = var.enabled ? 1 : 0 + metadata { name = var.namespace } @@ -9,21 +11,32 @@ resource "kubernetes_namespace" "postgresql" { } resource "random_password" "postgresql_user_password" { - length = 40 - special = true + length = 40 + special = true + override_special = "!#$%&*()-_=+[]{}<>:?" + min_special = 2 + min_upper = 2 + min_lower = 2 + min_numeric = 2 } resource "random_password" "postgresql_root_password" { - length = 40 - special = true + length = 40 + special = true + override_special = "!#$%&*()-_=+[]{}<>:?" + min_special = 2 + min_upper = 2 + min_lower = 2 + min_numeric = 2 } resource "kubernetes_secret" "postgresql_auth" { - type = "generic" + count = var.enabled ? 1 : 0 + type = "generic" depends_on = [var.wait_on] metadata { name = "postgresql-auth" - namespace = kubernetes_namespace.postgresql.metadata.0.name + namespace = kubernetes_namespace.postgresql[count.index].metadata.0.name } data = { @@ -33,11 +46,12 @@ resource "kubernetes_secret" "postgresql_auth" { } resource "helm_release" "postgresql" { + count = var.enabled ? 1 : 0 depends_on = [var.wait_on, kubernetes_secret.postgresql_auth] name = "postgresql" repository = "https://charts.bitnami.com/bitnami" chart = "postgresql" - namespace = kubernetes_namespace.postgresql.metadata.0.name + namespace = kubernetes_namespace.postgresql[count.index].metadata.0.name version = "16.0.5" wait = true diff --git a/infra/modules/postgresql/provider.tf b/infra/modules/postgresql/provider.tf index 6c84a8e..42c5053 100644 --- a/infra/modules/postgresql/provider.tf +++ b/infra/modules/postgresql/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/postgresql/tenant/main.tf b/infra/modules/postgresql/tenant/main.tf index d2cad9b..b8b3182 100644 --- a/infra/modules/postgresql/tenant/main.tf +++ b/infra/modules/postgresql/tenant/main.tf @@ -17,6 +17,7 @@ resource "random_password" "tenant" { } resource "kubernetes_job" "create-tenant" { + count = var.enabled ? 1 : 0 depends_on = [var.wait_on] metadata { @@ -108,5 +109,5 @@ output "username" { } output "job_name" { - value = kubernetes_job.create-tenant.metadata[0].name + value = var.enabled ? kubernetes_job.create-tenant[0].metadata[0].name : null } diff --git a/infra/modules/postgresql/tenant/provider.tf b/infra/modules/postgresql/tenant/provider.tf index 7b43e74..8cb018b 100644 --- a/infra/modules/postgresql/tenant/provider.tf +++ b/infra/modules/postgresql/tenant/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/postgresql/tenant/variables.tf b/infra/modules/postgresql/tenant/variables.tf index 46c3a52..bc30f8c 100644 --- a/infra/modules/postgresql/tenant/variables.tf +++ b/infra/modules/postgresql/tenant/variables.tf @@ -38,3 +38,8 @@ variable "k8s_config_yaml" { description = "Content of k8s config yaml file" type = string } + +variable "enabled" { + type = bool + default = true +} diff --git a/infra/modules/postgresql/variables.tf b/infra/modules/postgresql/variables.tf index 3c3eb32..1e10dd0 100644 --- a/infra/modules/postgresql/variables.tf +++ b/infra/modules/postgresql/variables.tf @@ -16,3 +16,8 @@ variable "namespace" { variable "username" { type = string } + +variable "enabled" { + type = bool + default = true +} diff --git a/infra/modules/rabbitmq/main.tf b/infra/modules/rabbitmq/main.tf index ea2d5e1..8fc8195 100644 --- a/infra/modules/rabbitmq/main.tf +++ b/infra/modules/rabbitmq/main.tf @@ -12,20 +12,19 @@ resource "helm_release" "rabbitmq" { create_namespace = true version = "15.1.0" - set_sensitive { + set_sensitive = [{ name = "auth.password" value = random_password.password.result - } + }] - set { + set = [{ name = "replicaCount" value = var.replicas - } - - set { + }, + { name = "persistence.size" value = "4Gi" - } + }] values = [ templatefile("${path.module}/values.yaml.tftpl", { @@ -41,3 +40,8 @@ output "installed" { value = true depends_on = [helm_release.rabbitmq] } + +output "connection_string" { + value = "rabbitmq://user:${random_password.password.result}@rabbitmq-headless.${var.namespace}.svc.cluster.local:5672/" + sensitive = true +} diff --git a/infra/modules/rabbitmq/provider.tf b/infra/modules/rabbitmq/provider.tf index 7b43e74..8cb018b 100644 --- a/infra/modules/rabbitmq/provider.tf +++ b/infra/modules/rabbitmq/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/rancher/main.tf b/infra/modules/rancher/main.tf index e34e524..29bcc66 100644 --- a/infra/modules/rancher/main.tf +++ b/infra/modules/rancher/main.tf @@ -10,15 +10,15 @@ resource "helm_release" "rancher_server" { values = [file("${path.module}/rancher-values.yaml")] - set { + set = [{ name = "hostname" value = join(".", ["rancher", var.server_dns]) - } + }, - set { + { name = "bootstrapPassword" value = "admin" # TODO: change this once the terraform provider has been updated with the new pw bootstrap logic - } + }] } resource "random_password" "admin_password" { diff --git a/infra/modules/rancher/provider.tf b/infra/modules/rancher/provider.tf index 135604e..55f2d55 100644 --- a/infra/modules/rancher/provider.tf +++ b/infra/modules/rancher/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/redis/provider.tf b/infra/modules/redis/provider.tf index 7b43e74..8cb018b 100644 --- a/infra/modules/redis/provider.tf +++ b/infra/modules/redis/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/traefik/provider.tf b/infra/modules/traefik/provider.tf index 71bc030..1de7152 100644 --- a/infra/modules/traefik/provider.tf +++ b/infra/modules/traefik/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/traefik/traefik-values.yaml b/infra/modules/traefik/traefik-values.yaml index a97e673..fe8ff19 100644 --- a/infra/modules/traefik/traefik-values.yaml +++ b/infra/modules/traefik/traefik-values.yaml @@ -11,11 +11,11 @@ ports: port: 8000 protocol: TCP proxyProtocol: - trustedIPs: [127.0.0.1/8,10.0.0.0/8] + trustedIPs: [ 127.0.0.1/8,10.0.0.0/8 ] forwardedHeaders: - trustedIPs: [127.0.0.1/8,10.0.0.0/8] + trustedIPs: [ 127.0.0.1/8,10.0.0.0/8 ] transport: - respondingTimouts: + respondingTimeouts: writeTimeout: 0 idleTimeout: 0 readTimeout: 0 @@ -26,11 +26,11 @@ ports: port: 8443 protocol: TCP proxyProtocol: - trustedIPs: [127.0.0.1/8,10.0.0.0/8] + trustedIPs: [ 127.0.0.1/8,10.0.0.0/8 ] forwardedHeaders: - trustedIPs: [127.0.0.1/8,10.0.0.0/8] + trustedIPs: [ 127.0.0.1/8,10.0.0.0/8 ] transport: - respondingTimouts: + respondingTimeouts: writeTimeout: 0 idleTimeout: 0 readTimeout: 0 @@ -41,9 +41,9 @@ ports: port: 2223 protocol: TCP proxyProtocol: - trustedIPs: [127.0.0.1/8,10.0.0.0/8] + trustedIPs: [ 127.0.0.1/8,10.0.0.0/8 ] transport: - respondingTimouts: + respondingTimeouts: writeTimeout: 600s idleTimeout: 60s readTimeout: 600s @@ -54,9 +54,9 @@ ports: port: 8993 protocol: TCP proxyProtocol: - trustedIPs: [127.0.0.1/8,10.0.0.0/8] + trustedIPs: [ 127.0.0.1/8,10.0.0.0/8 ] transport: - respondingTimouts: + respondingTimeouts: writeTimeout: 600s idleTimeout: 300s readTimeout: 600s @@ -67,9 +67,9 @@ ports: port: 8995 protocol: TCP proxyProtocol: - trustedIPs: [127.0.0.1/8,10.0.0.0/8] + trustedIPs: [ 127.0.0.1/8,10.0.0.0/8 ] transport: - respondingTimouts: + respondingTimeouts: writeTimeout: 600s idleTimeout: 300s readTimeout: 600s @@ -80,9 +80,9 @@ ports: port: 4190 protocol: TCP proxyProtocol: - trustedIPs: [127.0.0.1/8,10.0.0.0/8] + trustedIPs: [ 127.0.0.1/8,10.0.0.0/8 ] transport: - respondingTimouts: + respondingTimeouts: writeTimeout: 600s idleTimeout: 300s readTimeout: 600s @@ -93,7 +93,7 @@ ports: port: 8025 protocol: TCP transport: - respondingTimouts: + respondingTimeouts: writeTimeout: 300s idleTimeout: 300s readTimeout: 300s @@ -104,9 +104,9 @@ ports: port: 8465 protocol: TCP proxyProtocol: - trustedIPs: [127.0.0.1/8,10.0.0.0/8] + trustedIPs: [ 127.0.0.1/8,10.0.0.0/8 ] transport: - respondingTimouts: + respondingTimeouts: writeTimeout: 300s idleTimeout: 300s readTimeout: 300s diff --git a/infra/modules/vault/main.tf b/infra/modules/vault/main.tf index a85ae66..2d7d120 100644 --- a/infra/modules/vault/main.tf +++ b/infra/modules/vault/main.tf @@ -40,20 +40,18 @@ resource "helm_release" "vault" { create_namespace = false wait = true - set { + set = [{ name = "server.ha.enabled" value = "false" - } - - set { + }, + { name = "server.ha.replicas" value = "1" - } - - set { + }, + { name = "server.ha.raft.enabled" value = "false" - } + }] values = [ templatefile("${path.module}/values.yaml.tftpl", { diff --git a/infra/modules/vault/provider.tf b/infra/modules/vault/provider.tf index 71bc030..1de7152 100644 --- a/infra/modules/vault/provider.tf +++ b/infra/modules/vault/provider.tf @@ -23,7 +23,7 @@ provider "kubernetes" { } provider "helm" { - kubernetes { + kubernetes = { host = local.k8s_host insecure = true token = local.k8s_auth.using_token ? local.k8s_auth.token : null diff --git a/infra/modules/zitadel/api-m2m-swagger/main.tf b/infra/modules/zitadel/api-m2m-swagger/main.tf new file mode 100644 index 0000000..693d9f7 --- /dev/null +++ b/infra/modules/zitadel/api-m2m-swagger/main.tf @@ -0,0 +1,124 @@ +terraform { + required_providers { + slugify = { + source = "public-cloud-wl/slugify" + version = "0.1.1" + } + } +} + +locals { + authority = "https://${var.zitadel_domain}" + slug_project = provider::slugify::slug(var.project) + slug_name = provider::slugify::slug(var.name) + + cluster = "${local.slug_project}.${var.cluster_domain}" + uri = var.uri +} + +module "zitadel_project_application_api" { + source = "../project/application/api" + wait_on = var.wait_on + + org_id = var.org_id + project_id = var.project_id + + name = "${var.name} API" +} + +module "zitadel_project_application_ua" { + source = "../project/application/user-agent" + wait_on = module.zitadel_project_application_api.installed + + org_id = var.org_id + project_id = var.project_id + + name = "${ var.name } (Swagger)" + + redirect_uris = ["${local.uri}/swagger/oauth2-redirect.html", "${local.uri}/hangfire/signin-oidc", "${local.uri}/signin-oidc"] + post_logout_redirect_uris = [local.uri] +} + + +resource "kubernetes_secret" "user-agent" { + type = "Opaque" + depends_on = [module.zitadel_project_application_ua] + + metadata { + name = "${local.slug_name}-user-agent" + namespace = var.namespace + } + + data = { + "authority" = local.authority + "audience" = var.project_id + "client_id" = module.zitadel_project_application_ua.client_id + } +} + +resource "kubernetes_secret" "api" { + type = "Opaque" + depends_on = [module.zitadel_project_application_api] + + metadata { + name = "${local.slug_name}-api" + namespace = var.namespace + } + + data = { + "authority" = local.authority + "audience" = var.project_id + "client_id" = module.zitadel_project_application_api.client_id + "client_secret" = module.zitadel_project_application_api.client_secret + } +} + +module "zitadel_service_account" { + count = var.service_account ? 1 : 0 + wait_on = module.zitadel_project_application_api.installed + source = "../service-account" + + org_id = var.org_id + + user_name = "${local.slug_name}@${ local.cluster }" + name = "${var.name} @ ${var.project}" + + with_secret = true + access_token_type = "ACCESS_TOKEN_TYPE_JWT" +} + +module "zitadel_project_user_grant" { + count = var.service_account ? 1 : 0 + source = "../project/user-grant" + + org_id = var.org_id + + project_id = var.project_id + user_id = module.zitadel_service_account[0].user_id + + roles = var.roles +} + +resource "kubernetes_secret" "service-account" { + count = var.service_account ? 1 : 0 + type = "Opaque" + depends_on = [module.zitadel_service_account] + + metadata { + name = "${local.slug_name}-service-account" + namespace = var.namespace + } + + data = { + "authority" = local.authority + "audience" = var.project_id + "client_id" = module.zitadel_service_account[count.index].client_id + "client_secret" = module.zitadel_service_account[count.index].client_secret + "scope" = join(" ", concat(["openid", "profile", "urn:zitadel:iam:org:project:id:${var.project_id}:aud"], var.roles)) + } +} + +output "installed" { + value = true + depends_on = [kubernetes_secret.service-account] +} diff --git a/infra/modules/zitadel/api-m2m-swagger/variables.tf b/infra/modules/zitadel/api-m2m-swagger/variables.tf new file mode 100644 index 0000000..12497fa --- /dev/null +++ b/infra/modules/zitadel/api-m2m-swagger/variables.tf @@ -0,0 +1,48 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "org_id" { + type = string +} + +variable "project_id" { + type = string +} + +variable "name" { + type = string +} + +variable "project" { + type = string +} + + +variable "roles" { + type = list(string) + description = "Roles to be granted" +} + +variable "namespace" { + type = string +} + +variable "service_account" { + type = bool + default = true +} + +variable "zitadel_domain" { + type = string +} + +variable "cluster_domain" { + type = string +} + +variable "uri" { + type = string +} diff --git a/infra/modules/zitadel/identity-provider/google/main.tf b/infra/modules/zitadel/identity-provider/google/main.tf new file mode 100644 index 0000000..2dd838a --- /dev/null +++ b/infra/modules/zitadel/identity-provider/google/main.tf @@ -0,0 +1,82 @@ +terraform { + required_providers { + zitadel = { + source = "zitadel/zitadel" + } + } +} + +resource "zitadel_org_idp_google" "default" { + depends_on = [var.wait_on] + org_id = var.org_id + name = "Google" + client_id = var.client_id + client_secret = var.client_secret + scopes = var.options.scopes + is_linking_allowed = var.options.is_linking_allowed + is_creation_allowed = var.options.is_creation_allowed + is_auto_creation = var.options.is_auto_creation + is_auto_update = var.options.is_auto_update + auto_linking = var.options.auto_linking +} + +resource "zitadel_login_policy" "default" { + depends_on = [zitadel_org_idp_google.default] + + org_id = var.org_id + user_login = false + allow_register = true + allow_external_idp = true + force_mfa = false + force_mfa_local_only = false + passwordless_type = "PASSWORDLESS_TYPE_ALLOWED" + hide_password_reset = "false" + password_check_lifetime = "240h0m0s" + external_login_check_lifetime = "240h0m0s" + multi_factor_check_lifetime = "24h0m0s" + mfa_init_skip_lifetime = "720h0m0s" + second_factor_check_lifetime = "24h0m0s" + ignore_unknown_usernames = true + default_redirect_uri = "https://${var.domain}" + second_factors = ["SECOND_FACTOR_TYPE_OTP", "SECOND_FACTOR_TYPE_U2F"] + multi_factors = ["MULTI_FACTOR_TYPE_U2F_WITH_VERIFICATION"] + idps = [zitadel_org_idp_google.default.id] + allow_domain_discovery = true + disable_login_with_email = true + disable_login_with_phone = true +} + +#resource "zitadel_action" "verify-email-from-google-idp" { +# org_id = var.org_id +# name = "trustEmailVerification" +# script = templatefile("${path.module}/verify-email.action.tftpl", { +# trusted_idp = zitadel_org_idp_google.default.id, +# }) +# allowed_to_fail = false +# timeout = "10s" +#} + +#resource "zitadel_trigger_actions" "verify-email-from-google-idp" { +# org_id = var.org_id +# flow_type = "FLOW_TYPE_EXTERNAL_AUTHENTICATION" +# trigger_type = "TRIGGER_TYPE_PRE_CREATION" +# action_ids = [zitadel_action.verify-email-from-google-idp.id] +#} +# +#resource "zitadel_trigger_actions" "internal" { +# org_id = var.org_id +# flow_type = "FLOW_TYPE_INTERNAL_AUTHENTICATION" +# trigger_type = "TRIGGER_TYPE_PRE_CREATION" +# action_ids = [zitadel_action.verify-email-from-google-idp.id] +#} + +output "installed" { + value = true + depends_on = [ + zitadel_org_idp_google.default, zitadel_login_policy.default, + ] +} + +output "idp_id" { + value = zitadel_org_idp_google.default.id +} diff --git a/infra/modules/zitadel/identity-provider/google/variables.tf b/infra/modules/zitadel/identity-provider/google/variables.tf new file mode 100644 index 0000000..dda30d5 --- /dev/null +++ b/infra/modules/zitadel/identity-provider/google/variables.tf @@ -0,0 +1,43 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "org_id" { + type = string + description = "Organisation Id" +} + +variable "client_id" { + type = string + description = "Google Client ID" +} + +variable "client_secret" { + type = string + description = "Google Client Secret" +} + +variable "options" { + type = object({ + scopes = list(string) + is_linking_allowed = bool + is_creation_allowed = bool + is_auto_creation = bool + is_auto_update = bool + auto_linking = string + }) + default = { + scopes = ["openid", "profile", "email"], + is_linking_allowed = true + is_creation_allowed = true + is_auto_creation = true + is_auto_update = true + auto_linking = "AUTO_LINKING_OPTION_USERNAME" + } +} + +variable "domain" { + type = string +} diff --git a/infra/modules/zitadel/identity-provider/google/verify-email.action.tftpl b/infra/modules/zitadel/identity-provider/google/verify-email.action.tftpl new file mode 100644 index 0000000..8af6be4 --- /dev/null +++ b/infra/modules/zitadel/identity-provider/google/verify-email.action.tftpl @@ -0,0 +1,15 @@ +/** + * Set first and lastname of a user on just in time provisioning for okta. + * Useful if you like to fill the first and lastname with the name stored on okta, so the user doesn't have to fill himself. + * Also set email to verified, so the user doesn't get a verification email + * + * Flow: External Authentication, Trigger: Post Authentication + * + * @param ctx + * @param api + */ +let logger = require("zitadel/log") + +function trustEmailVerification(ctx, api) { + api.setEmailVerified(true); +} diff --git a/infra/modules/zitadel/locals.tf b/infra/modules/zitadel/locals.tf new file mode 100644 index 0000000..6bf05a2 --- /dev/null +++ b/infra/modules/zitadel/locals.tf @@ -0,0 +1,3 @@ +locals { + service_uri = join(".", [var.service_name, var.server_dns]) +} diff --git a/infra/modules/zitadel/main.tf b/infra/modules/zitadel/main.tf new file mode 100644 index 0000000..3443b6f --- /dev/null +++ b/infra/modules/zitadel/main.tf @@ -0,0 +1,91 @@ +terraform { + required_providers { + kubernetes = { + source = "hashicorp/kubernetes" + version = "2.31.0" + } + } +} + +resource "kubernetes_namespace" "zitadel" { + count = var.enabled ? 1 : 0 + metadata { + name = var.namespace + } + + lifecycle { + ignore_changes = [metadata] + } +} + +resource "random_password" "zitadel_masterkey" { + length = 32 + special = true +} + +resource "kubernetes_secret" "zitadel" { + count = var.enabled ? 1 : 0 + metadata { + name = "zitadel" + namespace = kubernetes_namespace.zitadel[count.index].metadata[0].name + } + data = { + masterkey = random_password.zitadel_masterkey.result + } +} + +resource "helm_release" "zitadel" { + count = var.enabled ? 1 : 0 + depends_on = [var.wait_on, kubernetes_secret.zitadel] + name = "zitadel" + repository = "https://charts.zitadel.com" + chart = "zitadel" + namespace = kubernetes_namespace.zitadel[count.index].metadata[0].name + version = "8.12.0" + create_namespace = false + wait = true + wait_for_jobs = true + + values = [ + templatefile("${path.module}/values.yaml.tftpl", { + service_uri = local.service_uri, + database = var.database, + database_username = var.database_username, + database_password = var.database_password, + database_root_username = var.database_root_password != null ? var.database_root_username : null, + database_root_password = var.database_root_password + display_on_homepage = var.display_on_homepage + ingressClass = var.ingressClass + }) + ] +} + +data "kubernetes_secret" "zitadel_admin" { + depends_on = [helm_release.zitadel] + metadata { + name = "zitadel-admin-sa" + namespace = var.namespace + } +} + +resource "local_file" "zitadel_jwt_profile_file" { + content = data.kubernetes_secret.zitadel_admin.data["zitadel-admin-sa.json"] + filename = format("%s/%s", path.root, "zitadel-admin-sa.json") +} + +output "jwt_profile_file" { + value = local_file.zitadel_jwt_profile_file.filename +} + +output "installed" { + value = true + depends_on = [helm_release.zitadel, local_file.zitadel_jwt_profile_file] +} + +output "server" { + value = local.service_uri +} + +output "uri" { + value = "https://${local.service_uri}" +} diff --git a/infra/modules/zitadel/project/application/api/main.tf b/infra/modules/zitadel/project/application/api/main.tf new file mode 100644 index 0000000..489bd93 --- /dev/null +++ b/infra/modules/zitadel/project/application/api/main.tf @@ -0,0 +1,38 @@ +terraform { + required_providers { + zitadel = { + source = "zitadel/zitadel" + version = "2.0.2" + } + } +} + +resource "zitadel_application_api" "default" { + depends_on = [var.wait_on] + + org_id = var.org_id + project_id = var.project_id + + name = var.name + auth_method_type = "API_AUTH_METHOD_TYPE_BASIC" + // TODO: Change this to private key jwt in the future +} + +output "installed" { + value = true + depends_on = [zitadel_application_api.default] +} + +output "application_id" { + value = zitadel_application_api.default.id +} + +output "client_id" { + value = zitadel_application_api.default.client_id + sensitive = true +} + +output "client_secret" { + value = zitadel_application_api.default.client_secret + sensitive = true +} diff --git a/infra/modules/zitadel/project/application/api/variables.tf b/infra/modules/zitadel/project/application/api/variables.tf new file mode 100644 index 0000000..f0c82e7 --- /dev/null +++ b/infra/modules/zitadel/project/application/api/variables.tf @@ -0,0 +1,20 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "org_id" { + type = string + description = "Organisation Id" +} + +variable "project_id" { + type = string + description = "Project Id" +} + +variable "name" { + type = string + description = "Application name" +} diff --git a/infra/modules/zitadel/project/application/user-agent/main.tf b/infra/modules/zitadel/project/application/user-agent/main.tf new file mode 100644 index 0000000..e2d917c --- /dev/null +++ b/infra/modules/zitadel/project/application/user-agent/main.tf @@ -0,0 +1,63 @@ +terraform { + required_providers { + zitadel = { + source = "zitadel/zitadel" + version = "2.0.2" + } + } +} + +resource "zitadel_application_oidc" "default" { + depends_on = [var.wait_on] + + org_id = var.org_id + + grant_types = ["OIDC_GRANT_TYPE_AUTHORIZATION_CODE"] + name = var.name + project_id = var.project_id + + redirect_uris = var.redirect_uris + response_types = ["OIDC_RESPONSE_TYPE_CODE"] + + # // If selected, the requested roles of the authenticated user are added to the access token. + access_token_type = "OIDC_TOKEN_TYPE_JWT" + access_token_role_assertion = true + + # BEARER uses an Opaque token, which needs the introspection endpoint and `urn:zitadel:iam:org:project:id::aud` scope + #access_token_type = "OIDC_TOKEN_TYPE_BEARER" + + # // If you want to add additional Origins to your app which is not used as a redirect you can do that here. + #additional_origins = [] + + app_type = "OIDC_APP_TYPE_USER_AGENT" + auth_method_type = "OIDC_AUTH_METHOD_TYPE_NONE" + + # // Redirect URIs must begin with https:// unless dev_mode is true + #dev_mode = false + + # // If selected, the requested roles of the authenticated user are added to the ID token. + #id_token_role_assertion = false + # // Enables clients to retrieve profile, email, phone and address claims from ID token. + #id_token_userinfo_assertion = false + + post_logout_redirect_uris = var.post_logout_redirect_uris +} + +output "installed" { + value = true + depends_on = [zitadel_application_oidc.default] +} + +output "application_id" { + value = zitadel_application_oidc.default.id +} + +output "client_id" { + value = zitadel_application_oidc.default.client_id + sensitive = true +} + +output "client_secret" { + value = zitadel_application_oidc.default.client_secret + sensitive = true +} diff --git a/infra/modules/zitadel/project/application/user-agent/variables.tf b/infra/modules/zitadel/project/application/user-agent/variables.tf new file mode 100644 index 0000000..3220518 --- /dev/null +++ b/infra/modules/zitadel/project/application/user-agent/variables.tf @@ -0,0 +1,30 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + + +variable "org_id" { + type = string + description = "Organisation Id" +} + +variable "project_id" { + type = string + description = "Project Id" +} + +variable "name" { + type = string + description = "Application name" +} + +variable "redirect_uris" { + type = list(string) +} + +variable "post_logout_redirect_uris" { + type = list(string) + default = [] +} diff --git a/infra/modules/zitadel/project/application/web/main.tf b/infra/modules/zitadel/project/application/web/main.tf new file mode 100644 index 0000000..2bc0429 --- /dev/null +++ b/infra/modules/zitadel/project/application/web/main.tf @@ -0,0 +1,61 @@ +terraform { + required_providers { + zitadel = { + source = "zitadel/zitadel" + version = "2.0.2" + } + } +} + +resource "zitadel_application_oidc" "default" { + depends_on = [var.wait_on] + + org_id = var.org_id + + grant_types = ["OIDC_GRANT_TYPE_AUTHORIZATION_CODE"] + name = var.name + project_id = var.project_id + + redirect_uris = var.redirect_uris + response_types = ["OIDC_RESPONSE_TYPE_CODE"] + + # // If selected, the requested roles of the authenticated user are added to the access token. + #access_token_type = "OIDC_TOKEN_TYPE_JWT" + #access_token_role_assertion = true + + # BEARER uses an Opaque token, which needs the introspection endpoint and `urn:zitadel:iam:org:project:id::aud` scope + access_token_type = "OIDC_TOKEN_TYPE_BEARER" + + # // If you want to add additional Origins to your app which is not used as a redirect you can do that here. + #additional_origins = [] + + app_type = "OIDC_APP_TYPE_WEB" + auth_method_type = var.auth_method_type + + # // Redirect URIs must begin with https:// unless dev_mode is true + #dev_mode = false + + id_token_role_assertion = var.id_token_role_assertion + id_token_userinfo_assertion = var.id_token_userinfo_assertion + + post_logout_redirect_uris = var.post_logout_redirect_uris +} + +output "installed" { + value = true + depends_on = [zitadel_application_oidc.default] +} + +output "application_id" { + value = zitadel_application_oidc.default.id +} + +output "client_id" { + value = zitadel_application_oidc.default.client_id + sensitive = true +} + +output "client_secret" { + value = zitadel_application_oidc.default.client_secret + sensitive = true +} diff --git a/infra/modules/zitadel/project/application/web/variables.tf b/infra/modules/zitadel/project/application/web/variables.tf new file mode 100644 index 0000000..8af3651 --- /dev/null +++ b/infra/modules/zitadel/project/application/web/variables.tf @@ -0,0 +1,47 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + + +variable "org_id" { + type = string + description = "Organisation Id" +} + +variable "project_id" { + type = string + description = "Project Id" +} + +variable "name" { + type = string + description = "Application name" +} + +variable "redirect_uris" { + type = list(string) +} + +variable "post_logout_redirect_uris" { + type = list(string) + default = [] +} + +variable "auth_method_type" { + type = string + default = "OIDC_AUTH_METHOD_TYPE_NONE" +} + +variable "id_token_role_assertion" { + type = bool + default = false + description = "If selected, the requested roles of the authenticated user are added to the ID token." +} + +variable "id_token_userinfo_assertion" { + type = bool + default = false + description = "Enables clients to retrieve profile, email, phone and address claims from ID token." +} diff --git a/infra/modules/zitadel/project/main.tf b/infra/modules/zitadel/project/main.tf new file mode 100644 index 0000000..534a075 --- /dev/null +++ b/infra/modules/zitadel/project/main.tf @@ -0,0 +1,36 @@ +terraform { + required_providers { + zitadel = { + source = "zitadel/zitadel" + version = "2.0.2" + } + } +} + +resource "zitadel_project" "default" { + depends_on = [var.wait_on] + org_id = var.org_id + name = var.name + project_role_assertion = true + project_role_check = true + has_project_check = true + private_labeling_setting = "PRIVATE_LABELING_SETTING_ENFORCE_PROJECT_RESOURCE_OWNER_POLICY" +} + +resource "zitadel_project_member" "default" { + count = length(var.owners) + + org_id = var.org_id + project_id = zitadel_project.default.id + user_id = var.owners[count.index] + roles = ["PROJECT_OWNER"] +} + +output "installed" { + value = true + depends_on = [zitadel_project.default, zitadel_project_member.default] +} + +output "project_id" { + value = zitadel_project.default.id +} diff --git a/infra/modules/zitadel/project/roles/main.tf b/infra/modules/zitadel/project/roles/main.tf new file mode 100644 index 0000000..8a94852 --- /dev/null +++ b/infra/modules/zitadel/project/roles/main.tf @@ -0,0 +1,34 @@ +terraform { + required_providers { + zitadel = { + source = "zitadel/zitadel" + version = "2.0.2" + } + } +} + +resource "zitadel_project_role" "default" { + count = length(var.roles) + depends_on = [var.wait_on] + + org_id = var.org_id + project_id = var.project_id + role_key = var.roles[count.index] + display_name = var.roles[count.index] + group = var.group +} + +output "installed" { + value = true + depends_on = [zitadel_project_role.default] +} + +output "role_ids" { + value = toset([ + for role in zitadel_project_role.default : role.id + ]) +} + +output "roles" { + value = var.roles +} diff --git a/infra/modules/zitadel/project/roles/variables.tf b/infra/modules/zitadel/project/roles/variables.tf new file mode 100644 index 0000000..b18fb0f --- /dev/null +++ b/infra/modules/zitadel/project/roles/variables.tf @@ -0,0 +1,27 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "org_id" { + type = string + description = "Organisation Id" +} + +variable "project_id" { + type = string + description = "Project Id" +} + +variable "group" { + type = string + description = "Optional group name" + default = null +} + +variable "roles" { + type = list(string) + description = "Roles to be added" + default = [] +} diff --git a/infra/modules/zitadel/project/user-grant/main.tf b/infra/modules/zitadel/project/user-grant/main.tf new file mode 100644 index 0000000..4d1838a --- /dev/null +++ b/infra/modules/zitadel/project/user-grant/main.tf @@ -0,0 +1,26 @@ +terraform { + required_providers { + zitadel = { + source = "zitadel/zitadel" + version = "2.0.2" + } + } +} + +resource "zitadel_user_grant" "default" { + depends_on = [var.wait_on] + + org_id = var.org_id + project_id = var.project_id + user_id = var.user_id + role_keys = var.roles +} + +output "installed" { + value = true + depends_on = [zitadel_user_grant.default] +} + +output "user_grant_id" { + value = zitadel_user_grant.default.id +} diff --git a/infra/modules/zitadel/project/user-grant/variables.tf b/infra/modules/zitadel/project/user-grant/variables.tf new file mode 100644 index 0000000..f4cd4af --- /dev/null +++ b/infra/modules/zitadel/project/user-grant/variables.tf @@ -0,0 +1,26 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "org_id" { + type = string + description = "Organisation Id" +} + +variable "project_id" { + type = string + description = "Project Id" +} + +variable "user_id" { + type = string + description = "User Id" +} + +variable "roles" { + type = list(string) + description = "Roles to be granted" + default = [] +} diff --git a/infra/modules/zitadel/project/variables.tf b/infra/modules/zitadel/project/variables.tf new file mode 100644 index 0000000..7670a95 --- /dev/null +++ b/infra/modules/zitadel/project/variables.tf @@ -0,0 +1,21 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "org_id" { + type = string + description = "Organisation Id" +} + +variable "name" { + type = string + description = "Name of the project" +} + +variable "owners" { + type = list(string) + description = "User IDs to be granted `PROJECT_OWNER` role" + default = [] +} diff --git a/infra/modules/zitadel/provider.tf b/infra/modules/zitadel/provider.tf new file mode 100644 index 0000000..8cb018b --- /dev/null +++ b/infra/modules/zitadel/provider.tf @@ -0,0 +1,33 @@ +locals { + k8s_config = yamldecode(var.k8s_config_yaml) + k8s_host = local.k8s_config.clusters[0].cluster.server + k8s_auth = try( + { + token = local.k8s_config.users[0].user.token + using_token = true + }, + { + client_certificate = base64decode(local.k8s_config.users[0].user["client-certificate-data"]) + client_key = base64decode(local.k8s_config.users[0].user["client-key-data"]) + using_token = false + } + ) +} + +provider "kubernetes" { + host = local.k8s_host + insecure = true + token = local.k8s_auth.using_token ? local.k8s_auth.token : null + client_certificate = local.k8s_auth.using_token ? null : local.k8s_auth.client_certificate + client_key = local.k8s_auth.using_token ? null : local.k8s_auth.client_key +} + +provider "helm" { + kubernetes = { + host = local.k8s_host + insecure = true + token = local.k8s_auth.using_token ? local.k8s_auth.token : null + client_certificate = local.k8s_auth.using_token ? null : local.k8s_auth.client_certificate + client_key = local.k8s_auth.using_token ? null : local.k8s_auth.client_key + } +} diff --git a/infra/modules/zitadel/service-account/main.tf b/infra/modules/zitadel/service-account/main.tf new file mode 100644 index 0000000..c8109f5 --- /dev/null +++ b/infra/modules/zitadel/service-account/main.tf @@ -0,0 +1,38 @@ +terraform { + required_providers { + zitadel = { + source = "zitadel/zitadel" + version = "2.0.2" + } + } +} + +resource "zitadel_machine_user" "default" { + depends_on = [var.wait_on] + + org_id = var.org_id + user_name = var.user_name + name = var.name + description = var.description + with_secret = var.with_secret + access_token_type = var.access_token_type +} + +output "installed" { + value = true + depends_on = [zitadel_machine_user.default] +} + +output "user_id" { + value = zitadel_machine_user.default.id +} + +output "client_id" { + value = zitadel_machine_user.default.client_id + sensitive = true +} + +output "client_secret" { + value = zitadel_machine_user.default.client_secret + sensitive = true +} diff --git a/infra/modules/zitadel/service-account/variables.tf b/infra/modules/zitadel/service-account/variables.tf new file mode 100644 index 0000000..70d1676 --- /dev/null +++ b/infra/modules/zitadel/service-account/variables.tf @@ -0,0 +1,33 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "org_id" { + type = string + description = "Organisation Id" +} + +variable "user_name" { + type = string +} + +variable "name" { + type = string +} + +variable "description" { + type = string + default = null +} + +variable "with_secret" { + type = bool + default = false +} + +variable "access_token_type" { + type = string + default = "ACCESS_TOKEN_TYPE_JWT" +} diff --git a/infra/modules/zitadel/tenant/groupsClaim.action.tftpl b/infra/modules/zitadel/tenant/groupsClaim.action.tftpl new file mode 100644 index 0000000..5aa9094 --- /dev/null +++ b/infra/modules/zitadel/tenant/groupsClaim.action.tftpl @@ -0,0 +1,28 @@ +/** + * sets the roles an additional claim in the token with roles as value an project as key + * + * The role claims of the token look like the following: + * + * // added by the code below + * "groups": ["{roleName}", "{roleName}", ...], + * + * Flow: Complement token, Triggers: Pre Userinfo creation, Pre access token creation + * + * @param ctx + * @param api + */ +function groupsClaim(ctx, api) { + if (ctx.v1.user.grants === undefined || ctx.v1.user.grants.count == 0) { + return; + } + + let grants = []; + ctx.v1.user.grants.grants.forEach((claim) => { + claim.roles.forEach((role) => { + grants.push(role); + }); + }); + + api.v1.claims.setClaim("groups", grants); + api.v1.claims.setClaim("scope", grants); +} diff --git a/infra/modules/zitadel/tenant/main.tf b/infra/modules/zitadel/tenant/main.tf new file mode 100644 index 0000000..052f2ee --- /dev/null +++ b/infra/modules/zitadel/tenant/main.tf @@ -0,0 +1,46 @@ +terraform { + required_providers { + zitadel = { + source = "zitadel/zitadel" + version = "2.0.2" + } + } +} + +resource "zitadel_org" "default" { + depends_on = [var.wait_on] + name = var.name + is_default = true +} + +// resource "zitadel_action" "groups-claim" { +// org_id = zitadel_org.default.id +// name = "groupsClaim" +// script = templatefile("${path.module}/groupsClaim.action.tftpl", {}) +// allowed_to_fail = true +// timeout = "10s" +// } +// +// resource "zitadel_trigger_actions" "groups-claim-pre-user-info" { +// org_id = zitadel_org.default.id +// flow_type = "FLOW_TYPE_CUSTOMISE_TOKEN" +// trigger_type = "TRIGGER_TYPE_PRE_USERINFO_CREATION" +// action_ids = [zitadel_action.groups-claim.id] +// } +// +// resource "zitadel_trigger_actions" "groups-claim-pre-access-token" { +// org_id = zitadel_org.default.id +// flow_type = "FLOW_TYPE_CUSTOMISE_TOKEN" +// trigger_type = "TRIGGER_TYPE_PRE_ACCESS_TOKEN_CREATION" +// action_ids = [zitadel_action.groups-claim.id] +// } + + +output "org_id" { + value = zitadel_org.default.id +} + +output "installed" { + value = true + depends_on = [zitadel_org.default] +} diff --git a/infra/modules/zitadel/tenant/role-owner/main.tf b/infra/modules/zitadel/tenant/role-owner/main.tf new file mode 100644 index 0000000..98e2c37 --- /dev/null +++ b/infra/modules/zitadel/tenant/role-owner/main.tf @@ -0,0 +1,20 @@ +terraform { + required_providers { + zitadel = { + source = "zitadel/zitadel" + version = "2.0.2" + } + } +} + +resource "zitadel_org_member" "default" { + depends_on = [var.wait_on] + org_id = var.org_id + user_id = var.user_id + roles = ["ORG_OWNER"] +} + +output "installed" { + value = true + depends_on = [zitadel_org_member.default] +} diff --git a/infra/modules/zitadel/tenant/role-owner/variables.tf b/infra/modules/zitadel/tenant/role-owner/variables.tf new file mode 100644 index 0000000..0a3dc1a --- /dev/null +++ b/infra/modules/zitadel/tenant/role-owner/variables.tf @@ -0,0 +1,15 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "org_id" { + type = string + description = "Zitadel Organization ID" +} + +variable "user_id" { + type = string + description = "Zitadel User ID" +} diff --git a/infra/modules/zitadel/tenant/variables.tf b/infra/modules/zitadel/tenant/variables.tf new file mode 100644 index 0000000..9faf38d --- /dev/null +++ b/infra/modules/zitadel/tenant/variables.tf @@ -0,0 +1,11 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "name" { + type = string + description = "Name of the tenant" + default = "fourlights" +} diff --git a/infra/modules/zitadel/user/main.tf b/infra/modules/zitadel/user/main.tf new file mode 100644 index 0000000..dc19396 --- /dev/null +++ b/infra/modules/zitadel/user/main.tf @@ -0,0 +1,31 @@ +terraform { + required_providers { + zitadel = { + source = "zitadel/zitadel" + version = "2.0.2" + } + } +} + +resource "zitadel_human_user" "default" { + depends_on = [var.wait_on] + + org_id = var.org_id + + email = var.email + user_name = var.user_name + first_name = var.first_name + last_name = var.last_name + + is_email_verified = true + initial_password = "Password1!" +} + +output "installed" { + value = true + depends_on = [zitadel_human_user.default] +} + +output "user_id" { + value = zitadel_human_user.default.id +} diff --git a/infra/modules/zitadel/user/variables.tf b/infra/modules/zitadel/user/variables.tf new file mode 100644 index 0000000..d449141 --- /dev/null +++ b/infra/modules/zitadel/user/variables.tf @@ -0,0 +1,26 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "org_id" { + type = string + description = "Organisation Id" +} + +variable "user_name" { + type = string +} + +variable "first_name" { + type = string +} + +variable "last_name" { + type = string +} + +variable "email" { + type = string +} diff --git a/infra/modules/zitadel/values.yaml.tftpl b/infra/modules/zitadel/values.yaml.tftpl new file mode 100644 index 0000000..04999de --- /dev/null +++ b/infra/modules/zitadel/values.yaml.tftpl @@ -0,0 +1,82 @@ +zitadel: + masterkeySecretName: "zitadel" + configmapConfig: + Log: + Level: 'info' + LogStore: + Access: + Stdout: + Enabled: true + ExternalSecure: true + ExternalDomain: ${ service_uri } + ExternalPort: 443 + TLS: + Enabled: false + FirstInstance: + Org: + Machine: + Machine: + Username: zitadel-admin-sa + Name: Admin + MachineKey: + ExpirationDate: "2026-01-01T00:00:00Z" + Type: 1 + Database: + Postgres: + Host: postgresql-hl.postgresql.svc.cluster.local + Port: 5432 + Database: ${ database } + MaxOpenConns: 20 + MaxIdleConns: 10 + MaxConnLifetime: 30m + MaxConnIdleTime: 5m + User: + Username: ${ database_username } + Password: "${ database_password }" + SSL: + Mode: disable + %{ if database_root_username != null }Admin: + Username: ${ database_root_username } + Password: "${ database_root_password }" + SSL: + Mode: disable + %{ endif } + +readinessProbe: + initialDelaySeconds: 5 + periodSeconds: 5 + failureThreshold: 10 + +startupProbe: + periodSeconds: 5 + failureThreshold: 30 + +service: + annotations: + traefik.ingress.kubernetes.io/service.serversscheme: h2c + +ingress: + enabled: true + className: ${ingressClass} + annotations: + kubernetes.io/ingress.class: ${ingressClass} + cert-manager.io/cluster-issuer: letsencrypt + %{ if ingressClass == "traefik" } + traefik.ingress.kubernetes.io/router.entrypoints: web,websecure + traefik.ingress.kubernetes.io/router.middlewares: default-redirect-to-https@kubernetescrd,default-preserve-host-headers@kubernetescrd + %{ else } + nginx.ingress.kubernetes.io/backend-protocol: "GRPC" + nginx.ingress.kubernetes.io/grpc-backend: "true" + %{ endif } + %{ if display_on_homepage }gethomepage.dev/enabled: "true" + gethomepage.dev/name: "Zitadel" + gethomepage.dev/description: "Identity and Access Management" + gethomepage.dev/group: "Tools" + gethomepage.dev/icon: "zitadel.png" + %{ endif } + hosts: + - host: ${service_uri} + paths: + - path: / + pathType: Prefix + diff --git a/infra/modules/zitadel/variables.tf b/infra/modules/zitadel/variables.tf new file mode 100644 index 0000000..0699bdd --- /dev/null +++ b/infra/modules/zitadel/variables.tf @@ -0,0 +1,67 @@ +variable "service_name" { + type = string + description = "Name of the service" + default = "auth" +} + +variable "server_dns" { + type = string + description = "Domain for the server" +} + +variable "k8s_config_yaml" { + description = "Content of k8s config yaml file" + type = string +} + +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "namespace" { + type = string +} + +variable "database" { + type = string + default = "zitadel" +} + +variable "database_username" { + type = string + default = "zitadel" +} + +variable "database_password" { + type = string + sensitive = true +} + +variable "database_root_username" { + type = string + default = "postgres" +} + +variable "database_root_password" { + type = string + sensitive = true + default = null +} + +variable "display_on_homepage" { + type = bool + default = false +} + +variable "enabled" { + type = bool + default = true +} + +variable "ingressClass" { + description = "Ingress class to use" + type = string + default = "nginx" +} diff --git a/infra/modules/zot/main.tf b/infra/modules/zot/main.tf new file mode 100644 index 0000000..5c33a5f --- /dev/null +++ b/infra/modules/zot/main.tf @@ -0,0 +1,56 @@ +resource "helm_release" "zot" { + name = "zot" + repository = "https://zotregistry.dev/helm-charts" + chart = "zot" + namespace = "registry" + create_namespace = true + + values = [ + templatefile("${path.module}/values.yaml.tftpl", { service_uri = var.service_uri }) + ] +} + +resource "kubernetes_manifest" "traefik_middleware_request_body" { + depends_on = [helm_release.zot] + manifest = { + apiVersion = "traefik.io/v1alpha1" + kind = "Middleware" + metadata = { + name = "request-body" + namespace = "registry" + } + spec = { + buffering = { + maxRequestBodyBytes = 0 + } + } + } +} + +resource "kubernetes_manifest" "traefik_middleware_request_timeouts" { + depends_on = [helm_release.zot] + manifest = { + apiVersion = "traefik.io/v1alpha1" + kind = "Middleware" + metadata = { + name = "request-timeouts" + namespace = "registry" + } + spec = { + headers = { + customRequestHeaders = { + "X-Forwarded-Timeout-Read" = "3600s" + "X-Forwarded-Timeout-Write" = "3600s" + } + } + } + } +} + +output "installed" { + value = true + depends_on = [ + kubernetes_manifest.traefik_middleware_request_body, kubernetes_manifest.traefik_middleware_request_timeouts, + helm_release.zot + ] +} diff --git a/infra/modules/zot/values.yaml.tftpl b/infra/modules/zot/values.yaml.tftpl new file mode 100644 index 0000000..51b0f5e --- /dev/null +++ b/infra/modules/zot/values.yaml.tftpl @@ -0,0 +1,38 @@ +ingress: + enabled: true + className: "traefik" + annotations: + traefik.ingress.kubernetes.io/router.entrypoints: web + traefik.ingress.kubernetes.io/router.middlewares: registry-request-body@kubernetescrd,registry-request-timeouts@kubernetescrd,default-preserve-host-headers@kubernetescrd + gethomepage.dev/enabled: "true" + gethomepage.dev/name: "Registry" + gethomepage.dev/description: "OCI Registry" + gethomepage.dev/group: "Tools" + gethomepage.dev/icon: "docker.png" + hosts: + - host: ${ service_uri } + paths: + - path: / +persistence: true +pvc: + create: true + name: zot + accessMode: "ReadWriteOnce" + storage: 8Gi +service: + type: ClusterIP + port: 5000 +mountConfig: true +configFiles: + config.json: |- + { + "storage": { "rootDirectory": "/var/lib/registry" }, + "http": { "address": "0.0.0.0", "port": "5000" }, + "log": { "level": "error" }, + "extensions": { + "scrub": { + "enable": true, + "interval": "12h" + } + } + } diff --git a/infra/modules/zot/variables.tf b/infra/modules/zot/variables.tf new file mode 100644 index 0000000..850394c --- /dev/null +++ b/infra/modules/zot/variables.tf @@ -0,0 +1 @@ +variable "service_uri" { type = string } diff --git a/infra/tenants/365zon/main.tf b/infra/tenants/365zon/main.tf new file mode 100644 index 0000000..1d34ea1 --- /dev/null +++ b/infra/tenants/365zon/main.tf @@ -0,0 +1,81 @@ +locals { + name = "365Zon" +} + +resource "kubernetes_namespace" "tenant" { + depends_on = [var.wait_on] + + metadata { + name = lower(local.name) + } + + lifecycle { + ignore_changes = [metadata] + } +} + +module "bootstrap-zitadel" { + source = "./zitadel" + + namespace = kubernetes_namespace.tenant.metadata[0].name + org_id = var.org_id + user_id = var.user_id + name = local.name +} + +// create uploads bucket in minio +module "minio" { + source = "../../modules/minio/tenant" + + access_key = var.minio_access_key + secret_key = var.minio_secret_key + server = var.minio_server + + name = "365zon" +} + +// create minio secret +resource "kubernetes_secret" "storage" { + metadata { + name = "storage" + namespace = kubernetes_namespace.tenant.metadata[0].name + } + + data = { + Storage__AccountName = module.minio.access_key + Storage__AccountKey = module.minio.secret_key + Storage__BlobUri = var.minio_api_uri + Storage__S3BucketName = module.minio.bucket + } +} + +resource "kubernetes_secret" "connection_strings" { + metadata { + name = "connection-strings" + namespace = kubernetes_namespace.tenant.metadata[0].name + } + + data = { + ConnectionStrings__DocumentDb = var.mongodb_connection_string + ConnectionStrings__ServiceBus = var.rabbitmq_connection_string + } +} + +// okay, so now we have the identity stuff in order, and we have secrets to use for that +// next, we need to set-up: +// - the wildcard tls (*.365zon.venus.fourlights.dev) +// - argocd for all relevant apps +// +output "minio_access_key" { + value = module.minio.access_key + sensitive = true +} + +output "minio_secret_key" { + value = module.minio.secret_key + sensitive = true +} + +output "minio_bucket" { + value = module.minio.bucket +} diff --git a/infra/tenants/365zon/provider.tf b/infra/tenants/365zon/provider.tf new file mode 100644 index 0000000..2eb31ce --- /dev/null +++ b/infra/tenants/365zon/provider.tf @@ -0,0 +1,48 @@ +terraform { + required_providers { + zitadel = { + source = "zitadel/zitadel" + version = "2.0.2" + } + } +} + +provider "zitadel" { + domain = var.domain + insecure = "false" + jwt_profile_file = var.jwt_profile_file +} + +locals { + k8s_config = yamldecode(var.k8s_config_yaml) + k8s_host = local.k8s_config.clusters[0].cluster.server + k8s_auth = try( + { + token = local.k8s_config.users[0].user.token + using_token = true + }, + { + client_certificate = base64decode(local.k8s_config.users[0].user["client-certificate-data"]) + client_key = base64decode(local.k8s_config.users[0].user["client-key-data"]) + using_token = false + } + ) +} + +provider "kubernetes" { + host = local.k8s_host + insecure = true + token = local.k8s_auth.using_token ? local.k8s_auth.token : null + client_certificate = local.k8s_auth.using_token ? null : local.k8s_auth.client_certificate + client_key = local.k8s_auth.using_token ? null : local.k8s_auth.client_key +} + +provider "helm" { + kubernetes { + host = local.k8s_host + insecure = true + token = local.k8s_auth.using_token ? local.k8s_auth.token : null + client_certificate = local.k8s_auth.using_token ? null : local.k8s_auth.client_certificate + client_key = local.k8s_auth.using_token ? null : local.k8s_auth.client_key + } +} diff --git a/infra/tenants/365zon/variables.tf b/infra/tenants/365zon/variables.tf new file mode 100644 index 0000000..0838890 --- /dev/null +++ b/infra/tenants/365zon/variables.tf @@ -0,0 +1,32 @@ +variable "domain" { type = string } +variable "jwt_profile_file" { type = string } +variable "org_id" { type = string } +variable "user_id" { type = string } +variable "minio_access_key" { + type = string + sensitive = true +} +variable "minio_secret_key" { + type = string + sensitive = true +} +variable "minio_api_uri" { type = string } +variable "minio_server" { type = string } +variable "mongodb_connection_string" { + type = string + sensitive = true +} +variable "rabbitmq_connection_string" { + type = string + sensitive = true +} +variable "wait_on" { + type = any + default = true +} +variable "k8s_config_yaml" { + description = "Content of k8s config yaml file" + type = string +} + + diff --git a/infra/tenants/365zon/zitadel/main.tf b/infra/tenants/365zon/zitadel/main.tf new file mode 100644 index 0000000..fd55762 --- /dev/null +++ b/infra/tenants/365zon/zitadel/main.tf @@ -0,0 +1,157 @@ +locals { + tld = "fourlights.dev" + cluster_dns = "365zon" + domain = "zitadel.${local.cluster_dns}.${local.tld}" + org_domain = "fourlights.${local.domain}" +} + +module "zitadel_project" { + source = "../../../modules/zitadel/project" + + org_id = var.org_id + name = var.name + owners = [var.user_id] +} + +// TODO: add action for setting roles as scopes + +module "zitadel_project_operator_roles" { + source = "../../../modules/zitadel/project/roles" + + wait_on = module.zitadel_project.installed + org_id = var.org_id + project_id = module.zitadel_project.project_id + group = "Operator" + roles = [ + "manage:profiles", "manage:contacts", "manage:addresses", "manage:enquiries", "manage:flowstates", + "manage:flowevents", "manage:files", "manage:brands" + ] +} + +module "zitadel_project_configurator_roles" { + source = "../../../modules/zitadel/project/roles" + wait_on = module.zitadel_project_operator_roles.installed + + org_id = var.org_id + project_id = module.zitadel_project.project_id + group = "Configurator" + roles = [ + "manage:flows" + ] +} + +module "zitadel_project_developer_roles" { + source = "../../../modules/zitadel/project/roles" + wait_on = module.zitadel_project_configurator_roles.installed + + org_id = var.org_id + project_id = module.zitadel_project.project_id + group = "Developer" + roles = [ + "manage:jobs", "manage:infrastructure" + ] +} + +module "zitadel_project_user_grant" { + source = "../../../modules/zitadel/project/user-grant" + wait_on = module.zitadel_project_developer_roles.installed + org_id = var.org_id + project_id = module.zitadel_project.project_id + user_id = var.user_id + roles = concat(module.zitadel_project_developer_roles.roles, module.zitadel_project_configurator_roles.roles, module.zitadel_project_operator_roles.roles) +} + +// TODO: Move External (and 365zon Push service account) to own project +// TODO: Add grant for external project +// TODO: Add read roles + +module "zitadel_project_application_core" { + source = "../../../modules/zitadel/api-m2m-swagger" + wait_on = module.zitadel_project_user_grant.installed + + org_id = var.org_id + project_id = module.zitadel_project.project_id + + name = "Core" + zitadel_domain = local.domain + cluster_domain = local.cluster_dns + uri = "https://api.${local.cluster_dns}.${local.tld}" + + namespace = var.namespace + project = var.name + + service_account = false + roles = [] +} + +module "zitadel_project_application_salesforce" { + source = "../../../modules/zitadel/api-m2m-swagger" + wait_on = module.zitadel_project_application_core.installed + + org_id = var.org_id + project_id = module.zitadel_project.project_id + + name = "Salesforce" + zitadel_domain = local.domain + cluster_domain = local.cluster_dns + uri = "https://salesforce.${local.cluster_dns}.${local.tld}" + + namespace = var.namespace + project = var.name + + roles = module.zitadel_project_operator_roles.roles +} + +module "zitadel_project_application_external" { + source = "../../../modules/zitadel/api-m2m-swagger" + wait_on = module.zitadel_project_application_salesforce.installed + + org_id = var.org_id + project_id = module.zitadel_project.project_id + + name = "External" + zitadel_domain = local.domain + cluster_domain = local.cluster_dns + uri = "https://external.${local.cluster_dns}.${local.tld}" + + namespace = var.namespace + project = var.name + + roles = module.zitadel_project_operator_roles.roles +} + +module "zitadel_project_application_module_internal" { + source = "../../../modules/zitadel/api-m2m-swagger" + wait_on = module.zitadel_project_application_external.installed + + org_id = var.org_id + project_id = module.zitadel_project.project_id + + name = "Internal" + zitadel_domain = local.domain + cluster_domain = local.cluster_dns + uri = "https://internal.${local.cluster_dns}.${local.tld}" + + namespace = var.namespace + project = var.name + + roles = module.zitadel_project_operator_roles.roles +} + +// TODO: Application for Front-End End (implicit, authorization_code, refresh_token) +// TODO: Update API applications with callback apiDomain/swagger/oauth2-redirect.html to allow logging in for swagger (and probably hangire?) +// TODO: Put all the relevant secrets into secret manager +// TODO: Set up opentelemetry and update appinsights shit to use that. + +output "org_id" { + value = var.org_id +} + +output "project_id" { + value = module.zitadel_project.project_id +} + +output "installed" { + value = true + depends_on = [module.zitadel_project_application_external.installed] +} diff --git a/infra/tenants/365zon/zitadel/provider.tf b/infra/tenants/365zon/zitadel/provider.tf new file mode 100644 index 0000000..9d0da41 --- /dev/null +++ b/infra/tenants/365zon/zitadel/provider.tf @@ -0,0 +1,8 @@ +terraform { + required_providers { + zitadel = { + source = "zitadel/zitadel" + version = "2.0.2" + } + } +} diff --git a/infra/tenants/365zon/zitadel/variables.tf b/infra/tenants/365zon/zitadel/variables.tf new file mode 100644 index 0000000..d41d6e2 --- /dev/null +++ b/infra/tenants/365zon/zitadel/variables.tf @@ -0,0 +1,15 @@ +variable "org_id" { + type = string +} + +variable "user_id" { + type = string +} + +variable "namespace" { + type = string +} + +variable "name" { + type = string +} diff --git a/infra/tenants/argocd/zitadel/groupsClaim.action.tftpl b/infra/tenants/argocd/zitadel/groupsClaim.action.tftpl new file mode 100644 index 0000000..5aa9094 --- /dev/null +++ b/infra/tenants/argocd/zitadel/groupsClaim.action.tftpl @@ -0,0 +1,28 @@ +/** + * sets the roles an additional claim in the token with roles as value an project as key + * + * The role claims of the token look like the following: + * + * // added by the code below + * "groups": ["{roleName}", "{roleName}", ...], + * + * Flow: Complement token, Triggers: Pre Userinfo creation, Pre access token creation + * + * @param ctx + * @param api + */ +function groupsClaim(ctx, api) { + if (ctx.v1.user.grants === undefined || ctx.v1.user.grants.count == 0) { + return; + } + + let grants = []; + ctx.v1.user.grants.grants.forEach((claim) => { + claim.roles.forEach((role) => { + grants.push(role); + }); + }); + + api.v1.claims.setClaim("groups", grants); + api.v1.claims.setClaim("scope", grants); +} diff --git a/infra/tenants/argocd/zitadel/main.tf b/infra/tenants/argocd/zitadel/main.tf new file mode 100644 index 0000000..516edc5 --- /dev/null +++ b/infra/tenants/argocd/zitadel/main.tf @@ -0,0 +1,113 @@ +locals { + argocd_uri = "https://${var.argocd_service_domain}" +} + +module "zitadel_project" { + source = "../../../modules/zitadel/project" + + org_id = var.org_id + name = var.name + owners = [var.user_id] +} + +module "zitadel_project_roles_user" { + source = "../../../modules/zitadel/project/roles" + + org_id = var.org_id + project_id = module.zitadel_project.project_id + group = "Users" + roles = ["user"] +} + +module "zitadel_project_roles_admin" { + source = "../../../modules/zitadel/project/roles" + + org_id = var.org_id + project_id = module.zitadel_project.project_id + group = "Admins" + roles = ["admin"] +} + +module "zitadel_application_argocd" { + source = "../../../modules/zitadel/project/application/web" + + name = "ArgoCD" + org_id = var.org_id + project_id = module.zitadel_project.project_id + + redirect_uris = ["${ local.argocd_uri}/api/dex/callback"] + post_logout_redirect_uris = [local.argocd_uri] + + auth_method_type = "OIDC_AUTH_METHOD_TYPE_BASIC" + id_token_role_assertion = true + id_token_userinfo_assertion = true +} + +resource "zitadel_action" "groups-claim" { + org_id = var.org_id + name = "groupsClaim" + script = templatefile("${path.module}/groupsClaim.action.tftpl", {}) + allowed_to_fail = true + timeout = "10s" +} + +resource "zitadel_trigger_actions" "groups-claim-pre-user-info" { + org_id = var.org_id + flow_type = "FLOW_TYPE_CUSTOMISE_TOKEN" + trigger_type = "TRIGGER_TYPE_PRE_USERINFO_CREATION" + action_ids = [zitadel_action.groups-claim.id] +} + +resource "zitadel_trigger_actions" "groups-claim-pre-access-token" { + org_id = var.org_id + flow_type = "FLOW_TYPE_CUSTOMISE_TOKEN" + trigger_type = "TRIGGER_TYPE_PRE_ACCESS_TOKEN_CREATION" + action_ids = [zitadel_action.groups-claim.id] +} + +module "zitadel_project_user_grant" { + source = "../../../modules/zitadel/project/user-grant" + + org_id = var.org_id + + project_id = module.zitadel_project.project_id + user_id = var.user_id + + roles = module.zitadel_project_roles_admin.roles +} + +output "client_id" { + value = module.zitadel_application_argocd.client_id +} + +output "client_secret" { + value = module.zitadel_application_argocd.client_secret +} + +output "scopes" { + value = ["openid", "profile", "email", "groups"] +} + +output "logoutSuffix" { + value = "oidc/v1/end_session" +} + +output "user_roles" { + value = module.zitadel_project_roles_user.roles +} + +output "admin_roles" { + value = module.zitadel_project_roles_admin.roles +} + +output "project_id" { + value = module.zitadel_project.project_id +} + +output "installed" { + value = true + depends_on = [ + module.zitadel_project_user_grant.installed, + zitadel_trigger_actions.groups-claim-pre-access-token, zitadel_trigger_actions.groups-claim-pre-user-info + ] +} diff --git a/infra/tenants/argocd/zitadel/provider.tf b/infra/tenants/argocd/zitadel/provider.tf new file mode 100644 index 0000000..653009c --- /dev/null +++ b/infra/tenants/argocd/zitadel/provider.tf @@ -0,0 +1,14 @@ +terraform { + required_providers { + zitadel = { + source = "zitadel/zitadel" + version = "2.0.2" + } + } +} + +provider "zitadel" { + domain = var.domain + insecure = "false" + jwt_profile_file = var.jwt_profile_file +} diff --git a/infra/tenants/argocd/zitadel/variables.tf b/infra/tenants/argocd/zitadel/variables.tf new file mode 100644 index 0000000..00de29b --- /dev/null +++ b/infra/tenants/argocd/zitadel/variables.tf @@ -0,0 +1,18 @@ +variable "org_id" { + type = string +} + +variable "user_id" { + type = string +} + +variable "name" { + type = string + default = "argocd" +} + +variable "domain" { type = string } +variable "jwt_profile_file" { type = string } + +variable "argocd_service_domain" { type = string } + diff --git a/infra/tenants/fourlights/zitadel/main.tf b/infra/tenants/fourlights/zitadel/main.tf new file mode 100644 index 0000000..7b0100c --- /dev/null +++ b/infra/tenants/fourlights/zitadel/main.tf @@ -0,0 +1,54 @@ +module "zitadel-tenant" { + source = "../../../modules/zitadel/tenant" + + name = "fourlights" +} + +module "zitadel-idp-google" { + source = "../../../modules/zitadel/identity-provider/google" + wait_on = module.zitadel-tenant.installed + + org_id = module.zitadel-tenant.org_id + client_id = "783390190667-quvko2l2kr9ksgeo3pn6pn6t8c1mai9n.apps.googleusercontent.com" + client_secret = "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" + + domain = var.domain + + options = { + scopes = ["openid", "profile", "email"] + is_auto_creation = true + is_auto_update = true + is_creation_allowed = true + is_linking_allowed = true + + auto_linking = "AUTO_LINKING_OPTION_USERNAME" + } +} + +module "zitadel-user" { + source = "../../../modules/zitadel/user" + wait_on = module.zitadel-tenant.installed + + org_id = module.zitadel-tenant.org_id + + first_name = "Thomas" + last_name = "Rijpstra" + user_name = "thomas@fourlights.nl" + email = "thomas@fourlights.nl" +} + +module "zitadel-org-owner" { + source = "../../../modules/zitadel/tenant/role-owner" + wait_on = module.zitadel-user.installed + + org_id = module.zitadel-tenant.org_id + user_id = module.zitadel-user.user_id +} + +output "org_id" { + value = module.zitadel-tenant.org_id +} + +output "user_id" { + value = module.zitadel-user.user_id +} diff --git a/infra/tenants/fourlights/zitadel/provider.tf b/infra/tenants/fourlights/zitadel/provider.tf new file mode 100644 index 0000000..2eb31ce --- /dev/null +++ b/infra/tenants/fourlights/zitadel/provider.tf @@ -0,0 +1,48 @@ +terraform { + required_providers { + zitadel = { + source = "zitadel/zitadel" + version = "2.0.2" + } + } +} + +provider "zitadel" { + domain = var.domain + insecure = "false" + jwt_profile_file = var.jwt_profile_file +} + +locals { + k8s_config = yamldecode(var.k8s_config_yaml) + k8s_host = local.k8s_config.clusters[0].cluster.server + k8s_auth = try( + { + token = local.k8s_config.users[0].user.token + using_token = true + }, + { + client_certificate = base64decode(local.k8s_config.users[0].user["client-certificate-data"]) + client_key = base64decode(local.k8s_config.users[0].user["client-key-data"]) + using_token = false + } + ) +} + +provider "kubernetes" { + host = local.k8s_host + insecure = true + token = local.k8s_auth.using_token ? local.k8s_auth.token : null + client_certificate = local.k8s_auth.using_token ? null : local.k8s_auth.client_certificate + client_key = local.k8s_auth.using_token ? null : local.k8s_auth.client_key +} + +provider "helm" { + kubernetes { + host = local.k8s_host + insecure = true + token = local.k8s_auth.using_token ? local.k8s_auth.token : null + client_certificate = local.k8s_auth.using_token ? null : local.k8s_auth.client_certificate + client_key = local.k8s_auth.using_token ? null : local.k8s_auth.client_key + } +} diff --git a/infra/tenants/fourlights/zitadel/variables.tf b/infra/tenants/fourlights/zitadel/variables.tf new file mode 100644 index 0000000..e8090de --- /dev/null +++ b/infra/tenants/fourlights/zitadel/variables.tf @@ -0,0 +1,7 @@ +variable "domain" { type = string } +variable "jwt_profile_file" { type = string } +variable "k8s_config_yaml" { + description = "Content of k8s config yaml file" + type = string +} + diff --git a/quadlets/.gitignore b/quadlets/.gitignore new file mode 100644 index 0000000..40d89f9 --- /dev/null +++ b/quadlets/.gitignore @@ -0,0 +1,40 @@ +# Local .terraform directories +.terraform/ + +# .tfstate files +*.tfstate +*.tfstate.* + +# Crash log files +crash.log +crash.*.log + +# Exclude all .tfvars files, which are likely to contain sensitive data, such as +# password, private keys, and other secrets. These should not be part of version +# control as they are data points which are potentially sensitive and subject +# to change depending on the environment. +*.tfvars +*.tfvars.json + +# Ignore override files as they are usually used to override resources locally and so +# are not checked in +override.tf +override.tf.json +*_override.tf +*_override.tf.json + +# Ignore transient lock info files created by terraform apply +.terraform.tfstate.lock.info + +# Include override files you do wish to add to version control using negated pattern +# !example_override.tf + +# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan +# example: *tfplan* + +# Ignore CLI configuration files +.terraformrc +terraform.rc + +# Optional: ignore graph output files generated by `terraform graph` +*.dot diff --git a/quadlets/.idea/.gitignore b/quadlets/.idea/.gitignore new file mode 100644 index 0000000..ab1f416 --- /dev/null +++ b/quadlets/.idea/.gitignore @@ -0,0 +1,10 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Ignored default folder with query files +/queries/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/quadlets/.idea/encodings.xml b/quadlets/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/quadlets/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/quadlets/.idea/modules.xml b/quadlets/.idea/modules.xml new file mode 100644 index 0000000..d241f84 --- /dev/null +++ b/quadlets/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/quadlets/.idea/quadlets.iml b/quadlets/.idea/quadlets.iml new file mode 100644 index 0000000..c956989 --- /dev/null +++ b/quadlets/.idea/quadlets.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/quadlets/.idea/vcs.xml b/quadlets/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/quadlets/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/quadlets/main.tf b/quadlets/main.tf new file mode 100644 index 0000000..74f322e --- /dev/null +++ b/quadlets/main.tf @@ -0,0 +1,78 @@ +variable "hcloud_token" { + description = "Hetzner Cloud API Token" + type = string + sensitive = true +} + +variable "hdns_token" { + type = string + sensitive = true +} + +variable "ssh_public_key_path" { + description = "Path to SSH public key" + type = string +} + +variable "ssh_private_key_path" { + description = "Path to SSH private key" + type = string +} + +variable "ghcr_username" {} +variable "ghcr_token" {} + +module "hetzner" { + source = "./modules/hetzner" + hcloud_token = var.hcloud_token + ssh_public_key_path = var.ssh_public_key_path + ssh_private_key_path = var.ssh_private_key_path + name = "vw-hub" + datacenter = "nbg1-dc3" + hdns_token = var.hdns_token + ghcr_token = var.ghcr_token + ghcr_username = var.ghcr_username +} + +module "minio" { + wait_on = module.hetzner.installed + source = "./modules/minio" + server_ip = module.hetzner.server_ip + server_domain = module.hetzner.server_domain + ssh_private_key_path = var.ssh_private_key_path +} + +module "valkey" { + wait_on = module.hetzner.installed + source = "./modules/valkey" + server_ip = module.hetzner.server_ip + ssh_private_key_path = var.ssh_private_key_path +} + +module "airsonic-advanced" { + wait_on = module.hetzner.installed + source = "./modules/airsonic-advanced" + server_ip = module.hetzner.server_ip + ssh_private_key_path = var.ssh_private_key_path + server_domain = module.hetzner.server_domain +} + +module "mopidy" { + wait_on = module.hetzner.installed + source = "./modules/mopidy" + server_ip = module.hetzner.server_ip + ssh_private_key_path = var.ssh_private_key_path + server_domain = module.hetzner.server_domain +} + +module "beets" { + wait_on = module.hetzner.installed + source = "./modules/beets" + server_ip = module.hetzner.server_ip + server_domain = module.hetzner.server_domain + ssh_private_key_path = var.ssh_private_key_path +} + +output "minio_app_urls" { + value = module.minio.app_urls +} \ No newline at end of file diff --git a/quadlets/modules/affine/main.tf b/quadlets/modules/affine/main.tf new file mode 100644 index 0000000..ebd97a9 --- /dev/null +++ b/quadlets/modules/affine/main.tf @@ -0,0 +1,82 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +variable "postgres_password" { + type = string + sensitive = true +} + +module "psql_db" { + source = "../postgres/tenant" + + tenant_name = "affine" + admin_username = "postgres" + admin_password = var.postgres_password + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path +} + +module "affine" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + restart_policy = "never" + + app_name = "affine" + image = "ghcr.io/toeverything/affine:stable" + ports = ["3020:3010"] + volumes = [ + "/opt/storage/data/affine/storage:/root/.affine/storage:Z", + "/opt/storage/data/affine/config:/root/.affine/config:Z" + ] + environment = { + DATABASE_URL = "postgresql://affine:${module.psql_db.password}@systemd-postgres:5432/affine" + REDIS_SERVER_HOST = "systemd-valkey" + AFFINE_INDEXER_ENABLED = "false" + } + command = [ + "sh", + "-c", + "\"node ./scripts/self-host-predeploy.js && node ./dist/main.js\"" + ] + healthcmd = "curl -f http://localhost:3010 || exit 1" + + haproxy_services = [ + { + name = "affine" + domain = "affine.${var.server_domain}" + port = "3020" + host = "127.0.0.1" + tls = false + } + ] + + depends_on_services = ["postgres.service", "valkey.service"] +} + +output "app_urls" { + value = module.affine.app_urls +} + +output "installed" { + value = true + depends_on = [module.affine.installed] +} diff --git a/quadlets/modules/airsonic-advanced/main.tf b/quadlets/modules/airsonic-advanced/main.tf new file mode 100644 index 0000000..2070869 --- /dev/null +++ b/quadlets/modules/airsonic-advanced/main.tf @@ -0,0 +1,60 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +module "airsonic-advanced" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "airsonic-advanced" + image = "lscr.io/linuxserver/airsonic-advanced:latest" + ports = ["4040:4040"] + volumes = [ + "/opt/storage/data/airsonic-advanced:/config:Z", + "/opt/storage/media/music:/music:Z", + ] + + environment = { + PUID="1001" + PGID="1001" + TZ="Etc/UTC" + #JAVA_OPTS="-Dserver.address=127.0.0.1" + } + + haproxy_services = [ + { + name = "airsonic-advanced" + domain = "airsonic.${var.server_domain}" + port = "4040" + host = "127.0.0.1" + tls = false + }, + ] + +} + +output "app_urls" { + value = module.airsonic-advanced.app_urls +} + +output "installed" { + value = true + depends_on = [module.airsonic-advanced.installed] +} diff --git a/quadlets/modules/arcane/main.tf b/quadlets/modules/arcane/main.tf new file mode 100644 index 0000000..b8beb29 --- /dev/null +++ b/quadlets/modules/arcane/main.tf @@ -0,0 +1,68 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +resource "random_password" "encryption_key" { + length = 32 + special = false +} + +resource "random_password" "jwt_secret" { + length = 32 + special = false +} + +module "arcane" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "arcane" + image = "ghcr.io/ofkm/arcane:latest" + ports = ["3552:3552"] + volumes = ["/opt/storage/data/arcane:/app/data:Z", "/run/user/1001/podman/podman.sock:/var/run/docker.sock:Z"] + #volumes = ["/opt/storage/data/arcane:/app/data:Z"] + + environment = { + #DOCKER_HOST = "tcp://localhost:2375" + APP_URL = "https://${var.server_domain}" + ENCRYPTION_KEY = random_password.encryption_key.result + JWT_SECRET = random_password.jwt_secret.result + } + + haproxy_services = [ + { + name = "arcane" + domain = "${var.server_domain}" + port = "3552" + host = "127.0.0.1" + tls = false + }, + ] + +} + +output "app_urls" { + value = module.arcane.app_urls +} + +output "installed" { + value = true + depends_on = [module.arcane.installed] +} diff --git a/quadlets/modules/beets/main.tf b/quadlets/modules/beets/main.tf new file mode 100644 index 0000000..e33fee6 --- /dev/null +++ b/quadlets/modules/beets/main.tf @@ -0,0 +1,59 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +module "beets" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "beets" + image = "lscr.io/linuxserver/beets:latest" + ports = ["8337:8337"] + volumes = [ + "/opt/storage/data/beets/config:/config:Z", + "/opt/storage/media/music:/music:z", + "/opt/storage/media/downloads:/downloads:z" + ] + + environment = { + PUID = "1001" + PGID = "1001" + TZ = "Europe/Amsterdam" + } + + haproxy_services = [ + { + name = "beets" + domain = "beets.${var.server_domain}" + port = "8337" + host = "127.0.0.1" + tls = false + } + ] +} + +output "app_urls" { + value = module.beets.app_urls +} + +output "installed" { + value = true + depends_on = [module.beets.installed] +} \ No newline at end of file diff --git a/quadlets/modules/calibre-web-automated/main.tf b/quadlets/modules/calibre-web-automated/main.tf new file mode 100644 index 0000000..eee58fc --- /dev/null +++ b/quadlets/modules/calibre-web-automated/main.tf @@ -0,0 +1,63 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +module "calibre-web-automated" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "calibre-web-automated" + # Docker Hub 'latest' currently points at GitHub release v4.0.6 + image = "docker.io/crocodilestick/calibre-web-automated:latest" + ports = ["8083:8083"] + volumes = [ + "/opt/storage/data/calibre-web-automated:/config:Z", + "/opt/storage/media/books:/calibre-library:Z", + "/opt/storage/media/books-ingest:/cwa-book-ingest:Z", + ] + + environment = { + PUID = "1001" + PGID = "1001" + TZ = "Europe/Amsterdam" + NETWORK_SHARE_MODE = "false" + } + + healthcmd = "curl -sf http://127.0.0.1:8083/ > /dev/null || exit 1" + + haproxy_services = [ + { + name = "calibre-web" + domain = "calibre-web.${var.server_domain}" + port = "8083" + host = "127.0.0.1" + tls = false + }, + ] +} + +output "app_urls" { + value = module.calibre-web-automated.app_urls +} + +output "installed" { + value = true + depends_on = [module.calibre-web-automated.installed] +} diff --git a/quadlets/modules/deeptutor/main.tf b/quadlets/modules/deeptutor/main.tf new file mode 100644 index 0000000..ab0a565 --- /dev/null +++ b/quadlets/modules/deeptutor/main.tf @@ -0,0 +1,98 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +module "deeptutor" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "deeptutor" + image = "ghcr.io/hkuds/deeptutor:latest" + ports = ["8001:8001", "3782:3782"] + volumes = [ + "/opt/storage/data/deeptutor/config:/app/config:Z", + "/opt/storage/data/deeptutor/user:/app/data/user:Z", + "/opt/storage/data/deeptutor/knowledge_bases:/app/data/knowledge_bases:Z", + ] + + environment = { + # LLM Configuration (Required - set these in terraform.tfvars) + LLM_BINDING = "openai" + LLM_MODEL = "deepseek/deepseek-v3.2" + LLM_BINDING_API_KEY = "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" + LLM_BINDING_HOST = "https://openrouter.ai/api/v1" + DISABLE_SSL_VERIFY = "false" + + # Embedding Configuration (Required for Knowledge Base) + EMBEDDING_BINDING = "openai" + EMBEDDING_MODEL = "text-embedding-3-large" + EMBEDDING_BINDING_API_KEY = "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" + EMBEDDING_BINDING_HOST = "https://openrouter.ai/api/v1" + EMBEDDING_DIM = "3072" + EMBEDDING_MAX_TOKENS = "8192" + + # TTS Configuration (Optional) + TTS_MODEL = "" + TTS_API_KEY = "" + TTS_URL = "" + TTS_VOICE = "alloy" + + # Web Search Configuration (Optional) + PERPLEXITY_API_KEY = "" + + # Logging Configuration + RAG_TOOL_MODULE_LOG_LEVEL = "INFO" + + # Service Ports + BACKEND_PORT = "8001" + FRONTEND_PORT = "3782" + + # External API URL (for browser access if different from localhost) + NEXT_PUBLIC_API_BASE_EXTERNAL = "https://deeptutor-api.${var.server_domain}" + } + + healthcmd = "curl -f http://localhost:8001/ || exit 1" + + haproxy_services = [ + { + name = "deeptutor-frontend" + domain = "deeptutor.${var.server_domain}" + port = "3782" + host = "127.0.0.1" + tls = false + }, + { + name = "deeptutor-api" + domain = "deeptutor-api.${var.server_domain}" + port = "8001" + host = "127.0.0.1" + tls = false + } + ] +} + +output "app_urls" { + value = module.deeptutor.app_urls +} + +output "installed" { + value = true + depends_on = [module.deeptutor.installed] +} diff --git a/quadlets/modules/documentdb/main.tf b/quadlets/modules/documentdb/main.tf new file mode 100644 index 0000000..29dab78 --- /dev/null +++ b/quadlets/modules/documentdb/main.tf @@ -0,0 +1,59 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +resource "random_password" "username" { + length = 32 + special = false +} + +resource "random_password" "password" { + length = 32 + special = false +} + +module "redis" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "documentdb" + image = "ghcr.io/documentdb/documentdb/documentdb-local:latest" + ports = ["27017:27017"] + volumes = ["/opt/storage/data/documentdb:/data:Z"] + environment = { + USERNAME = random_password.username.result + PASSWORD = random_password.password.result + } +} + +output "app_urls" { + value = module.redis.app_urls +} + +output "installed" { + value = true + depends_on = [module.redis.installed] +} + +output "username" { + value = random_password.username.result + sensitive = true +} + +output "password" { + value = random_password.password.result + sensitive = true +} \ No newline at end of file diff --git a/quadlets/modules/forgejo/main.tf b/quadlets/modules/forgejo/main.tf new file mode 100644 index 0000000..148d8fb --- /dev/null +++ b/quadlets/modules/forgejo/main.tf @@ -0,0 +1,117 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +variable "postgres_password" { + type = string + sensitive = true +} + +resource "random_password" "forgejo_secret_key" { + length = 64 + special = false +} + +resource "random_password" "forgejo_internal_token" { + length = 64 + special = false +} + +resource "random_password" "forgejo_jwt_secret" { + length = 32 + special = false +} + +module "psql_db" { + source = "../postgres/tenant" + + tenant_name = "forgejo" + admin_username = "postgres" + admin_password = var.postgres_password + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path +} + +module "forgejo" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "forgejo" + image = "codeberg.org/forgejo/forgejo:13.0" + ports = ["3000:3000", "2222:22"] + volumes = [ + "/opt/storage/data/forgejo:/data:Z", + "/etc/localtime:/etc/localtime:ro" + ] + + environment = { + USER_UID = "1000" + USER_GID = "1000" + FORGEJO__database__DB_TYPE = "postgres" + FORGEJO__database__HOST = "systemd-postgres:5432" + FORGEJO__database__NAME = "forgejo" + FORGEJO__database__USER = module.psql_db.username + FORGEJO__database__PASSWD = module.psql_db.password + FORGEJO__server__DOMAIN = "forgejo.${var.server_domain}" + FORGEJO__server__ROOT_URL = "https://forgejo.${var.server_domain}/" + FORGEJO__server__SSH_DOMAIN = "forgejo.${var.server_domain}" + FORGEJO__server__SSH_PORT = "2222" + FORGEJO__security__INSTALL_LOCK = "true" + FORGEJO__security__SECRET_KEY = random_password.forgejo_secret_key.result + FORGEJO__security__INTERNAL_TOKEN = random_password.forgejo_internal_token.result + FORGEJO__oauth2__JWT_SECRET = random_password.forgejo_jwt_secret.result + } + + healthcmd = "curl -f http://localhost:3000/api/v1/version || exit 1" + + haproxy_services = [ + { + name = "forgejo" + domain = "forgejo.${var.server_domain}" + port = "3000" + host = "127.0.0.1" + tls = false + } + ] +} + +output "app_urls" { + value = module.forgejo.app_urls +} + +output "installed" { + value = true + depends_on = [module.forgejo.installed] +} + +output "secret_key" { + value = random_password.forgejo_secret_key.result + sensitive = true +} + +output "internal_token" { + value = random_password.forgejo_internal_token.result + sensitive = true +} + +output "jwt_secret" { + value = random_password.forgejo_jwt_secret.result + sensitive = true +} diff --git a/quadlets/modules/gonic/main.tf b/quadlets/modules/gonic/main.tf new file mode 100644 index 0000000..d134848 --- /dev/null +++ b/quadlets/modules/gonic/main.tf @@ -0,0 +1,60 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +module "gonic" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "gonic" + image = "docker.io/sentriz/gonic:latest" + ports = ["4747:80"] + volumes = [ + "/opt/storage/data/gonic:/config:Z", + "/opt/storage/media/music:/music:Z", + "/opt/storage/media/podcasts:/podcasts:Z", + "/opt/storage/media/playlists:/playlists:Z", + "/opt/storage/cache/gonic:/cache:Z", + ] + + environment = { + TZ="Etc/UTC" + } + + haproxy_services = [ + { + name = "gonic" + domain = "gonic.${var.server_domain}" + port = "4747" + host = "127.0.0.1" + tls = false + }, + ] + +} + +output "app_urls" { + value = module.gonic.app_urls +} + +output "installed" { + value = true + depends_on = [module.gonic.installed] +} diff --git a/quadlets/modules/hetzner/cloud-init.yml b/quadlets/modules/hetzner/cloud-init.yml new file mode 100644 index 0000000..199790a --- /dev/null +++ b/quadlets/modules/hetzner/cloud-init.yml @@ -0,0 +1,561 @@ +#cloud-config +users: + - name: fourlights + sudo: ALL=(ALL) NOPASSWD:ALL + groups: users,admin,sudo + shell: /bin/bash + lock_passwd: false + ssh_authorized_keys: + - ${ssh_public_key} + +packages: + - podman + - haproxy + - python3 + - python3-requests + - curl + - wget + - jq + - socat + - nmap + +package_update: true +package_upgrade: true + +write_files: + - path: /etc/sudoers.d/fourlights-haproxy + permissions: '0440' + content: | + fourlights ALL=(root) NOPASSWD: /bin/systemctl reload haproxy + fourlights ALL=(root) NOPASSWD: /bin/systemctl restart haproxy + fourlights ALL=(root) NOPASSWD: /bin/systemctl stop haproxy + fourlights ALL=(root) NOPASSWD: /bin/systemctl start haproxy + fourlights ALL=(root) NOPASSWD: /bin/chown -R haproxy\:haproxy /etc/ssl/haproxy/* + fourlights ALL=(root) NOPASSWD: /bin/chmod 600 /etc/ssl/haproxy/* + # HAProxy main configuration + - path: /etc/haproxy/haproxy.cfg + content: | + global + daemon + stats socket /var/run/haproxy/admin.sock mode 660 level admin expose-fd listeners + stats timeout 30s + user haproxy + group haproxy + log stdout local0 info + + defaults + mode http + timeout connect 5000ms + timeout client 50000ms + timeout server 50000ms + option httplog + log global + + # Stats interface + frontend stats + bind *:8404 + http-request use-service prometheus-exporter if { path /metrics } + stats enable + stats uri /stats + stats refresh 10s + + # HTTP Frontend + frontend main + bind *:80 + # ACL to detect ACME challenge requests + acl is_acme_challenge path_beg /.well-known/acme-challenge/ + # Route ACME challenges to the acme_challenge backend + use_backend acme_challenge if is_acme_challenge + default_backend no_match + + # HTTPS Frontend + frontend https_main + bind *:443 + default_backend no_match + + # ACME Challenge Backend + backend acme_challenge + mode http + server acme_server 127.0.0.1:8888 + + # Default backend + backend no_match + http-request return status 404 content-type text/plain string "No matching service found" + + - path: /etc/dataplaneapi/dataplaneapi.yml + content: | + dataplaneapi: + host: 0.0.0.0 + port: 5555 + user: + - insecure: true + password: admin + username: admin + + haproxy: + config_file: /etc/haproxy/haproxy.cfg + haproxy_bin: /usr/sbin/haproxy + reload: + reload_cmd: systemctl reload haproxy + restart_cmd: systemctl restart haproxy + stats_socket: /var/run/haproxy/admin.sock + + - path: /usr/local/bin/podman-haproxy-acme-sync-wrapper.sh + permissions: '0755' + content: | + #!/bin/bash + + set -e + + MAX_WAIT=60 + ELAPSED=0 + + # Wait for HAProxy + echo "Checking HAProxy status..." + while ! systemctl is-active --quiet haproxy; do + echo "Waiting for HAProxy to start..." + sleep 2 + ELAPSED=$($ELAPSED + 2) + [ $ELAPSED -ge $MAX_WAIT ] && { echo "ERROR: HAProxy timeout"; exit 1; } + done + echo "HAProxy is active" + + # Reset and wait for Data Plane API to actually respond + ELAPSED=0 + echo "Checking Data Plane API readiness..." + while true; do + HTTP_CODE=$(curl -s -w "%%{http_code}" -o /dev/null \ + --connect-timeout 5 \ + --max-time 10 \ + -u :admin \ + http://localhost:5555/v3/services/haproxy/configuration/version 2>/dev/null || echo "000") + + [ "$HTTP_CODE" = "200" ] && { echo "Data Plane API ready"; break; } + + echo "Waiting for Data Plane API... (HTTP $HTTP_CODE)" + sleep 2 + ELAPSED=$((ELAPSED + 2)) + + if [ $ELAPSED -ge $MAX_WAIT ]; then + echo "ERROR: Data Plane API not ready within $MAX_WAITs (HTTP $HTTP_CODE)" + journalctl -u dataplaneapi -n 50 --no-pager + exit 1 + fi + done + + sleep 2 + exec /usr/local/bin/podman-haproxy-acme-sync.py + + # Podman HAProxy ACME Sync Script + - path: /usr/local/bin/podman-haproxy-acme-sync.py + permissions: '0755' + content: | + #!/usr/bin/env python3 + + import json + import subprocess + import requests + import time + import os + import sys + + HAPROXY_API_BASE = "http://:admin@127.0.0.1:5555/v3" + CERT_DIR = "/home/fourlights/.acme.sh" + ACME_SCRIPT = "/usr/local/bin/acme.sh" + + class PodmanHAProxyACMESync: + def __init__(self): + self.ssl_services = set() + self.session = requests.Session() + self.session.headers.update({'Content-Type': 'application/json'}) + + def get_next_index(self, path): + response = self.session.get(f"{HAPROXY_API_BASE}/services/haproxy/configuration/{path}") + return len(response.json()) if response.status_code == 200 else None + + def get_dataplaneapi_version(self): + response = self.session.get(f"{HAPROXY_API_BASE}/services/haproxy/configuration/version") + return response.json() if response.status_code == 200 else None + + def get_container_labels(self, container_id): + try: + result = subprocess.run(['podman', 'inspect', container_id], + capture_output=True, text=True) + if result.returncode == 0: + data = json.loads(result.stdout) + return data[0]['Config']['Labels'] or {} + except Exception as e: + print(f"Error getting labels for {container_id}: {e}") + return {} + + def request_certificate(self, domain): + print(f"[CERT-REQUEST] About to request certificate for {domain}") + sys.stdout.flush() + + try: + cmd = [ + ACME_SCRIPT, + "--issue", + "-d", domain, + "--standalone", + "--httpport", "8888", + "--server", "letsencrypt", + "--listen-v4", + "--debug", "2" + ] + + # Log the command being executed + print(f"[CERT-REQUEST] Executing: {' '.join(cmd)}") + sys.stdout.flush() + + result = subprocess.run(cmd, capture_output=True, text=True) + + # Log both stdout and stderr for complete debugging + if result.stdout: + print(f"[CERT-STDOUT] {result.stdout}") + sys.stdout.flush() + if result.stderr: + print(f"[CERT-STDERR] {result.stderr}") + sys.stderr.flush() + + if result.returncode == 0: + print(f"[CERT-SUCCESS] Certificate obtained for {domain}") + sys.stdout.flush() + self.install_certificate(domain) + return True + else: + print(f"[CERT-FAILED] Failed to obtain certificate for {domain}") + print(f"[CERT-FAILED] Return code: {result.returncode}") + sys.stdout.flush() + return False + + except Exception as e: + print(f"[CERT-ERROR] Error requesting certificate: {e}") + sys.stdout.flush() + return False + + def install_certificate(self, domain): + cert_file = f"{CERT_DIR}/{domain}.pem" + + try: + acme_cert_dir = f"/home/fourlights/.acme.sh/{domain}_ecc" + + with open(cert_file, 'w') as outfile: + with open(f"{acme_cert_dir}/fullchain.cer") as cert: + outfile.write(cert.read()) + with open(f"{acme_cert_dir}/{domain}.key") as key: + outfile.write(key.read()) + try: + with open(f"{acme_cert_dir}/ca.cer") as ca: + outfile.write(ca.read()) + except FileNotFoundError: + pass + + os.chmod(cert_file, 0o600) + print(f"Certificate installed at {cert_file}") + + self.update_haproxy_ssl_bind(domain) + + except Exception as e: + print(f"Error installing certificate for {domain}: {e}") + + def update_haproxy_ssl_bind(self, domain): + print(f"Updating ssl bind for {domain}") + try: + ssl_bind_data = { + "address": "*", + "port": 443, + "ssl": True, + "ssl_certificate": f"{CERT_DIR}/{domain}.pem", + } + + response = self.session.post(f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/https_main/binds?version={self.get_dataplaneapi_version()}", + json=ssl_bind_data) + print(response.json()) + + if response.status_code in [200, 201]: + print(f"Updated HAProxy SSL bind for {domain}") + + except Exception as e: + print(f"Error updating HAProxy SSL bind: {e}") + + def setup_certificate_renewal(self, domain): + renewal_script = f"/etc/cron.d/acme-{domain.replace('.', '-')}" + + cron_content = f"""0 0 * * * root {ACME_SCRIPT} --renew -d {domain} --post-hook "systemctl reload haproxy" >/dev/null 2>&1 + """ + + with open(renewal_script, 'w') as f: + f.write(cron_content) + + print(f"Setup automatic renewal for {domain}") + + def update_haproxy_backend(self, service_name, host, port, action='add'): + backend_name = f"backend_{service_name}" + server_name = f"{service_name}_server" + + if action == 'add': + backend_data = { + "name": backend_name, + "mode": "http", + "balance": {"algorithm": "roundrobin"}, + } + backends = self.session.post(f"{HAPROXY_API_BASE}/services/haproxy/configuration/backends?version={self.get_dataplaneapi_version()}", + json=backend_data) + print(backends.json()) + + server_data = { + "name": server_name, + "address": host, + "port": int(port), + "check": "enabled", + } + tweak = self.session.post(f"{HAPROXY_API_BASE}/services/haproxy/configuration/backends/{backend_name}/servers?version={self.get_dataplaneapi_version()}", + json=server_data) + print(tweak.json()) + + elif action == 'remove': + self.session.delete(f"{HAPROXY_API_BASE}/services/haproxy/configuration/backends/{backend_name}/servers/{server_name}?version={self.get_dataplaneapi_version()}") + + def update_haproxy_frontend_rule(self, service_name, domain, ssl_enabled=False, action='add'): + if action == 'add': + if ssl_enabled and domain and domain not in self.ssl_services: + print(f"Setting up SSL for {domain}") + if self.request_certificate(domain): + self.setup_certificate_renewal(domain) + self.ssl_services.add(domain) + + acl_data = { + "acl_name": f"is_{service_name}", + "criterion": "hdr(host)", + "value": domain, + } + self.session.post(f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/main/acls/{self.get_next_index('frontends/main/acls')}?version={self.get_dataplaneapi_version()}", + json=acl_data) + + if ssl_enabled: + self.session.post(f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/https_main/acls/{self.get_next_index('frontends/https_main/acls')}?version={self.get_dataplaneapi_version()}", + json=acl_data) + + rule_data = { + "name": f"backend_{service_name}", + "cond": "if", + "cond_test": f"is_{service_name}", + } + self.session.post(f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/main/backend_switching_rules/{self.get_next_index('frontends/main/backend_switching_rules')}?version={self.get_dataplaneapi_version()}", + json=rule_data) + + if ssl_enabled: + self.session.post(f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/https_main/backend_switching_rules/{self.get_next_index('frontends/https_main/backend_switching_rules')}?version={self.get_dataplaneapi_version()}", + json=rule_data) + + redirect_rule = { + "type": "redirect", + "redirect_rule": { + "type": "scheme", + "value": "https", + "code": 301 + }, + "cond": "if", + "cond_test": f"is_{service_name}", + } + self.session.post(f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/main/http_request_rules/{self.get_next_index('frontends/main/http_request_rules')}?version={self.get_dataplaneapi_version()}", + json=redirect_rule) + + def process_container_event(self, event): + # DIAGNOSTIC: Log raw event structure + print(f"[EVENT-DEBUG] Received event - Type: {event.get('Type', 'MISSING')}, Action: {event.get('Action', 'MISSING')}") + sys.stdout.flush() + + # DIAGNOSTIC: Check for Actor key + if 'Actor' not in event: + print(f"[EVENT-SKIP] Skipping event without 'Actor' key - Full event: {json.dumps(event)}") + sys.stdout.flush() + return + + # DIAGNOSTIC: Check for ID in Actor + if 'ID' not in event['Actor']: + print(f"[EVENT-SKIP] Skipping event without 'Actor.ID' - Actor content: {json.dumps(event['Actor'])}") + sys.stdout.flush() + return + + container_id = event['Actor']['ID'][:12] + action = event['Action'] + + print(f"[EVENT-PROCESS] Processing '{action}' event for container {container_id}") + sys.stdout.flush() + + labels = self.get_container_labels(container_id) + + # Dictionary to store discovered services + services = {} + + # First, check for namespaced labels (haproxy.{service_name}.enable) + for label_key, label_value in labels.items(): + if label_key.startswith('haproxy.') and label_key.endswith('.enable') and label_value.lower() == 'true': + # Extract service name from label key + parts = label_key.split('.') + if len(parts) == 3: # haproxy.{service_name}.enable + service_name = parts[1] + + # Extract properties for this service namespace + service_config = { + 'service_name': service_name, + 'host': labels.get(f'haproxy.{service_name}.host', '127.0.0.1'), + 'port': labels.get(f'haproxy.{service_name}.port', '8080'), + 'domain': labels.get(f'haproxy.{service_name}.domain', None), + 'ssl_enabled': labels.get(f'haproxy.{service_name}.tls', 'false').lower() == 'true' + } + services[service_name] = service_config + + # Backward compatibility: If no namespaced labels found, check for flat labels + if not services and 'haproxy.enable' in labels and labels['haproxy.enable'].lower() == 'true': + service_name = labels.get('haproxy.service', container_id) + services[service_name] = { + 'service_name': service_name, + 'host': labels.get('haproxy.host', '127.0.0.1'), + 'port': labels.get('haproxy.port', '8080'), + 'domain': labels.get('haproxy.domain', None), + 'ssl_enabled': labels.get('haproxy.tls', 'false').lower() == 'true' + } + + # Process each discovered service + for service_name, config in services.items(): + if action in ['start', 'restart']: + print(f"Adding service {config['service_name']} to HAProxy (SSL: {config['ssl_enabled']}, Domain: {config['domain']})") + sys.stdout.flush() + self.update_haproxy_backend(config['service_name'], config['host'], config['port'], 'add') + if config['domain']: + self.update_haproxy_frontend_rule(config['service_name'], config['domain'], config['ssl_enabled'], 'add') + + elif action in ['stop', 'remove', 'died']: + print(f"Removing service {config['service_name']} from HAProxy") + sys.stdout.flush() + self.update_haproxy_backend(config['service_name'], config['host'], config['port'], 'remove') + + def watch_events(self): + print("Starting Podman-HAProxy-ACME sync...") + + # Track last sync time + last_full_sync = 0 + SYNC_INTERVAL = 60 # Re-scan all containers every 60 seconds + + def do_full_sync(): + """Perform a full sync of all running containers""" + print("Performing full container sync...") + try: + result = subprocess.run(['podman', 'ps', '--format', 'json'], + capture_output=True, text=True) + if result.returncode == 0: + containers = json.loads(result.stdout) + for container in containers: + event = { + 'Type': 'container', + 'Action': 'start', + 'Actor': {'ID': container.get('Id', '')} + } + self.process_container_event(event) + print(f"Synced {len(containers)} containers") + except Exception as e: + print(f"Error during full sync: {e}") + + # Initial sync + do_full_sync() + last_full_sync = time.time() + + print("Watching for container events...") + + cmd = ['podman', 'events', '--format', 'json'] + process = subprocess.Popen(cmd, stdout=subprocess.PIPE, text=True) + + # Use select/poll for non-blocking read so we can do periodic syncs + import select + + while True: + # Check if it's time for periodic sync + if time.time() - last_full_sync >= SYNC_INTERVAL: + do_full_sync() + last_full_sync = time.time() + + # Check for events with timeout + ready, _, _ = select.select([process.stdout], [], [], 5) + + if ready: + line = process.stdout.readline() + if line: + try: + event = json.loads(line.strip()) + if event['Type'] == 'container': + self.process_container_event(event) + except json.JSONDecodeError as e: + print(f"[EVENT-ERROR] JSON decode error: {e} - Line: {line[:100]}") + sys.stdout.flush() + except KeyError as e: + print(f"[EVENT-ERROR] Missing key {e} in event: {json.dumps(event)}") + sys.stdout.flush() + except Exception as e: + print(f"[EVENT-ERROR] Error processing event: {e}") + print(f"[EVENT-ERROR] Event structure: {json.dumps(event)}") + sys.stdout.flush() + + if __name__ == "__main__": + os.makedirs(CERT_DIR, exist_ok=True) + sync = PodmanHAProxyACMESync() + sync.watch_events() + +runcmd: + # Create necessary directories + - mkdir -p /var/run/haproxy /etc/ssl/haproxy /etc/containers/systemd /etc/haproxy/dataplane /etc/dataplaneapi + - chown haproxy:haproxy /var/run/haproxy + + # Install Data Plane API + - cd /tmp && curl -LO https://github.com/haproxytech/dataplaneapi/releases/download/v3.2.4/dataplaneapi_3.2.4_linux_amd64.deb + - env DEBIAN_FRONTEND=noninteractive apt install -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" /tmp/dataplaneapi_3.2.4_linux_amd64.deb + - rm /tmp/dataplaneapi_3.2.4_linux_amd64.deb + + - mkdir -p /home/fourlights/.config/containers/systemd + - mkdir -p /home/fourlights/.config/systemd/user + - | + cat > /home/fourlights/.config/systemd/user/podman-haproxy-acme-sync.service << 'EOF' + [Unit] + Description=Podman HAProxy ACME Sync Service + After=network.target + + [Service] + Type=simple + Environment="XDG_RUNTIME_DIR=/run/user/1000" + Environment="DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus" + ExecStart=/usr/local/bin/podman-haproxy-acme-sync-wrapper.sh + StandardOutput=journal + StandardError=journal + Restart=always + RestartSec=10 + + [Install] + WantedBy=default.target + EOF + - chown -R fourlights:fourlights /home/fourlights + + # Install ACME.sh + - su - fourlights -c 'curl https://get.acme.sh | sh -s email=${acme_email}' + - ln -sf /home/fourlights/.acme.sh/acme.sh /usr/local/bin/acme.sh + + # Setup data directory and mount volume + - mkdir -p /opt/storage/data + - mkfs.ext4 -F /dev/sdb + - mount /dev/sdb /opt/storage/data + - echo '/dev/sdb /opt/storage/data ext4 defaults 0 2' >> /etc/fstab + - chown -R fourlights:fourlights /opt/storage/data + + # Enable Podman for user services + - loginctl enable-linger fourlights + - su - fourlights -c 'podman login ghcr.io -u ${ghcr_username} -p ${ghcr_token}' + + # Enable and start services + - systemctl daemon-reload + - systemctl enable --now haproxy + - systemctl enable --now dataplaneapi + - su - fourlights -c 'systemctl --user daemon-reload' + - su - fourlights -c 'systemctl --user enable --now podman-haproxy-acme-sync' + +final_message: "Server setup complete with HAProxy, Podman, and ACME sync configured" diff --git a/quadlets/modules/hetzner/dns/main.tf b/quadlets/modules/hetzner/dns/main.tf new file mode 100644 index 0000000..66b3cad --- /dev/null +++ b/quadlets/modules/hetzner/dns/main.tf @@ -0,0 +1,53 @@ +variable "hdns_token" {} +variable "zone" { default = "fourlights.dev" } +variable "ipv4_address" {} +variable "ipv6_address" {} + +variable "root" {} + +terraform { + required_providers { + hetznerdns = { + source = "timohirt/hetznerdns" + version = "2.2.0" + } + } +} + +provider "hetznerdns" { + apitoken = var.hdns_token +} + +resource "hetznerdns_zone" "zone" { + name = var.zone + ttl = 300 +} + +resource "hetznerdns_record" "server_root_ipv4" { + zone_id = hetznerdns_zone.zone.id + name = var.root == null || var.root == "" ? "@" : var.root + value = var.ipv4_address + type = "A" +} + +resource "hetznerdns_record" "server_root_ipv6" { + zone_id = hetznerdns_zone.zone.id + name = var.root == null || var.root == "" ? "@" : var.root + value = var.ipv6_address + type = "AAAA" +} + +resource "hetznerdns_record" "server_wildcard" { + zone_id = hetznerdns_zone.zone.id + name = var.root == null || var.root == "" ? "*" : "*.${var.root}" + value = var.root + type = "CNAME" +} + +locals { + root_suffix = var.root == null || var.root == "" ? "" : "." +} + +output "server_domain" { + value = "${var.root}${local.root_suffix}${var.zone}" +} \ No newline at end of file diff --git a/quadlets/modules/hetzner/main.tf b/quadlets/modules/hetzner/main.tf new file mode 100644 index 0000000..8180944 --- /dev/null +++ b/quadlets/modules/hetzner/main.tf @@ -0,0 +1,191 @@ +terraform { + required_providers { + hcloud = { + source = "hetznercloud/hcloud" + version = "~> 1.0" + } + } +} + +provider "hcloud" { + token = var.hcloud_token +} + +variable "hcloud_token" { + description = "Hetzner Cloud API Token" + type = string + sensitive = true +} + +variable "ssh_public_key_path" { + description = "Path to SSH public key" + type = string +} + +variable "ssh_private_key_path" { + description = "Path to SSH private key" + type = string +} + +# variable "acme_email" { +# description = "Email for Let's Encrypt certificates" +# type = string +# default = "engineering@fourlights.nl" +# } + +variable "image" { + type = string + default = "ubuntu-24.04" +} + +variable "location" { + type = string + default = "nbg1" +} + +variable "server_type" { + type = string + default = "cx22" +} + +variable "datacenter" { + type = string + default = "nbg1-dc3" +} + +variable "name" { + type = string + default = "enterprise" +} + +variable "zone" { + type = string + default = "fourlights.dev" +} + +variable "hdns_token" {} +variable "ghcr_username" {} +variable "ghcr_token" {} + +locals { + acme_email = "engineering+${var.name}@fourlights.nl" +} + +resource "hcloud_primary_ip" "server_ipv4" { + name = "${var.name}-ipv4" + type = "ipv4" + assignee_type = "server" + datacenter = var.datacenter + auto_delete = false +} + +resource "hcloud_primary_ip" "server_ipv6" { + name = "${var.name}-ipv6" + type = "ipv6" + assignee_type = "server" + datacenter = var.datacenter + auto_delete = false +} + +module "dns" { + source = "./dns" + + hdns_token = var.hdns_token + zone = var.zone + ipv4_address = hcloud_primary_ip.server_ipv4.ip_address + ipv6_address = hcloud_primary_ip.server_ipv6.ip_address + root = "visualworkplace" +} + +# SSH Key +resource "hcloud_ssh_key" "default" { + name = "terraform-key" + public_key = file(var.ssh_public_key_path) +} + +# Persistent volume for MinIO +resource "hcloud_volume" "minio_data" { + name = "minio-data" + size = 50 + location = var.location +} + +# Server with comprehensive cloud-init setup +resource "hcloud_server" "server" { + name = var.name + image = var.image + server_type = var.server_type + location = var.location + ssh_keys = [hcloud_ssh_key.default.id] + + user_data = templatefile("${path.module}/cloud-init.yml", { + acme_email = local.acme_email + ssh_public_key = hcloud_ssh_key.default.public_key, + ghcr_username = var.ghcr_username + ghcr_token = var.ghcr_token + }) + + public_net { + ipv4_enabled = true + ipv6_enabled = true + + ipv4 = hcloud_primary_ip.server_ipv4.id + ipv6 = hcloud_primary_ip.server_ipv6.id + } + + lifecycle { + replace_triggered_by = [ + # This ensures server gets rebuilt when user_data changes + ] + } +} + +# Attach volume +resource "hcloud_volume_attachment" "minio_data" { + volume_id = hcloud_volume.minio_data.id + server_id = hcloud_server.server.id + automount = false # We'll handle mounting in cloud-init +} + +# Wait for cloud-init to complete +resource "null_resource" "wait_for_cloud_init" { + depends_on = [hcloud_server.server] + + connection { + type = "ssh" + host = hcloud_server.server.ipv4_address + user = "fourlights" + timeout = "10m" + agent = true + agent_identity = var.ssh_private_key_path + } + + provisioner "remote-exec" { + inline = [ + "echo 'Waiting for cloud-init to complete...'", + "cloud-init status --wait", + "echo 'Cloud-init completed successfully'" + ] + } +} + +output "server_ip" { + value = hcloud_server.server.ipv4_address +} + +output "haproxy_stats" { + value = "http://${hcloud_server.server.ipv4_address}:8404/stats" +} + +output "haproxy_api" { + value = "http://${hcloud_server.server.ipv4_address}:5555" +} + +output "server_domain" { + value = module.dns.server_domain +} + +output "installed" { + value = true + depends_on = [null_resource.wait_for_cloud_init] +} diff --git a/quadlets/modules/kosync/main.tf b/quadlets/modules/kosync/main.tf new file mode 100644 index 0000000..661b593 --- /dev/null +++ b/quadlets/modules/kosync/main.tf @@ -0,0 +1,61 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +module "kosync" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "kosync" + image = "docker.io/koreader/kosync:latest" + ports = ["17200:17200"] + volumes = [ + "/opt/storage/data/kosync/logs/app:/app/koreader-sync-server/logs:Z", + "/opt/storage/data/kosync/logs/redis:/var/log/redis:Z", + "/opt/storage/data/kosync/data/redis:/var/lib/redis:Z", + ] + + environment = { + ENABLE_USER_REGISTRATION = "true" + GIN_ENV = "production" + } + + # Healthcheck over plain HTTP (port 17200) since HAProxy handles TLS + healthcmd = "curl -sf -H \"Accept: application/vnd.koreader.v1+json\" http://127.0.0.1:17200/healthcheck | grep -q '\"state\":\"OK\"'" + + haproxy_services = [ + { + name = "kosync" + domain = "kosync.${var.server_domain}" + port = "17200" + host = "127.0.0.1" + tls = false + }, + ] +} + +output "app_urls" { + value = module.kosync.app_urls +} + +output "installed" { + value = true + depends_on = [module.kosync.installed] +} diff --git a/quadlets/modules/minio/main.tf b/quadlets/modules/minio/main.tf new file mode 100644 index 0000000..9a40dbb --- /dev/null +++ b/quadlets/modules/minio/main.tf @@ -0,0 +1,97 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +variable "https" { + type = bool + default = false +} + +resource "random_password" "minio_access_key" { + length = 20 + special = false +} + +resource "random_password" "minio_secret_key" { + length = 40 + special = false +} + +module "minio" { + wait_on = var.wait_on + source = "../quadlet-app" + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "minio" + image = "docker.io/minio/minio:latest" + ports = [ + "9000:9000", # API port + "9001:9001" # Console port + ] + volumes = ["/opt/storage/data/minio:/data:Z"] + + environment = { + MINIO_ROOT_USER = random_password.minio_access_key.result + MINIO_ROOT_PASSWORD = random_password.minio_secret_key.result + MINIO_CONSOLE_ADDRESS = ":9001" + MINIO_BROWSER_REDIRECT_URL = "${var.https ? "https" : "http" }://storage.${var.server_domain}" + } + + command = ["server", "/data", "--console-address", ":9001"] + healthcmd = "curl -f http://localhost:9001/minio/health/live || exit 1" + + # Configure multiple HAProxy services for MinIO + haproxy_services = [ + { + name = "minio_api" + domain = "storage-api.${var.server_domain}" + port = "9000" + host = "127.0.0.1" + tls = false + }, + { + name = "minio_console" + domain = "storage.${var.server_domain}" + port = "9001" + host = "127.0.0.1" + tls = false + } + ] +} + +output "app_urls" { + value = module.minio.app_urls +} + +output "server" { + value = "storage-api.${var.server_domain}" +} + +output "access_key" { + value = random_password.minio_access_key.result +} + +output "secret_key" { + value = random_password.minio_secret_key.result +} + +output "installed" { + value = true + depends_on = [module.minio.installed] +} \ No newline at end of file diff --git a/quadlets/modules/minio/tenant/main.tf b/quadlets/modules/minio/tenant/main.tf new file mode 100644 index 0000000..d201477 --- /dev/null +++ b/quadlets/modules/minio/tenant/main.tf @@ -0,0 +1,222 @@ +resource "null_resource" "health_check" { + depends_on = [var.wait_on] + + provisioner "local-exec" { + command = <<-EOT + until curl -s -f "${var.tls ? "https" : "http" }://${var.server}/minio/health/live" || [[ $attempts -ge 60 ]]; do + sleep 10 + attempts=$((attempts+1)) + done + if [[ $attempts -ge 60 ]]; then + echo "Minio health check failed after maximum attempts" + exit 1 + fi + EOT + } +} + +resource "minio_s3_bucket" "overlay" { + depends_on = [var.wait_on] + bucket = var.name + acl = "private" +} + +resource "minio_s3_bucket_policy" "overlay" { + depends_on = [minio_s3_bucket.overlay] + bucket = minio_s3_bucket.overlay.bucket + policy = jsonencode({ + "Version" : "2012-10-17", + "Statement" : [ + { + "Effect" : "Allow", + "Principal" : { + "AWS" : [ + "*" + ] + }, + "Action" : [ + "s3:GetBucketLocation" + ], + "Resource" : [ + minio_s3_bucket.overlay.arn, + ] + }, + { + "Effect" : "Allow", + "Principal" : { + "AWS" : [ + "*" + ] + }, + "Action" : [ + "s3:ListBucket" + ], + "Resource" : [ + minio_s3_bucket.overlay.arn, + ], + "Condition" : { + "StringEquals" : { + "s3:prefix" : [ + "*" + ] + } + } + }, + { + "Effect" : "Allow", + "Principal" : { + "AWS" : [ + "*" + ] + }, + "Action" : [ + "s3:GetObject" + ], + "Resource" : [ + "${minio_s3_bucket.overlay.arn}/**", + ] + } + ] + }) +} + +resource "minio_s3_bucket" "uploads" { + depends_on = [null_resource.health_check] + bucket = "uploads" + acl = "private" +} + +resource "minio_s3_bucket_policy" "uploads" { + depends_on = [minio_s3_bucket.uploads] + bucket = minio_s3_bucket.uploads.bucket + policy = jsonencode({ + "Version" : "2012-10-17", + "Statement" : [ + { + "Effect" : "Allow", + "Principal" : { + "AWS" : [ + "*" + ] + }, + "Action" : [ + "s3:GetBucketLocation" + ], + "Resource" : [ + minio_s3_bucket.uploads.arn, + ] + }, + { + "Effect" : "Allow", + "Principal" : { + "AWS" : [ + "*" + ] + }, + "Action" : [ + "s3:ListBucket" + ], + "Resource" : [ + minio_s3_bucket.uploads.arn, + ], + "Condition" : { + "StringEquals" : { + "s3:prefix" : [ + "*" + ] + } + } + }, + { + "Effect" : "Allow", + "Principal" : { + "AWS" : [ + "*" + ] + }, + "Action" : [ + "s3:GetObject" + ], + "Resource" : [ + "${minio_s3_bucket.uploads.arn}/**", + ] + } + ] + }) +} + +resource "minio_iam_user" "overlay" { + depends_on = [null_resource.health_check] + name = var.name +} + +resource "minio_iam_policy" "overlay" { + depends_on = [minio_s3_bucket.overlay, minio_s3_bucket.uploads] + name = minio_s3_bucket.overlay.bucket + policy = jsonencode({ + Version = "2012-10-17" + Statement = [ + { + Effect = "Allow" + Action = ["s3:ListBucket"] + Resource = [minio_s3_bucket.overlay.arn, minio_s3_bucket.uploads.arn, ] + }, + { + Effect = "Allow" + Action = [ + "s3:GetObject", + "s3:PutObject", + "s3:DeleteObject" + ] + Resource = ["${minio_s3_bucket.overlay.arn}/*", "${minio_s3_bucket.uploads.arn}/*"] + } + ] + }) +} + + +resource "minio_iam_user_policy_attachment" "overlay" { + depends_on = [minio_iam_user.overlay, minio_iam_policy.overlay] + + user_name = minio_iam_user.overlay.id + policy_name = minio_iam_policy.overlay.id +} + +resource "minio_iam_service_account" "overlay" { + depends_on = [minio_iam_user.overlay, minio_s3_bucket.overlay, minio_s3_bucket.uploads] + target_user = minio_iam_user.overlay.name + name = var.name + policy = jsonencode({ + Version = "2012-10-17" + Statement = [ + { + Effect = "Allow" + Action = ["s3:ListBucket"] + Resource = [minio_s3_bucket.overlay.arn, minio_s3_bucket.uploads.arn] + }, + { + Effect = "Allow" + Action = [ + "s3:GetObject", + "s3:PutObject", + "s3:DeleteObject" + ] + Resource = ["${minio_s3_bucket.overlay.arn}/*", "${minio_s3_bucket.uploads.arn}/*"] + } + ] + }) +} + +output "bucket" { + value = var.name +} + +output "access_key" { + value = minio_iam_service_account.overlay.access_key + sensitive = true +} + +output "secret_key" { + value = minio_iam_service_account.overlay.secret_key + sensitive = true +} diff --git a/quadlets/modules/minio/tenant/providers.tf b/quadlets/modules/minio/tenant/providers.tf new file mode 100644 index 0000000..e1ac5bc --- /dev/null +++ b/quadlets/modules/minio/tenant/providers.tf @@ -0,0 +1,16 @@ +terraform { + required_providers { + minio = { + source = "aminueza/minio" + version = "~> 3.3.0" + } + } +} + +provider "minio" { + minio_server = var.server + minio_region = var.region + minio_user = var.access_key + minio_password = var.secret_key + minio_ssl = var.tls +} diff --git a/quadlets/modules/minio/tenant/variables.tf b/quadlets/modules/minio/tenant/variables.tf new file mode 100644 index 0000000..4ce1cbd --- /dev/null +++ b/quadlets/modules/minio/tenant/variables.tf @@ -0,0 +1,33 @@ +variable "name" { + type = string +} + +variable "server" { + type = string +} + +variable "access_key" { + type = string + sensitive = true +} + +variable "secret_key" { + type = string + sensitive = true +} + +variable "region" { + type = string + default = "eu-central-1" +} + +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "tls" { + type = bool + default = false +} \ No newline at end of file diff --git a/quadlets/modules/mopidy/main.tf b/quadlets/modules/mopidy/main.tf new file mode 100644 index 0000000..cbf98fd --- /dev/null +++ b/quadlets/modules/mopidy/main.tf @@ -0,0 +1,59 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +module "mopidy" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "mopidy" + image = "docker.io/ivdata/mopidy" + ports = ["6600:6600", "6680:6680"] + volumes = [ + "/opt/storage/data/mopidy:/var/lib/mopidy:Z", + "/opt/storage/data/mopidy/mopidy.conf:/home/mopidy/.config/mopidy/mopidy.conf:Z", + "/opt/storage/media/music:/media/music:ro,Z", + ] + + # environment = { + # SPOTIFY_CLIENT_ID="ff4a141c-cb52-4569-9848-c0468da66bd1" + # SPOTIFY_CLIENT_SECRET="VVXVtoiY8DanFLl9BnpHvLygXCchboHoEewoALTHIaA=" + # } + + haproxy_services = [ + { + name = "mopidy" + domain = "mopidy.${var.server_domain}" + port = "6680" + host = "127.0.0.1" + tls = false + }, + ] + +} + +output "app_urls" { + value = module.mopidy.app_urls +} + +output "installed" { + value = true + depends_on = [module.mopidy.installed] +} diff --git a/quadlets/modules/navidrome/main.tf b/quadlets/modules/navidrome/main.tf new file mode 100644 index 0000000..c1a1174 --- /dev/null +++ b/quadlets/modules/navidrome/main.tf @@ -0,0 +1,58 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +module "navidrome" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "navidrome" + image = "docker.io/deluan/navidrome:latest" + ports = ["4533:4533"] + volumes = [ + "/opt/storage/data/navidrome:/data:Z", + "/opt/storage/media/music:/music:ro,Z", + ] + + environment = { + ND_LOGLEVEL="info" + ND_ENABLEINSIGHTSCOLLECTOR="false" + } + + haproxy_services = [ + { + name = "navidrome" + domain = "navidrome.${var.server_domain}" + port = "4533" + host = "127.0.0.1" + tls = false + }, + ] + +} + +output "app_urls" { + value = module.navidrome.app_urls +} + +output "installed" { + value = true + depends_on = [module.navidrome.installed] +} diff --git a/quadlets/modules/oci-proxy/main.tf b/quadlets/modules/oci-proxy/main.tf new file mode 100644 index 0000000..a1fe390 --- /dev/null +++ b/quadlets/modules/oci-proxy/main.tf @@ -0,0 +1,62 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +module "oci-proxy" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "oci-proxy" + image = "docker.io/tecnativa/docker-socket-proxy" + ports = ["2375:2375"] + volumes = ["/run/user/1001/podman/podman.sock:/var/run/docker.sock:Z"] + + environment = { + LOG_LEVEL = "info" + EVENTS = 1 + PING = 1 + VERSION = 1 + AUTH = 0 + SECRETS = 0 + POST = 1 + BUILD = 0 + COMMIT = 0 + CONFIGS = 0 + CONTAINERS = 1 + DISTRIBUTION = 0 + EXEC = 0 + IMAGES = 1 + INFO = 1 + NETWORKS = 1 + NODES = 0 + PLUGINS = 0 + SERVICES = 1 + SESSION = 0 + SWARM = 0 + SYSTEM = 0 + TASKS = 1 + VOLUMES = 1 + } +} + +output "app_urls" { + value = module.oci-proxy.app_urls +} + +output "installed" { + value = true + depends_on = [module.oci-proxy.installed] +} \ No newline at end of file diff --git a/quadlets/modules/opensign/main.tf b/quadlets/modules/opensign/main.tf new file mode 100644 index 0000000..9197625 --- /dev/null +++ b/quadlets/modules/opensign/main.tf @@ -0,0 +1,111 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +# Generate random keys for esign +resource "random_password" "app_id" { + length = 12 + special = false +} + +resource "random_password" "master_key" { + length = 32 + special = true +} + +module "esign" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "esign" + image = "docker.io/esign/esignserver:main" + ports = ["8180:8080"] + volumes = ["/opt/storage/data/esign:/usr/src/app/files:Z"] + environment = { + # Node environment + NODE_ENV = "production" + + # App identifiers + APP_ID = random_password.app_id.result + REACT_APP_APPID = random_password.app_id.result + appName = "Four Lights - eSign" + MASTER_KEY = random_password.master_key.result + + # Frontend config + PUBLIC_URL = "https://esign.${var.server_domain}" + REACT_APP_SERVERURL = "https://esign.${var.server_domain}/api/app" + GENERATE_SOURCEMAP = "false" + + # Backend API config + SERVER_URL = "https://esign.${var.server_domain}/api/app" + PARSE_MOUNT = "/app" + + # MongoDB connection settings + MONGODB_URI = "mongodb://systemd-documentdb:27017/esign" + + # MinIO/S3 storage configuration + DO_SPACE = "esign" + DO_ENDPOINT = "systemd-minio:9000" + DO_BASEURL = "https://esign.${var.server_domain}/minio" + DO_ACCESS_KEY_ID = "esign" + DO_SECRET_ACCESS_KEY = "esign" + DO_REGION = "us-east-1" + + # Email config (commented out - configure as needed) + # SMTP_ENABLE = "" + # SMTP_HOST = "" + # SMTP_PORT = "" + # SMTP_USER_EMAIL = "" + # SMTP_PASS = "" + + # Document signing (optional) + PFX_BASE64 = "" + PASS_PHRASE = "" + } + + haproxy_services = [ + { + name = "esign" + domain = "esign.${var.server_domain}" + port = "8180" + host = "127.0.0.1" + tls = false + } + ] +} + +output "app_urls" { + value = module.esign.app_urls +} + +output "app_id" { + value = random_password.app_id.result + sensitive = true +} + +output "master_key" { + value = random_password.master_key.result + sensitive = true +} + +output "installed" { + value = true + depends_on = [module.esign.installed] +} diff --git a/quadlets/modules/plane/admin/main.tf b/quadlets/modules/plane/admin/main.tf new file mode 100644 index 0000000..12aa075 --- /dev/null +++ b/quadlets/modules/plane/admin/main.tf @@ -0,0 +1,58 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +module "admin" { + source = "../../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "plane-admin" + image = "docker.io/makeplane/plane-admin:v1.0.0" + ports = ["3010:3000"] + environment = { + # API settings + NEXT_PUBLIC_API_BASE_URL = "https://plane.${var.server_domain}/api" + + # Web settings + NEXT_PUBLIC_WEB_URL = "https://plane.${var.server_domain}/god-mode" + + # Environment + NODE_ENV = "production" + } + + haproxy_services = [ + { + name = "plane-admin" + domain = "plane.${var.server_domain}/god-mode/" + port = "3010" + host = "127.0.0.1" + tls = false + } + ] +} + +output "app_urls" { + value = module.admin.app_urls +} + +output "installed" { + value = true + depends_on = [module.admin.installed] +} \ No newline at end of file diff --git a/quadlets/modules/plane/api/main.tf b/quadlets/modules/plane/api/main.tf new file mode 100644 index 0000000..6551e0c --- /dev/null +++ b/quadlets/modules/plane/api/main.tf @@ -0,0 +1,182 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +# Accept credentials from parent Plane module +variable "db_password" { + type = string + sensitive = true +} + +variable "redis_password" { + type = string + sensitive = true +} + +variable "rabbitmq_password" { + type = string + sensitive = true +} + +variable "minio_access_key" { + type = string + sensitive = true +} + +variable "minio_secret_key" { + type = string + sensitive = true +} + +variable "secret_key" { + type = string + sensitive = true +} + +module "api" { + source = "../../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + restart_policy = "never" + + app_name = "plane-api" + image = "docker.io/makeplane/plane-backend:v1.0.0" + ports = ["3011:8000"] + volumes = [ + "/opt/storage/data/plane-api:/var/www/plane:Z" + ] + environment = { + # Database settings + DATABASE_URL = "postgresql://plane:${var.db_password}@systemd-postgres:5432/plane" + POSTGRES_USER = "plane" + POSTGRES_PASSWORD = var.db_password + POSTGRES_DB = "plane" + + # Redis settings + REDIS_URL = "redis://:${var.redis_password}@systemd-valkey:6379/0" + REDIS_HOST = "systemd-valkey" + REDIS_PORT = "6379" + + # RabbitMQ settings + RABBITMQ_URL = "amqp://plane:${var.rabbitmq_password}@systemd-rabbitmq:5672/plane" + RABBITMQ_HOST = "systemd-rabbitmq" + RABBITMQ_PORT = "5672" + RABBITMQ_USER = "plane" + RABBITMQ_PASSWORD = var.rabbitmq_password + RABBITMQ_VHOST = "plane" + + # MinIO/S3 settings + AWS_S3_ENDPOINT_URL = "http://systemd-minio:9000" + AWS_ACCESS_KEY_ID = var.minio_access_key + AWS_SECRET_ACCESS_KEY = var.minio_secret_key + AWS_S3_BUCKET_NAME = "plane" + AWS_REGION = "us-east-1" + USE_MINIO = "1" + + # Application settings + SECRET_KEY = var.secret_key + DEBUG = "0" + ENVIRONMENT = "production" + + # Web settings + WEB_URL = "https://plane.${var.server_domain}/api/" + ADMIN_BASE_URL = "https://plane.${var.server_domain}/god-mode/" + SPACE_BASE_URL = "https://plane.${var.server_domain}/spaces/" + APP_BASE_URL = "https://plane.${var.server_domain}/" + LIVE_BASE_URL = "https://plane.${var.server_domain}/live/" + + # File upload settings + FILE_SIZE_LIMIT = "5242880" + + # Rate limiting + API_KEY_RATE_LIMIT = "60/minute" + + # Workers + GUNICORN_WORKERS=3 + + # Email settings (optional - can be configured later) + # EMAIL_HOST = "" + # EMAIL_PORT = "" + # EMAIL_HOST_USER = "" + # EMAIL_HOST_PASSWORD = "" + # EMAIL_USE_TLS = "1" + + # OpenAI/GPT settings (optional) + # OPENAI_API_KEY = "" + # GPT_ENGINE = "gpt-3.5-turbo" + } + command = ["./bin/docker-entrypoint-api.sh"] + + haproxy_services = [ + { + name = "plane-api" + domain = "plane.${var.server_domain}/api/" + port = "3011" + host = "127.0.0.1" + tls = false + }, + { + name = "plane-auth" + domain = "plane.${var.server_domain}/auth/" + port = "3011" + host = "127.0.0.1" + tls = false + } + ] +} + +output "app_urls" { + value = module.api.app_urls +} + +output "installed" { + value = true + depends_on = [module.api.installed] +} + +output "db_password" { + value = var.db_password + sensitive = true +} + +output "redis_password" { + value = var.redis_password + sensitive = true +} + +output "rabbitmq_password" { + value = var.rabbitmq_password + sensitive = true +} + +output "minio_access_key" { + value = var.minio_access_key + sensitive = true +} + +output "minio_secret_key" { + value = var.minio_secret_key + sensitive = true +} + +output "secret_key" { + value = var.secret_key + sensitive = true +} \ No newline at end of file diff --git a/quadlets/modules/plane/beat-worker/main.tf b/quadlets/modules/plane/beat-worker/main.tf new file mode 100644 index 0000000..473844a --- /dev/null +++ b/quadlets/modules/plane/beat-worker/main.tf @@ -0,0 +1,112 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +variable "db_password" { + type = string + sensitive = true +} + +variable "redis_password" { + type = string + sensitive = true +} + +variable "rabbitmq_password" { + type = string + sensitive = true +} + +variable "minio_access_key" { + type = string + sensitive = true +} + +variable "minio_secret_key" { + type = string + sensitive = true +} + +variable "secret_key" { + type = string + sensitive = true +} + +module "beat-worker" { + source = "../../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + restart_policy = "never" + + app_name = "plane-beat-worker" + image = "docker.io/makeplane/plane-backend:v1.0.0" + volumes = [ + "/opt/storage/data/plane-beat-worker:/var/www/plane:Z" + ] + environment = { + # Database settings + DATABASE_URL = "postgresql://plane:${var.db_password}@systemd-postgres:5432/plane" + POSTGRES_USER = "plane" + POSTGRES_PASSWORD = var.db_password + POSTGRES_DB = "plane" + + # Redis settings + REDIS_URL = "redis://:${var.redis_password}@systemd-valkey:6379/0" + REDIS_HOST = "systemd-valkey" + REDIS_PORT = "6379" + + # RabbitMQ settings + RABBITMQ_URL = "amqp://plane:${var.rabbitmq_password}@systemd-rabbitmq:5672/plane" + RABBITMQ_HOST = "systemd-rabbitmq" + RABBITMQ_PORT = "5672" + RABBITMQ_USER = "plane" + RABBITMQ_PASSWORD = var.rabbitmq_password + RABBITMQ_VHOST = "plane" + + # MinIO/S3 settings + AWS_S3_ENDPOINT_URL = "http://systemd-minio:9000" + AWS_ACCESS_KEY_ID = var.minio_access_key + AWS_SECRET_ACCESS_KEY = var.minio_secret_key + AWS_S3_BUCKET_NAME = "plane-uploads" + AWS_REGION = "us-east-1" + USE_MINIO = "1" + + # Application settings + SECRET_KEY = var.secret_key + DEBUG = "0" + ENVIRONMENT = "production" + + # Web settings + WEB_URL = "https://plane.${var.server_domain}" + API_BASE_URL = "https://plane.${var.server_domain}/api" + + # File upload settings + FILE_SIZE_LIMIT = "5242880" + + # Rate limiting + API_KEY_RATE_LIMIT = "60/minute" + } + command = ["./bin/docker-entrypoint-beat.sh"] +} + +output "installed" { + value = true + depends_on = [module.beat-worker.installed] +} \ No newline at end of file diff --git a/quadlets/modules/plane/live/main.tf b/quadlets/modules/plane/live/main.tf new file mode 100644 index 0000000..270296d --- /dev/null +++ b/quadlets/modules/plane/live/main.tf @@ -0,0 +1,60 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +module "live" { + source = "../../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "plane-live" + image = "docker.io/makeplane/plane-live:v1.0.0" + ports = ["3012:3000"] + environment = { + # API settings + NEXT_PUBLIC_API_BASE_URL = "https://plane.${var.server_domain}/api/" + + # Web settings + NEXT_PUBLIC_WEB_URL = "https://plane.${var.server_domain}/live/" + + # Environment + NODE_ENV = "production" + } + + restart_policy = "never" + + haproxy_services = [ + { + name = "plane-live" + domain = "plane.${var.server_domain}/live/" + port = "3012" + host = "127.0.0.1" + tls = false + } + ] +} + +output "app_urls" { + value = module.live.app_urls +} + +output "installed" { + value = true + depends_on = [module.live.installed] +} \ No newline at end of file diff --git a/quadlets/modules/plane/main.tf b/quadlets/modules/plane/main.tf new file mode 100644 index 0000000..23f970c --- /dev/null +++ b/quadlets/modules/plane/main.tf @@ -0,0 +1,239 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +# Credentials from existing services +variable "postgres_password" { + type = string + sensitive = true +} + +variable "minio_server" { + type = string + sensitive = true +} + +variable "minio_access_key" { + type = string + sensitive = true +} + +variable "minio_secret_key" { + type = string + sensitive = true +} + +variable "rabbitmq_username" { + type = string + sensitive = true +} + +variable "rabbitmq_password" { + type = string + sensitive = true +} + +# Generate Plane-specific credentials +resource "random_password" "redis_password" { + length = 32 + special = false +} + +resource "random_password" "secret_key" { + length = 64 + special = true +} + +module "psql_db" { + source = "../postgres/tenant" + + tenant_name = "plane" + admin_username = "postgres" + admin_password = var.postgres_password + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path +} + +module "aqmp_db" { + source = "../rabbitmq/tenant" + + tenant_name = "plane" + admin_username = var.rabbitmq_username + admin_password = var.rabbitmq_password + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path +} + +module "minio" { + source = "../minio/tenant" + + name = "plane" + server = var.minio_server + access_key = var.minio_access_key + secret_key = var.minio_secret_key + tls = true +} + +# Deploy the core API service first +module "api" { + source = "./api" + wait_on = var.wait_on + server_ip = var.server_ip + server_domain = var.server_domain + ssh_private_key_path = var.ssh_private_key_path + + # Use credentials from existing services + redis_password = "" #random_password.redis_password.result + db_password = module.psql_db.password + rabbitmq_password = module.aqmp_db.password + + minio_access_key = module.minio.access_key + minio_secret_key = module.minio.secret_key + secret_key = random_password.secret_key.result +} + +# Run database migrations after API is ready +module "migrator" { + source = "./migrator" + wait_on = module.api.installed + server_ip = var.server_ip + server_domain = var.server_domain + ssh_private_key_path = var.ssh_private_key_path + + # Use credentials from API module + db_password = module.api.db_password + redis_password = module.api.redis_password + rabbitmq_password = module.api.rabbitmq_password + minio_access_key = module.minio.access_key + minio_secret_key = module.minio.secret_key + secret_key = module.api.secret_key +} + +# Start background workers after migrations +module "worker" { + source = "./worker" + wait_on = module.migrator.installed + server_ip = var.server_ip + server_domain = var.server_domain + ssh_private_key_path = var.ssh_private_key_path + + # Use credentials from API module + db_password = module.api.db_password + redis_password = module.api.redis_password + rabbitmq_password = module.api.rabbitmq_password + minio_access_key = module.minio.access_key + minio_secret_key = module.minio.secret_key + secret_key = module.api.secret_key +} + +module "beat-worker" { + source = "./beat-worker" + wait_on = module.migrator.installed + server_ip = var.server_ip + server_domain = var.server_domain + ssh_private_key_path = var.ssh_private_key_path + + # Use credentials from API module + db_password = module.api.db_password + redis_password = module.api.redis_password + rabbitmq_password = module.api.rabbitmq_password + minio_access_key = module.minio.access_key + minio_secret_key = module.minio.secret_key + secret_key = module.api.secret_key +} + +# Start web interfaces after API is ready +module "web" { + source = "./web" + wait_on = module.api.installed + server_ip = var.server_ip + server_domain = var.server_domain + ssh_private_key_path = var.ssh_private_key_path +} + +module "admin" { + source = "./admin" + wait_on = module.api.installed + server_ip = var.server_ip + server_domain = var.server_domain + ssh_private_key_path = var.ssh_private_key_path +} + +module "space" { + source = "./space" + wait_on = module.api.installed + server_ip = var.server_ip + server_domain = var.server_domain + ssh_private_key_path = var.ssh_private_key_path +} + +module "live" { + source = "./live" + wait_on = module.api.installed + server_ip = var.server_ip + server_domain = var.server_domain + ssh_private_key_path = var.ssh_private_key_path +} + +# Aggregate all app URLs +locals { + app_urls = { + web = module.web.app_urls + admin = module.admin.app_urls + space = module.space.app_urls + live = module.live.app_urls + api = module.api.app_urls + } +} + +output "app_urls" { + value = local.app_urls + description = "All Plane application URLs" +} + +output "installed" { + value = true + depends_on = [ + module.api.installed, + module.migrator.installed, + module.worker.installed, + module.beat-worker.installed, + module.web.installed, + module.admin.installed, + module.space.installed, + module.live.installed + ] + description = "Whether all Plane services are installed" +} + +output "credentials" { + value = { + db_password = module.api.db_password + redis_password = module.api.redis_password + minio_access_key = module.api.minio_access_key + minio_secret_key = module.api.minio_secret_key + rabbitmq_password = module.api.rabbitmq_password + secret_key = module.api.secret_key + } + sensitive = true + description = "All Plane service credentials" +} + +output "main_url" { + value = "https://plane.${var.server_domain}" + description = "Main Plane application URL" +} \ No newline at end of file diff --git a/quadlets/modules/plane/migrator/main.tf b/quadlets/modules/plane/migrator/main.tf new file mode 100644 index 0000000..a93c218 --- /dev/null +++ b/quadlets/modules/plane/migrator/main.tf @@ -0,0 +1,112 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +variable "db_password" { + type = string + sensitive = true +} + +variable "redis_password" { + type = string + sensitive = true +} + +variable "rabbitmq_password" { + type = string + sensitive = true +} + +variable "minio_access_key" { + type = string + sensitive = true +} + +variable "minio_secret_key" { + type = string + sensitive = true +} + +variable "secret_key" { + type = string + sensitive = true +} + +module "migrator" { + source = "../../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + restart_policy = "never" + + app_name = "plane-migrator" + image = "docker.io/makeplane/plane-backend:v1.0.0" + volumes = [ + "/opt/storage/data/plane-migrator:/var/www/plane:Z" + ] + environment = { + # Database settings + DATABASE_URL = "postgresql://plane:${var.db_password}@systemd-postgres:5432/plane" + POSTGRES_USER = "plane" + POSTGRES_PASSWORD = var.db_password + POSTGRES_DB = "plane" + + # Redis settings + REDIS_URL = "redis://:${var.redis_password}@systemd-valkey:6379/0" + REDIS_HOST = "systemd-valkey" + REDIS_PORT = "6379" + + # RabbitMQ settings + RABBITMQ_URL = "amqp://plane:${var.rabbitmq_password}@systemd-rabbitmq:5672/plane" + RABBITMQ_HOST = "systemd-rabbitmq" + RABBITMQ_PORT = "5672" + RABBITMQ_USER = "plane" + RABBITMQ_PASSWORD = var.rabbitmq_password + RABBITMQ_VHOST = "plane" + + # MinIO/S3 settings + AWS_S3_ENDPOINT_URL = "http://systemd-minio:9000" + AWS_ACCESS_KEY_ID = var.minio_access_key + AWS_SECRET_ACCESS_KEY = var.minio_secret_key + AWS_S3_BUCKET_NAME = "plane-uploads" + AWS_REGION = "us-east-1" + USE_MINIO = "1" + + # Application settings + SECRET_KEY = var.secret_key + DEBUG = "0" + ENVIRONMENT = "production" + + # Web settings + WEB_URL = "https://plane.${var.server_domain}" + API_BASE_URL = "https://plane.${var.server_domain}/api" + + # File upload settings + FILE_SIZE_LIMIT = "5242880" + + # Rate limiting + API_KEY_RATE_LIMIT = "60/minute" + } + command = ["./bin/docker-entrypoint-migrator.sh"] +} + +output "installed" { + value = true + depends_on = [module.migrator.installed] +} \ No newline at end of file diff --git a/quadlets/modules/plane/space/main.tf b/quadlets/modules/plane/space/main.tf new file mode 100644 index 0000000..51f57e8 --- /dev/null +++ b/quadlets/modules/plane/space/main.tf @@ -0,0 +1,60 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +module "space" { + source = "../../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + restart_policy = "never" + + app_name = "plane-space" + image = "docker.io/makeplane/plane-space:v1.0.0" + ports = ["3013:3000"] + environment = { + # API settings + NEXT_PUBLIC_API_BASE_URL = "https://plane.${var.server_domain}/api" + + # Web settings + NEXT_PUBLIC_WEB_URL = "https://plane.${var.server_domain}/spaces" + + # Environment + NODE_ENV = "production" + } + + haproxy_services = [ + { + name = "plane-space" + domain = "plane.${var.server_domain}/spaces/" + port = "3013" + host = "127.0.0.1" + tls = false + } + ] +} + +output "app_urls" { + value = module.space.app_urls +} + +output "installed" { + value = true + depends_on = [module.space.installed] +} \ No newline at end of file diff --git a/quadlets/modules/plane/web/main.tf b/quadlets/modules/plane/web/main.tf new file mode 100644 index 0000000..a072683 --- /dev/null +++ b/quadlets/modules/plane/web/main.tf @@ -0,0 +1,64 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +module "web" { + source = "../../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + restart_policy = "never" + + app_name = "plane-web" + image = "docker.io/makeplane/plane-frontend:v1.0.0" + ports = ["3014:3000"] + environment = { + # API settings + NEXT_PUBLIC_API_BASE_URL = "https://plane.${var.server_domain}/api" + + # Web settings + NEXT_PUBLIC_WEB_BASE_URL = "https://plane.${var.server_domain}" + + NEXT_PUBLIC_ADMIN_BASE_URL = "https://plane.${var.server_domain}/god-mode" + NEXT_PUBLIC_SPACE_BASE_URL = "https://plane.${var.server_domain}/spaces" + NEXT_PUBLIC_LIVE_BASE_URL = "https://plane.${var.server_domain}/live" + + # Environment + NODE_ENV = "production" + } + + haproxy_services = [ + { + name = "plane-web" + domain = "plane.${var.server_domain}" + port = "3014" + host = "127.0.0.1" + tls = false + } + ] +} + +output "app_urls" { + value = module.web.app_urls +} + +output "installed" { + value = true + depends_on = [module.web.installed] +} \ No newline at end of file diff --git a/quadlets/modules/plane/worker/main.tf b/quadlets/modules/plane/worker/main.tf new file mode 100644 index 0000000..1cc7dba --- /dev/null +++ b/quadlets/modules/plane/worker/main.tf @@ -0,0 +1,113 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +variable "db_password" { + type = string + sensitive = true +} + +variable "redis_password" { + type = string + sensitive = true +} + +variable "rabbitmq_password" { + type = string + sensitive = true +} + +variable "minio_access_key" { + type = string + sensitive = true +} + +variable "minio_secret_key" { + type = string + sensitive = true +} + +variable "secret_key" { + type = string + sensitive = true +} + +module "worker" { + source = "../../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + restart_policy = "never" + + app_name = "plane-worker" + image = "docker.io/makeplane/plane-backend:v1.0.0" + volumes = [ + "/opt/storage/data/plane-worker:/var/www/plane:Z" + ] + environment = { + # Database settings + DATABASE_URL = "postgresql://plane:${var.db_password}@systemd-postgres:5432/plane" + POSTGRES_USER = "plane" + POSTGRES_PASSWORD = var.db_password + POSTGRES_DB = "plane" + PGDATA = "/var/lib/postgresql/data" + + # Redis settings + REDIS_URL = "redis://:${var.redis_password}@systemd-valkey:6379/0" + REDIS_HOST = "systemd-valkey" + REDIS_PORT = "6379" + + # RabbitMQ settings + RABBITMQ_URL = "amqp://plane:${var.rabbitmq_password}@systemd-rabbitmq:5672/plane" + RABBITMQ_HOST = "systemd-rabbitmq" + RABBITMQ_PORT = "5672" + RABBITMQ_USER = "plane" + RABBITMQ_PASSWORD = var.rabbitmq_password + RABBITMQ_VHOST = "plane" + + # MinIO/S3 settings + AWS_S3_ENDPOINT_URL = "http://systemd-minio:9000" + AWS_ACCESS_KEY_ID = var.minio_access_key + AWS_SECRET_ACCESS_KEY = var.minio_secret_key + AWS_S3_BUCKET_NAME = "plane-uploads" + AWS_REGION = "us-east-1" + USE_MINIO = "1" + + # Application settings + SECRET_KEY = var.secret_key + DEBUG = "0" + ENVIRONMENT = "production" + + # Web settings + WEB_URL = "https://plane.${var.server_domain}" + API_BASE_URL = "https://plane.${var.server_domain}/api" + + # File upload settings + FILE_SIZE_LIMIT = "5242880" + + # Rate limiting + API_KEY_RATE_LIMIT = "60/minute" + } + command = ["./bin/docker-entrypoint-worker.sh"] +} + +output "installed" { + value = true + depends_on = [module.worker.installed] +} \ No newline at end of file diff --git a/quadlets/modules/postgres/main.tf b/quadlets/modules/postgres/main.tf new file mode 100644 index 0000000..4178b3a --- /dev/null +++ b/quadlets/modules/postgres/main.tf @@ -0,0 +1,48 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +resource "random_password" "password" { + length = 32 + special = false +} + +module "postgres" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "postgres" + image = "docker.io/postgres:17" + ports = ["5432:5432"] + volumes = ["/opt/storage/data/postgres:/var/lib/postgresql/data:Z"] + environment = { + POSTGRES_PASSWORD = random_password.password.result + } +} + +output "app_urls" { + value = module.postgres.app_urls +} + +output "installed" { + value = true + depends_on = [module.postgres.installed] +} + +output "password" { + value = random_password.password.result + sensitive = true +} \ No newline at end of file diff --git a/quadlets/modules/postgres/tenant/README.md b/quadlets/modules/postgres/tenant/README.md new file mode 100644 index 0000000..bcb8e85 --- /dev/null +++ b/quadlets/modules/postgres/tenant/README.md @@ -0,0 +1,132 @@ +# PostgreSQL Tenant Module + +This module creates a PostgreSQL database and user (tenant) on a VPS-hosted PostgreSQL instance using SSH tunneling for secure access. + +## Features + +- Creates SSH tunnel to VPS-hosted PostgreSQL +- Creates isolated database and user for tenant +- Generates secure random password +- Outputs connection details for application use +- Supports explicit dependencies via `wait_on` + +## Requirements + +- SSH access to VPS with key-based authentication +- PostgreSQL admin credentials +- `terraform-ssh-tunnel` module (automatically downloaded) +- `cyrilgdn/postgresql` provider (automatically configured) + +## Usage + +### Basic Example + +```hcl +module "app_tenant" { + source = "./quadlets/modules/postgres/tenant" + + tenant_name = "myapp" + admin_username = "postgres" + admin_password = var.postgres_admin_password + server_ip = "203.0.113.10" + ssh_user = "fourlights" + + # Wait for PostgreSQL service to be ready + wait_on = module.postgres.installed +} + +# Use the connection details +output "app_db_connection" { + value = { + host = module.app_tenant.host + port = module.app_tenant.port + database = module.app_tenant.database + username = module.app_tenant.username + password = module.app_tenant.password + } + sensitive = true +} +``` + +### With Custom Port + +```hcl +module "custom_tenant" { + source = "./quadlets/modules/postgres/tenant" + + tenant_name = "custom_app" + admin_username = "postgres" + admin_password = var.postgres_admin_password + server_ip = "203.0.113.10" + target_port = 5433 # Custom PostgreSQL port + + wait_on = module.postgres.installed +} +``` + +### Multiple Tenants + +```hcl +module "tenant_1" { + source = "./quadlets/modules/postgres/tenant" + + tenant_name = "app1" + admin_username = "postgres" + admin_password = var.postgres_admin_password + server_ip = var.vps_ip + + wait_on = module.postgres.installed +} + +module "tenant_2" { + source = "./quadlets/modules/postgres/tenant" + + tenant_name = "app2" + admin_username = "postgres" + admin_password = var.postgres_admin_password + server_ip = var.vps_ip + + wait_on = module.postgres.installed +} +``` + +## Inputs + +| Name | Description | Type | Default | Required | +|------|-------------|------|---------|----------| +| tenant_name | Name of the tenant (used for database name and username) | string | - | yes | +| admin_username | PostgreSQL admin username | string | "postgres" | no | +| admin_password | PostgreSQL admin password | string | - | yes | +| server_ip | VPS server IP address | string | - | yes | +| ssh_user | SSH user for connecting to VPS | string | "fourlights" | no | +| ssh_private_key_path | Path to SSH private key | string | "~/.ssh/id_rsa" | no | +| target_port | PostgreSQL port on VPS | number | 5432 | no | +| wait_on | Resources to wait on before creating tenant | any | null | no | + +## Outputs + +| Name | Description | Sensitive | +|------|-------------|-----------| +| host | PostgreSQL connection host (via SSH tunnel) | no | +| port | PostgreSQL connection port (via SSH tunnel) | no | +| database | Database name | no | +| username | Database username | no | +| password | Database password | yes | +| connection_string | Full PostgreSQL connection string | yes | +| installed | Installation complete flag | no | + +## How It Works + +1. **SSH Tunnel**: The module uses `terraform-ssh-tunnel` to create a secure SSH tunnel from your local machine to the VPS PostgreSQL instance +2. **Provider Configuration**: The PostgreSQL provider is configured to connect through the tunnel +3. **Resource Creation**: Creates a PostgreSQL role (user) and database with appropriate permissions +4. **Password Generation**: Generates a cryptographically secure random password +5. **Outputs**: Provides connection details for your application to use + +## Notes + +- The SSH tunnel is created dynamically when Terraform needs to connect +- Ensure your SSH agent is running and has the appropriate key loaded +- The database and user will have the same name as `tenant_name` +- The user is granted full privileges on their database +- Password is stored in Terraform state (sensitive) \ No newline at end of file diff --git a/quadlets/modules/postgres/tenant/main.tf b/quadlets/modules/postgres/tenant/main.tf new file mode 100644 index 0000000..aa2546f --- /dev/null +++ b/quadlets/modules/postgres/tenant/main.tf @@ -0,0 +1,81 @@ +terraform { + required_providers { + random = { + source = "hashicorp/random" + version = "~> 3.6" + } + postgresql = { + source = "cyrilgdn/postgresql" + version = "~> 1.22" + } + } +} + +# Generate random password for the tenant user +resource "random_password" "tenant_password" { + length = 32 + special = false + min_upper = 2 + min_lower = 2 + min_numeric = 2 +} + +# Create SSH tunnel to PostgreSQL on VPS +module "db_tunnel" { + source = "flaupretre/tunnel/ssh" + version = "2.3.0" + + target_host = "127.0.0.1" + target_port = var.target_port + + gateway_host = var.server_ip + gateway_user = var.ssh_user + gateway_port = 22 +} + +provider postgresql { + alias = "tunnel" + host = module.db_tunnel.host + port = module.db_tunnel.port + username = var.admin_username + password = var.admin_password + database = "postgres" + sslmode = "disable" + superuser = false +} + + +#---- Database + +resource postgresql_database db { + provider = postgresql.tunnel + + name = var.tenant_name + owner = var.tenant_name + + encoding = "UTF8" + lc_collate = "C" + lc_ctype = "C" +} + +#---- DB user/role + +resource postgresql_role role { + provider = postgresql.tunnel + + name = var.tenant_name + login = true + password = random_password.tenant_password.result +} + +#---- Grant +# SQL: grant all on .* to @'%'; + +resource postgresql_grant grant { + provider = postgresql.tunnel + + object_type = "database" + database = var.tenant_name + role = var.tenant_name + privileges = ["ALL"] +} \ No newline at end of file diff --git a/quadlets/modules/postgres/tenant/outputs.tf b/quadlets/modules/postgres/tenant/outputs.tf new file mode 100644 index 0000000..bf4864a --- /dev/null +++ b/quadlets/modules/postgres/tenant/outputs.tf @@ -0,0 +1,27 @@ +output "database" { + description = "Database name" + value = var.tenant_name +} + +output "username" { + description = "Database username" + value = var.tenant_name +} + +output "password" { + description = "Database password" + value = random_password.tenant_password.result + sensitive = true +} + +output "connection_string" { + description = "PostgreSQL connection string" + value = "postgresql://${var.tenant_name}:${random_password.tenant_password.result}@localhost:${var.target_port}/${var.tenant_name}" + sensitive = true +} + +output "installed" { + description = "Installation complete flag" + value = true + depends_on = [postgresql_role.role, postgresql_grant.grant, postgresql_database.db, random_password.tenant_password] +} \ No newline at end of file diff --git a/quadlets/modules/postgres/tenant/variables.tf b/quadlets/modules/postgres/tenant/variables.tf new file mode 100644 index 0000000..ebf3135 --- /dev/null +++ b/quadlets/modules/postgres/tenant/variables.tf @@ -0,0 +1,44 @@ +variable "tenant_name" { + description = "Name of the tenant (used for database name and username)" + type = string +} + +variable "admin_username" { + description = "PostgreSQL admin username" + type = string + default = "postgres" +} + +variable "admin_password" { + description = "PostgreSQL admin password" + type = string + sensitive = true +} + +variable "server_ip" { + description = "VPS server IP address" + type = string +} + +variable "ssh_user" { + description = "SSH user for connecting to VPS" + type = string + default = "fourlights" +} + +variable "ssh_private_key_path" { + description = "Path to SSH private key for authentication" + type = string +} + +variable "target_port" { + description = "PostgreSQL port on VPS" + type = number + default = 5432 +} + +variable "wait_on" { + description = "Resources to wait on before creating tenant" + type = any + default = true +} \ No newline at end of file diff --git a/quadlets/modules/qdrant/main.tf b/quadlets/modules/qdrant/main.tf new file mode 100644 index 0000000..fbe89d6 --- /dev/null +++ b/quadlets/modules/qdrant/main.tf @@ -0,0 +1,63 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" {} + +resource "random_password" "api_key" { + length = 64 + special = false +} + +module "qdrant" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "qdrant" + image = "docker.io/qdrant/qdrant" + ports = ["6333:6333", "6334:6334"] + volumes = ["/opt/storage/data/qdrant:/qdrant/storage:z"] + + environment = { + "QDRANT__SERVICE__API_KEY" = random_password.api_key.result + } + + haproxy_services = [ + { + name = "qdrant" + domain = "qdrant.${var.server_domain}" + port = "6333" + host = "127.0.0.1" + tls = false + #grpc_port = "6334" + }, + ] + +} + +output "app_urls" { + value = module.qdrant.app_urls +} + +output "installed" { + value = true + depends_on = [module.qdrant.installed] +} + +output "api_key" { + value = random_password.api_key.result + sensitive = true +} \ No newline at end of file diff --git a/quadlets/modules/quadlet-app/main.tf b/quadlets/modules/quadlet-app/main.tf new file mode 100644 index 0000000..027ddf1 --- /dev/null +++ b/quadlets/modules/quadlet-app/main.tf @@ -0,0 +1,222 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + description = "Target server IP" + type = string +} + +variable "ssh_private_key_path" { + description = "Path to SSH private key" + type = string + default = "~/.ssh/id_rsa" +} + +variable "app_name" { + description = "Name of the application" + type = string +} + +variable "image" { + description = "Container image" + type = string +} + +variable "ports" { + description = "List of port mappings (e.g., ['8080:80', '8443:443'])" + type = list(string) + default = [] +} + +variable "volumes" { + description = "List of volume mounts (e.g., ['/host/path:/container/path:Z'])" + type = list(string) + default = [] +} + +variable "environment" { + description = "Environment variables as key-value pairs" + type = map(string) + default = {} +} + +variable "command" { + description = "Command to run in container (list of strings)" + type = list(string) + default = [] +} + +variable "haproxy_services" { + description = "Multiple HAProxy service configurations" + type = list(object({ + name = string + domain = string + port = string + host = optional(string, "127.0.0.1") + tls = optional(bool, false) + grpc_port = optional(string, "") + })) + default = [] +} + +variable "depends_on_services" { + description = "List of systemd services this app depends on" + type = list(string) + default = [] +} + +variable "restart_policy" { + description = "Systemd restart policy" + type = string + default = "always" +} + +variable "healthcmd" { + default = "" +} + +locals { + # Build all HAProxy labels for multiple services + haproxy_labels = flatten([ + for svc in var.haproxy_services : [ + "Label=haproxy.${svc.name}.enable=true", + "Label=haproxy.${svc.name}.domain=${svc.domain}", + "Label=haproxy.${svc.name}.port=${svc.port}", + "Label=haproxy.${svc.name}.host=${svc.host}", + "Label=haproxy.${svc.name}.tls=${svc.tls}", + #"Label=haproxy.${svc.name}.grpc_port=${svc.grpc_port}" + ] + ]) +} + +resource "null_resource" "deploy_quadlet_app" { + depends_on = [var.wait_on] + triggers = { + app_name = var.app_name + image = var.image + server_ip = var.server_ip + ports = jsonencode(var.ports) + volumes = jsonencode(var.volumes) + environment = jsonencode(var.environment) + command = jsonencode(var.command) + haproxy_services = jsonencode(var.haproxy_services) + depends_on_services = jsonencode(var.depends_on_services) + ssh_private_key_path = var.ssh_private_key_path + restart_policy = var.restart_policy + } + + provisioner "remote-exec" { + inline = compact(flatten([ + [ + # Verify the user systemd session is ready and linger is enabled + #"timeout 60 bash -c 'until loginctl show-user fourlights | grep -q \"Linger=yes\"; do sleep 2; done'", + + # Create base quadlet file + "cat > /tmp/${var.app_name}.container << 'EOF'", + "[Unit]", + "Description=${var.app_name} Service", + "After=network-online.target", + "", + "[Container]", + "Image=${var.image}", + "AutoUpdate=registry", + "Network=containers.network" + ], + + # Add ports (only if not empty) + length(var.ports) > 0 ? formatlist("PublishPort=127.0.0.1:%s", var.ports) : [], + + # Add volumes (only if not empty) + length(var.volumes) > 0 ? formatlist("Volume=%s", var.volumes) : [], + + # Add environment variables (only if not empty) + length(var.environment) > 0 ? formatlist("Environment=%s=%s", keys(var.environment), values(var.environment)) : [], + + # Add command (only if not empty) + length(var.command) > 0 ? ["Exec=${join(" ", var.command)}"] : [], + + # Add pre-computed HAProxy labels (only if not empty) + length(local.haproxy_labels) > 0 ? local.haproxy_labels : [], + + # Add health checks if not empty + var.healthcmd != "" ? ["HealthCmd=${var.healthcmd}"] : [], + + [ + "", + "[Service]", + "Restart=${var.restart_policy}", + "", + "[Install]", + "WantedBy=default.target", + "EOF", + + # Create volume directory + "mkdir -p /opt/storage/data/${var.app_name}", + + # Move and activate + # Create directory more robustly + "test -d ~/.config/containers/systemd || mkdir -p ~/.config/containers/systemd", + "cp /tmp/${var.app_name}.container ~/.config/containers/systemd/${var.app_name}.container", + "systemctl --user daemon-reload", + "timeout 60 bash -c 'until systemctl --user list-unit-files | grep -q \"^${var.app_name}.service\"; do sleep 2; systemctl --user daemon-reload; done'", + + "systemctl --user start ${var.app_name}", + "systemctl --user status ${var.app_name} --no-pager", + ] + ])) + + + connection { + type = "ssh" + host = var.server_ip + user = "fourlights" + agent = true + agent_identity = var.ssh_private_key_path + } + } + + provisioner "remote-exec" { + when = destroy + inline = [ + # Stop and remove the service + "systemctl --user stop ${self.triggers.app_name} || true", + + # Remove the .container file + "rm -f ~/.config/containers/systemd/${self.triggers.app_name}.container", + + # Reload systemd to remove the generated service + "systemctl --user daemon-reload", + + # Force remove any lingering containers + "podman rm -f ${self.triggers.app_name} || true" + ] + connection { + type = "ssh" + host = self.triggers.server_ip + user = "fourlights" + agent = true + agent_identity = self.triggers.ssh_private_key_path + } + + } +} + +output "app_name" { + value = var.app_name +} + +output "service_status" { + value = "${var.app_name} deployed" +} + +output "app_urls" { + value = [for svc in var.haproxy_services : format("%s://%s", (svc.tls == true ? "https" : "http"), svc.domain)] +} + +output "installed" { + value = true + depends_on = [null_resource.deploy_quadlet_app] +} \ No newline at end of file diff --git a/quadlets/modules/rabbitmq/main.tf b/quadlets/modules/rabbitmq/main.tf new file mode 100644 index 0000000..1aa2cb6 --- /dev/null +++ b/quadlets/modules/rabbitmq/main.tf @@ -0,0 +1,60 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +resource "random_password" "username" { + length = 32 + special = false +} + +resource "random_password" "password" { + length = 32 + special = false +} + +module "rabbitmq" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "rabbitmq" + image = "docker.io/rabbitmq:management" + ports = ["5672:5672", "15672:15672"] + volumes = ["/opt/storage/data/rabbitmq:/var/lib/rabbitmq:Z"] + + environment = { + RABBITMQ_DEFAULT_USER = random_password.username.result + RABBITMQ_DEFAULT_PASS = random_password.password.result + } +} + +output "app_urls" { + value = module.rabbitmq.app_urls +} + +output "installed" { + value = true + depends_on = [module.rabbitmq.installed] +} + +output "username" { + value = random_password.username.result + sensitive = true +} + +output "password" { + value = random_password.password.result + sensitive = true +} \ No newline at end of file diff --git a/quadlets/modules/rabbitmq/tenant/README.md b/quadlets/modules/rabbitmq/tenant/README.md new file mode 100644 index 0000000..946fbb1 --- /dev/null +++ b/quadlets/modules/rabbitmq/tenant/README.md @@ -0,0 +1,180 @@ +# RabbitMQ Tenant Module + +This module creates a RabbitMQ virtual host (vhost) and user (tenant) on a VPS-hosted RabbitMQ instance using SSH tunneling for secure access to the Management API. + +## Features + +- Creates SSH tunnel to VPS-hosted RabbitMQ Management API +- Creates isolated virtual host and user for tenant +- Configures full permissions for user on their vhost +- Generates secure random password +- Outputs connection details for application use +- Supports explicit dependencies via `wait_on` + +## Requirements + +- SSH access to VPS with key-based authentication +- RabbitMQ admin credentials +- RabbitMQ Management plugin enabled +- `terraform-ssh-tunnel` module (automatically downloaded) +- `cyrilgdn/rabbitmq` provider (automatically configured) + +## Usage + +### Basic Example + +```hcl +module "app_tenant" { + source = "./quadlets/modules/rabbitmq/tenant" + + tenant_name = "myapp" + admin_username = var.rabbitmq_admin_username + admin_password = var.rabbitmq_admin_password + server_ip = "203.0.113.10" + ssh_user = "fourlights" + + # Wait for RabbitMQ service to be ready + wait_on = module.rabbitmq.installed +} + +# Use the connection details +output "app_mq_connection" { + value = { + host = module.app_tenant.host + port = module.app_tenant.port + vhost = module.app_tenant.vhost + username = module.app_tenant.username + password = module.app_tenant.password + } + sensitive = true +} +``` + +### With Custom Management Port + +```hcl +module "custom_tenant" { + source = "./quadlets/modules/rabbitmq/tenant" + + tenant_name = "custom_app" + admin_username = var.rabbitmq_admin_username + admin_password = var.rabbitmq_admin_password + server_ip = "203.0.113.10" + target_port = 25672 # Custom Management API port + + wait_on = module.rabbitmq.installed +} +``` + +### Multiple Tenants + +```hcl +module "tenant_1" { + source = "./quadlets/modules/rabbitmq/tenant" + + tenant_name = "app1" + admin_username = var.rabbitmq_admin_username + admin_password = var.rabbitmq_admin_password + server_ip = var.vps_ip + + wait_on = module.rabbitmq.installed +} + +module "tenant_2" { + source = "./quadlets/modules/rabbitmq/tenant" + + tenant_name = "app2" + admin_username = var.rabbitmq_admin_username + admin_password = var.rabbitmq_admin_password + server_ip = var.vps_ip + + wait_on = module.rabbitmq.installed +} +``` + +### Using Connection String + +```hcl +module "app_tenant" { + source = "./quadlets/modules/rabbitmq/tenant" + + tenant_name = "myapp" + admin_username = var.rabbitmq_admin_username + admin_password = var.rabbitmq_admin_password + server_ip = var.vps_ip + + wait_on = module.rabbitmq.installed +} + +# Use in application configuration +resource "kubernetes_secret" "rabbitmq_credentials" { + metadata { + name = "rabbitmq-connection" + } + + data = { + connection_string = module.app_tenant.connection_string + } +} +``` + +## Inputs + +| Name | Description | Type | Default | Required | +|------|-------------|------|---------|----------| +| tenant_name | Name of the tenant (used for vhost name and username) | string | - | yes | +| admin_username | RabbitMQ admin username | string | - | yes | +| admin_password | RabbitMQ admin password | string | - | yes | +| server_ip | VPS server IP address | string | - | yes | +| ssh_user | SSH user for connecting to VPS | string | "fourlights" | no | +| ssh_private_key_path | Path to SSH private key | string | "~/.ssh/id_rsa" | no | +| target_port | RabbitMQ Management API port on VPS | number | 15672 | no | +| wait_on | Resources to wait on before creating tenant | any | null | no | + +## Outputs + +| Name | Description | Sensitive | +|------|-------------|-----------| +| host | RabbitMQ connection host (VPS IP for AMQP) | no | +| port | RabbitMQ AMQP connection port (5672) | no | +| management_host | RabbitMQ Management API host (via SSH tunnel) | no | +| management_port | RabbitMQ Management API port (via SSH tunnel) | no | +| vhost | Virtual host name | no | +| username | RabbitMQ username | no | +| password | RabbitMQ password | yes | +| connection_string | Full AMQP connection string | yes | +| installed | Installation complete flag | no | + +## How It Works + +1. **SSH Tunnel**: The module uses `terraform-ssh-tunnel` to create a secure SSH tunnel from your local machine to the VPS RabbitMQ Management API (port 15672) +2. **Provider Configuration**: The RabbitMQ provider is configured to connect through the tunnel +3. **Resource Creation**: Creates a RabbitMQ virtual host, user, and permissions +4. **Password Generation**: Generates a cryptographically secure random password +5. **Outputs**: Provides connection details for your application to use + +## Connection Details + +- **Management API**: Accessed via SSH tunnel (for Terraform operations) +- **AMQP Protocol**: Direct connection to VPS on port 5672 (for application connections) +- **Virtual Host**: Isolated messaging environment for the tenant +- **Permissions**: User has full configure, write, and read permissions on their vhost + +## Notes + +- The SSH tunnel is only used for management operations (creating vhost/user/permissions) +- Applications connect directly to the VPS AMQP port (5672), not through the tunnel +- The virtual host and user will have the same name as `tenant_name` +- User is granted `configure=".*"`, `write=".*"`, `read=".*"` on their vhost +- Password is stored in Terraform state (sensitive) +- Ensure RabbitMQ Management plugin is enabled on the VPS instance + +## Permissions Explained + +The tenant user receives the following permissions on their vhost: + +- **configure**: Can declare exchanges, queues, and bindings +- **write**: Can publish messages +- **read**: Can consume messages + +All permissions use the `.*` regex pattern, granting full access within the vhost. \ No newline at end of file diff --git a/quadlets/modules/rabbitmq/tenant/main.tf b/quadlets/modules/rabbitmq/tenant/main.tf new file mode 100644 index 0000000..7894eb7 --- /dev/null +++ b/quadlets/modules/rabbitmq/tenant/main.tf @@ -0,0 +1,71 @@ +terraform { + required_providers { + random = { + source = "hashicorp/random" + version = "~> 3.6" + } + rabbitmq = { + source = "cyrilgdn/rabbitmq" + version = "~> 1.8" + } + } +} + +# Generate random password for the tenant user +resource "random_password" "tenant_password" { + length = 32 + special = false + min_upper = 2 + min_lower = 2 + min_numeric = 2 +} + +# Create SSH tunnel to RabbitMQ Management API on VPS +module "ssh_tunnel" { + source = "flaupretre/tunnel/ssh" + version = "2.2.1" + + target_host = "127.0.0.1" + target_port = var.target_port + + gateway_host = var.server_ip + gateway_user = var.ssh_user + + # Tunnel will be created when needed + timeout = "30s" +} + +# Configure RabbitMQ provider to use the SSH tunnel +provider "rabbitmq" { + endpoint = "http://${module.ssh_tunnel.host}:${module.ssh_tunnel.port}" + username = var.admin_username + password = var.admin_password +} + +# Create the virtual host +resource "rabbitmq_vhost" "tenant_vhost" { + depends_on = [var.wait_on] + + name = var.tenant_name +} + +# Create the user +resource "rabbitmq_user" "tenant_user" { + depends_on = [var.wait_on] + + name = var.tenant_name + password = random_password.tenant_password.result + tags = [] +} + +# Grant permissions to the user on the vhost +resource "rabbitmq_permissions" "tenant_permissions" { + user = rabbitmq_user.tenant_user.name + vhost = rabbitmq_vhost.tenant_vhost.name + + permissions { + configure = ".*" + write = ".*" + read = ".*" + } +} \ No newline at end of file diff --git a/quadlets/modules/rabbitmq/tenant/outputs.tf b/quadlets/modules/rabbitmq/tenant/outputs.tf new file mode 100644 index 0000000..69e6213 --- /dev/null +++ b/quadlets/modules/rabbitmq/tenant/outputs.tf @@ -0,0 +1,47 @@ +output "host" { + description = "RabbitMQ connection host (via SSH tunnel)" + value = var.server_ip +} + +output "port" { + description = "RabbitMQ AMQP connection port" + value = 5672 +} + +output "management_host" { + description = "RabbitMQ Management API host (via SSH tunnel)" + value = module.ssh_tunnel.host +} + +output "management_port" { + description = "RabbitMQ Management API port (via SSH tunnel)" + value = module.ssh_tunnel.port +} + +output "vhost" { + description = "Virtual host name" + value = rabbitmq_vhost.tenant_vhost.name +} + +output "username" { + description = "RabbitMQ username" + value = rabbitmq_user.tenant_user.name +} + +output "password" { + description = "RabbitMQ password" + value = random_password.tenant_password.result + sensitive = true +} + +output "connection_string" { + description = "RabbitMQ AMQP connection string" + value = "amqp://${rabbitmq_user.tenant_user.name}:${random_password.tenant_password.result}@${var.server_ip}:5672/${rabbitmq_vhost.tenant_vhost.name}" + sensitive = true +} + +output "installed" { + description = "Installation complete flag" + value = true + depends_on = [rabbitmq_vhost.tenant_vhost, rabbitmq_user.tenant_user, rabbitmq_permissions.tenant_permissions] +} \ No newline at end of file diff --git a/quadlets/modules/rabbitmq/tenant/variables.tf b/quadlets/modules/rabbitmq/tenant/variables.tf new file mode 100644 index 0000000..d2e6cfc --- /dev/null +++ b/quadlets/modules/rabbitmq/tenant/variables.tf @@ -0,0 +1,44 @@ +variable "tenant_name" { + description = "Name of the tenant (used for vhost name and username)" + type = string +} + +variable "admin_username" { + description = "RabbitMQ admin username" + type = string +} + +variable "admin_password" { + description = "RabbitMQ admin password" + type = string + sensitive = true +} + +variable "server_ip" { + description = "VPS server IP address" + type = string +} + +variable "ssh_user" { + description = "SSH user for connecting to VPS" + type = string + default = "fourlights" +} + +variable "ssh_private_key_path" { + description = "Path to SSH private key for authentication" + type = string + default = "~/.ssh/id_rsa" +} + +variable "target_port" { + description = "RabbitMQ Management API port on VPS" + type = number + default = 15672 +} + +variable "wait_on" { + description = "Resources to wait on before creating tenant" + type = any + default = null +} \ No newline at end of file diff --git a/quadlets/modules/redis/main.tf b/quadlets/modules/redis/main.tf new file mode 100644 index 0000000..0cf13a1 --- /dev/null +++ b/quadlets/modules/redis/main.tf @@ -0,0 +1,36 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +module "redis" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "redis" + image = "docker.io/redis:7-alpine" + ports = ["6379:6379"] + volumes = ["/opt/storage/data/redis:/data:Z"] + command = ["redis-server", "--appendonly", "yes"] +} + +output "app_urls" { + value = module.redis.app_urls +} + +output "installed" { + value = true + depends_on = [module.redis.installed] +} \ No newline at end of file diff --git a/quadlets/modules/tmail-web/main.tf b/quadlets/modules/tmail-web/main.tf new file mode 100644 index 0000000..c0cef16 --- /dev/null +++ b/quadlets/modules/tmail-web/main.tf @@ -0,0 +1,97 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +variable "server_url" { + type = string + default = "https://mail.binarysunset.dev" +} + +# tmail-web reads its configuration from a file at +# /usr/share/nginx/html/assets/env.file inside the container. Setting +# SERVER_URL as a container environment variable does NOT work (see +# https://github.com/linagora/tmail-flutter/issues/4240); the file must +# be injected. We write it to the host and bind-mount it into the +# container. +locals { + env_file_host_path = "/opt/storage/data/tmail-web/env.file" + env_file_container_path = "/usr/share/nginx/html/assets/env.file" + env_file_content = "SERVER_URL=${var.server_url}\nDOMAIN_REDIRECT_URL=https://mail.${var.server_domain}\n" +} + +resource "null_resource" "tmail_env_file" { + triggers = { + content = local.env_file_content + server_ip = var.server_ip + host_path = local.env_file_host_path + } + + provisioner "remote-exec" { + inline = [ + "mkdir -p $(dirname ${local.env_file_host_path})", + "cat > ${local.env_file_host_path} << 'EOF'", + local.env_file_content, + "EOF", + ] + + connection { + type = "ssh" + host = var.server_ip + user = "fourlights" + agent = true + agent_identity = var.ssh_private_key_path + } + } +} + +module "tmail-web" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "tmail-web" + image = "docker.io/linagora/tmail-web:latest" + ports = ["8080:80"] + volumes = ["${local.env_file_host_path}:${local.env_file_container_path}:ro"] + + environment = {} + + haproxy_services = [ + { + name = "tmail-web" + domain = "mail.${var.server_domain}" + port = "8080" + host = "127.0.0.1" + tls = false + } + ] + + healthcmd = "curl -f http://localhost:80 || exit 1" + + depends_on = [null_resource.tmail_env_file] +} + +output "app_urls" { + value = module.tmail-web.app_urls +} + +output "installed" { + value = true + depends_on = [module.tmail-web.installed] +} diff --git a/quadlets/modules/valkey/main.tf b/quadlets/modules/valkey/main.tf new file mode 100644 index 0000000..25e3542 --- /dev/null +++ b/quadlets/modules/valkey/main.tf @@ -0,0 +1,36 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +module "valkey" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "valkey" + image = "docker.io/valkey/valkey:7-alpine" + ports = ["6379:6379"] + volumes = ["/opt/storage/data/valkey:/data:Z"] + command = ["valkey-server", "--appendonly", "yes"] +} + +output "app_urls" { + value = module.valkey.app_urls +} + +output "installed" { + value = true + depends_on = [module.valkey.installed] +} diff --git a/quadlets/modules/vw-hub/main.tf b/quadlets/modules/vw-hub/main.tf new file mode 100644 index 0000000..9bea8c4 --- /dev/null +++ b/quadlets/modules/vw-hub/main.tf @@ -0,0 +1,120 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "domain" { + type = string + default = "hub.visualworkplace.fourlights.dev" +} +variable "name" { + type = string + default = "visualworkplace-hub" +} + +variable "s3_access_key" { + type = string +} + +variable "s3_secret_key" { + type = string +} + +variable "s3_server" { + type = string +} + +variable "valkey_host" { + type = string + default = "systemd-valkey" +} + +variable "valkey_db" { + type = number + default = 0 +} + +module "s3-tenant" { + source = "../minio/tenant" + wait_on = var.wait_on + + access_key = var.s3_access_key + secret_key = var.s3_secret_key + server = var.s3_server + name = var.name +} + +module "vw-hub" { + source = "../quadlet-app" + wait_on = module.s3-tenant.secret_key + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = var.name + image = "ghcr.io/four-lights-nl/vw-hub:8edae556b9c64fb602b8a54e67c3d06656c4bb9e" + volumes = ["/opt/storage/data/vw-hub:/run/secrets:Z"] + ports = [ + "3000:3000", + ] + + environment = { + NODE_ENV = "production" + LOG_LEVEL = "info" + OTEL_LOG_LEVEL = "info" + HOST = "0.0.0.0" + PORT = "3000" + OAUTH_CLIENT_ID = var.name + OAUTH_CLIENT_SECRET = "OGZ0IDpkWOJXaFQOr6mbIF7.l0rZLvxQDZPEGv6qHLLH/stP5vAIqHLZ2x05uQn9TFQHtsPkRysGM.RpKlWra0" + OAUTH_DOMAIN = "https://${var.domain}" + BASE_URL = "https://${var.domain}" + REDIS_HOST = var.valkey_host + REDIS_DB = var.valkey_db + KEYS_MASTER_KEY = "54dd59c1f1c94795a2b63b074a3943674e964b0225e58b7595762d237d9fdcda" + TOKEN_ENCRYPTION_KEY = "4d15791e50874fbe8af1a8d0fe2605d65bcf44737b7c36d9b2f99ec3367276c5" + ZOHO_CLIENT_ID = "1000.LFYZSCTUJLMUNUUBZX5PMYUXM6HOMP" + ZOHO_CLIENT_SECRET = "07093529734781706356ec4bb8ce7274f1df25cb2e" + ZOHO_REFRESH_TOKEN = "1000.0808eabe967955a24d403eabec6c0aa5.44fbbd0c6e98c476c6bb7bee70317f82" + ZOHO_ACCESS_TOKEN = "" + ZOHO_TOKEN_URI = "https://accounts.zoho.eu/oauth/v2/token" + ZOHO_API_URI = "https://www.zohoapis.eu/crm/v6" + EXACTONLINE_CLIENT_ID = "5c6b0dc4-2e78-4116-89c2-79e6e73356d8" + EXACTONLINE_CLIENT_SECRET = "XMSrmWMZkABv" + EXACTONLINE_WEBHOOK_SECRET = "8vXq0eEHEhEc6iwn" + EXACTONLINE_REDIRECT_URI = "https://${var.domain}/exactonline/callback" + EXACTONLINE_BASE_URL = "https://start.exactonline.nl" + EXACTONLINE_API_BASE = "https://start.exactonline.nl/api/v1/2655637" + EXACTONLINE_AUTHORIZE_PATH = "api/oauth2/auth" + EXACTONLINE_TOKEN_PATH = "api/oauth2/token" + EXACTONLINE_BASE_URI = "https://start.exactonline.nl" + EXACTONLINE_DIVISION = "2655637" + EXACTONLINE_LEAD_SOURCE_ID = "945be231-9588-413e-a6cd-53c190669ea7" + S3_ENDPOINT = var.s3_server + S3_ACCESS_KEY = module.s3-tenant.access_key + S3_SECRET_KEY = module.s3-tenant.secret_key + S3_BUCKET = module.s3-tenant.bucket + } + + haproxy_services = [ + { + name = var.name + domain = var.domain + port = "3000" + host = "127.0.0.1" + tls = true + } + ] +} + +output "app_urls" { + value = module.vw-hub.app_urls +} diff --git a/quadlets/modules/zot/main.tf b/quadlets/modules/zot/main.tf new file mode 100644 index 0000000..b86b182 --- /dev/null +++ b/quadlets/modules/zot/main.tf @@ -0,0 +1,58 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + type = string +} + +variable "ssh_private_key_path" { + type = string +} + +variable "server_domain" { + type = string +} + +module "zot" { + source = "../quadlet-app" + wait_on = var.wait_on + + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + + app_name = "zot" + image = "ghcr.io/project-zot/zot:latest" + ports = ["5000:5000"] + volumes = [ + "/opt/storage/data/zot/config.json:/etc/zot/config.json:Z", + "/opt/storage/data/zot:/var/lib/registry:Z", + ] + + environment = { + ND_LOGLEVEL="info" + ND_ENABLEINSIGHTSCOLLECTOR="false" + } + + haproxy_services = [ + { + name = "registry" + domain = "registry.${var.server_domain}" + port = "5000" + host = "127.0.0.1" + tls = false + }, + ] + +} + +output "app_urls" { + value = module.zot.app_urls +} + +output "installed" { + value = true + depends_on = [module.zot.installed] +} diff --git a/quadlets/network/main.tf b/quadlets/network/main.tf new file mode 100644 index 0000000..715679c --- /dev/null +++ b/quadlets/network/main.tf @@ -0,0 +1,94 @@ +variable "wait_on" { + type = any + description = "Resources to wait on" + default = true +} + +variable "server_ip" { + description = "Target server IP" + type = string +} + +variable "ssh_private_key_path" { + description = "Path to SSH private key" + type = string + default = "~/.ssh/id_rsa" +} + +variable "name" { + description = "Name of the network" + type = string +} + +resource "null_resource" "deploy_network" { + depends_on = [var.wait_on] + triggers = { + name = var.name + server_ip = var.server_ip + ssh_private_key_path = var.ssh_private_key_path + } + + provisioner "remote-exec" { + inline = compact(flatten([ + [ + + # Create base quadlet file + "cat > /tmp/${var.name}.network << 'EOF'", + "[Network]", + "Description=${var.name} network", + "", + "[Install]", + "WantedBy=default.target", + "EOF", + + "test -d ~/.config/containers/systemd || mkdir -p ~/.config/containers/systemd", + "cp /tmp/${var.name}.network ~/.config/containers/systemd/${var.name}.network", + "systemctl --user daemon-reload", + ] + ])) + + + connection { + type = "ssh" + host = var.server_ip + user = "fourlights" + agent = true + agent_identity = var.ssh_private_key_path + } + } + + provisioner "remote-exec" { + when = destroy + inline = [ + # Remove the .container file + "rm -f ~/.config/containers/systemd/${self.triggers.name}.network", + + # Reload systemd to remove the generated service + "systemctl --user daemon-reload", + + # Force remove any lingering containers + "podman network rm -f ${self.triggers.name} || true" + ] + connection { + type = "ssh" + host = self.triggers.server_ip + user = "fourlights" + agent = true + agent_identity = self.triggers.ssh_private_key_path + } + + } +} + +output "name" { + value = var.name +} + +output "service_status" { + value = "${var.name} deployed" +} + +output "installed" { + value = true + depends_on = [null_resource.deploy_network] +} \ No newline at end of file diff --git a/quadlets/scripts/podman-haproxy-acme-sync/.gitignore b/quadlets/scripts/podman-haproxy-acme-sync/.gitignore new file mode 100644 index 0000000..47b2703 --- /dev/null +++ b/quadlets/scripts/podman-haproxy-acme-sync/.gitignore @@ -0,0 +1,2 @@ +.idea +.venv/ diff --git a/quadlets/scripts/podman-haproxy-acme-sync/.python-version b/quadlets/scripts/podman-haproxy-acme-sync/.python-version new file mode 100644 index 0000000..24ee5b1 --- /dev/null +++ b/quadlets/scripts/podman-haproxy-acme-sync/.python-version @@ -0,0 +1 @@ +3.13 diff --git a/quadlets/scripts/podman-haproxy-acme-sync/README.md b/quadlets/scripts/podman-haproxy-acme-sync/README.md new file mode 100644 index 0000000..e69de29 diff --git a/quadlets/scripts/podman-haproxy-acme-sync/main.py b/quadlets/scripts/podman-haproxy-acme-sync/main.py new file mode 100644 index 0000000..565e363 --- /dev/null +++ b/quadlets/scripts/podman-haproxy-acme-sync/main.py @@ -0,0 +1,625 @@ +#!/usr/bin/env python3 + +import json +import os +import subprocess +import sys +import time + +import requests + +HAPROXY_API_BASE = "http://:admin@127.0.0.1:5555/v3" +CERT_DIR = "/home/fourlights/.acme.sh" +ACME_SCRIPT = "/usr/local/bin/acme.sh" + + +class PodmanHAProxyACMESync: + def __init__(self): + self.ssl_services = set() + self.session = requests.Session() + self.session.headers.update({"Content-Type": "application/json"}) + + def get_next_index(self, path): + response = self.session.get( + f"{HAPROXY_API_BASE}/services/haproxy/configuration/{path}" + ) + return len(response.json()) if response.status_code == 200 else None + + def get_dataplaneapi_version(self): + response = self.session.get( + f"{HAPROXY_API_BASE}/services/haproxy/configuration/version" + ) + return response.json() if response.status_code == 200 else None + + def get_container_labels(self, container_id): + try: + result = subprocess.run( + ["podman", "inspect", container_id], capture_output=True, text=True + ) + if result.returncode == 0: + data = json.loads(result.stdout) + return data[0]["Config"]["Labels"] or {} + except Exception as e: + print(f"Error getting labels for {container_id}: {e}") + return {} + + # ===== PHASE 1: Helper Methods (Check/Query Operations) ===== + + def check_acl_exists(self, frontend, acl_name, criterion, value): + """ + Check if an ACL exists in the specified frontend by matching name, criterion, and value. + Returns: (exists: bool, index: int | None, current_config: dict | None) + """ + try: + response = self.session.get( + f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/{frontend}/acls" + ) + if response.status_code == 200: + acls = response.json() + for idx, acl in enumerate(acls): + if (acl.get("acl_name") == acl_name and + acl.get("criterion") == criterion and + acl.get("value") == value): + return (True, idx, acl) + return (False, None, None) + except Exception as e: + print(f"[UPSERT-ERROR] Error checking ACL existence in frontend {frontend}: {e}") + return (False, None, None) + + def check_backend_rule_exists(self, frontend, rule_name, cond_test): + """ + Check if a backend switching rule exists in the specified frontend by matching name and condition test. + Returns: (exists: bool, index: int | None, current_config: dict | None) + """ + try: + response = self.session.get( + f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/{frontend}/backend_switching_rules" + ) + if response.status_code == 200: + rules = response.json() + for idx, rule in enumerate(rules): + if (rule.get("name") == rule_name and + rule.get("cond_test") == cond_test): + return (True, idx, rule) + return (False, None, None) + except Exception as e: + print(f"[UPSERT-ERROR] Error checking backend rule existence in frontend {frontend}: {e}") + return (False, None, None) + + def check_http_request_rule_exists(self, frontend, cond_test, redirect_type, redirect_value): + """ + Check if an http_request_rule (redirect rule) exists by matching condition test and redirect parameters. + Returns: (exists: bool, index: int | None, current_config: dict | None) + """ + try: + response = self.session.get( + f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/{frontend}/http_request_rules" + ) + if response.status_code == 200: + rules = response.json() + for idx, rule in enumerate(rules): + if (rule.get("cond_test") == cond_test and + rule.get("type") == "redirect"): + redirect_cfg = rule.get("redirect_rule", {}) + if (redirect_cfg.get("type") == redirect_type and + redirect_cfg.get("value") == redirect_value): + return (True, idx, rule) + return (False, None, None) + except Exception as e: + print(f"[UPSERT-ERROR] Error checking http_request_rule existence in frontend {frontend}: {e}") + return (False, None, None) + + # ===== PHASE 2: Upsert Operations ===== + + def upsert_acl(self, frontend, acl_name, criterion, value): + """ + Create or update an ACL in the specified frontend. + Returns: (success: bool, operation_type: str) + - operation_type: "CREATE", "UPDATE", "SKIP", or "ERROR" + """ + try: + exists, idx, current_config = self.check_acl_exists(frontend, acl_name, criterion, value) + + if exists and current_config: + # ACL exists with same config - skip + print(f"[UPSERT-SKIP] ACL {acl_name} already exists in frontend {frontend}, skipping") + return (True, "SKIP") + elif exists and idx is not None: + # ACL exists but with different config - delete and recreate + try: + self.session.delete( + f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/{frontend}/acls/{idx}?version={self.get_dataplaneapi_version()}" + ) + except Exception as e: + print(f"[UPSERT-ERROR] Failed to delete old ACL {acl_name}: {e}") + return (False, "ERROR") + + # Create new ACL + acl_data = { + "acl_name": acl_name, + "criterion": criterion, + "value": value, + } + response = self.session.post( + f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/{frontend}/acls/{self.get_next_index(f'frontends/{frontend}/acls')}?version={self.get_dataplaneapi_version()}", + json=acl_data, + ) + + if response.status_code in [200, 201]: + op_type = "UPDATE" if (exists and idx is not None) else "CREATE" + print(f"[UPSERT-{op_type}] ACL {acl_name} {op_type.lower()}d in frontend {frontend}") + return (True, op_type) + else: + print(f"[UPSERT-ERROR] Failed to create ACL {acl_name}: {response.status_code} - {response.text}") + return (False, "ERROR") + except Exception as e: + print(f"[UPSERT-ERROR] Exception upserting ACL {acl_name}: {e}") + return (False, "ERROR") + + def upsert_backend_rule(self, frontend, rule_name, cond_test): + """ + Create or update a backend switching rule in the specified frontend. + Returns: (success: bool, operation_type: str) + - operation_type: "CREATE", "UPDATE", "SKIP", or "ERROR" + """ + try: + exists, idx, current_config = self.check_backend_rule_exists(frontend, rule_name, cond_test) + + if exists and current_config: + # Rule exists with same config - skip + print(f"[UPSERT-SKIP] Backend rule {rule_name} already exists in frontend {frontend}, skipping") + return (True, "SKIP") + elif exists and idx is not None: + # Rule exists but with different config - delete and recreate + try: + self.session.delete( + f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/{frontend}/backend_switching_rules/{idx}?version={self.get_dataplaneapi_version()}" + ) + except Exception as e: + print(f"[UPSERT-ERROR] Failed to delete old backend rule {rule_name}: {e}") + return (False, "ERROR") + + # Create new backend rule + rule_data = { + "name": rule_name, + "cond": "if", + "cond_test": cond_test, + } + response = self.session.post( + f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/{frontend}/backend_switching_rules/{self.get_next_index(f'frontends/{frontend}/backend_switching_rules')}?version={self.get_dataplaneapi_version()}", + json=rule_data, + ) + + if response.status_code in [200, 201]: + op_type = "UPDATE" if (exists and idx is not None) else "CREATE" + print(f"[UPSERT-{op_type}] Backend rule {rule_name} {op_type.lower()}d in frontend {frontend}") + return (True, op_type) + else: + print(f"[UPSERT-ERROR] Failed to create backend rule {rule_name}: {response.status_code} - {response.text}") + return (False, "ERROR") + except Exception as e: + print(f"[UPSERT-ERROR] Exception upserting backend rule {rule_name}: {e}") + return (False, "ERROR") + + def upsert_http_request_rule(self, frontend, cond_test, redirect_rule_data): + """ + Create or update an http_request_rule (redirect rule) in the specified frontend. + redirect_rule_data should contain: {"type": "redirect", "redirect_rule": {...}, "cond": "if", "cond_test": ...} + Returns: (success: bool, operation_type: str) + - operation_type: "CREATE", "UPDATE", "SKIP", or "ERROR" + """ + try: + redirect_type = redirect_rule_data.get("redirect_rule", {}).get("type") + redirect_value = redirect_rule_data.get("redirect_rule", {}).get("value") + + exists, idx, current_config = self.check_http_request_rule_exists( + frontend, cond_test, redirect_type, redirect_value + ) + + if exists and current_config: + # Rule exists with same config - skip + print(f"[UPSERT-SKIP] Redirect rule for {cond_test} already exists in frontend {frontend}, skipping") + return (True, "SKIP") + elif exists and idx is not None: + # Rule exists but with different config - delete and recreate + try: + self.session.delete( + f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/{frontend}/http_request_rules/{idx}?version={self.get_dataplaneapi_version()}" + ) + except Exception as e: + print(f"[UPSERT-ERROR] Failed to delete old redirect rule for {cond_test}: {e}") + return (False, "ERROR") + + # Create new http_request_rule + response = self.session.post( + f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/{frontend}/http_request_rules/{self.get_next_index(f'frontends/{frontend}/http_request_rules')}?version={self.get_dataplaneapi_version()}", + json=redirect_rule_data, + ) + + if response.status_code in [200, 201]: + op_type = "UPDATE" if (exists and idx is not None) else "CREATE" + print(f"[UPSERT-{op_type}] Redirect rule for {cond_test} {op_type.lower()}d in frontend {frontend}") + return (True, op_type) + else: + print(f"[UPSERT-ERROR] Failed to create redirect rule for {cond_test}: {response.status_code} - {response.text}") + return (False, "ERROR") + except Exception as e: + print(f"[UPSERT-ERROR] Exception upserting redirect rule for {cond_test}: {e}") + return (False, "ERROR") + + def request_certificate(self, domain): + print(f"[CERT-REQUEST] About to request certificate for {domain}") + sys.stdout.flush() + + try: + cmd = [ + ACME_SCRIPT, + "--issue", + "-d", + domain, + "--standalone", + "--httpport", + "8888", + "--server", + "letsencrypt", + "--listen-v4", + "--debug", + "2", + ] + + # Log the command being executed + print(f"[CERT-REQUEST] Executing: {' '.join(cmd)}") + sys.stdout.flush() + + result = subprocess.run(cmd, capture_output=True, text=True) + + # Log both stdout and stderr for complete debugging + if result.stdout: + print(f"[CERT-STDOUT] {result.stdout}") + sys.stdout.flush() + if result.stderr: + print(f"[CERT-STDERR] {result.stderr}") + sys.stderr.flush() + + if result.returncode == 0: + print(f"[CERT-SUCCESS] Certificate obtained for {domain}") + sys.stdout.flush() + self.install_certificate(domain) + return True + else: + print(f"[CERT-FAILED] Failed to obtain certificate for {domain}") + print(f"[CERT-FAILED] Return code: {result.returncode}") + sys.stdout.flush() + return False + + except Exception as e: + print(f"[CERT-ERROR] Error requesting certificate: {e}") + sys.stdout.flush() + return False + + def install_certificate(self, domain): + cert_file = f"{CERT_DIR}/{domain}.pem" + + try: + acme_cert_dir = f"/home/fourlights/.acme.sh/{domain}_ecc" + + with open(cert_file, "w") as outfile: + with open(f"{acme_cert_dir}/fullchain.cer") as cert: + outfile.write(cert.read()) + with open(f"{acme_cert_dir}/{domain}.key") as key: + outfile.write(key.read()) + try: + with open(f"{acme_cert_dir}/ca.cer") as ca: + outfile.write(ca.read()) + except FileNotFoundError: + pass + + os.chmod(cert_file, 0o600) + print(f"Certificate installed at {cert_file}") + + self.update_haproxy_ssl_bind(domain) + + except Exception as e: + print(f"Error installing certificate for {domain}: {e}") + + def update_haproxy_ssl_bind(self, domain): + print(f"Updating ssl bind for {domain}") + try: + ssl_bind_data = { + "address": "*", + "port": 443, + "ssl": True, + "ssl_certificate": f"{CERT_DIR}/{domain}.pem", + } + + response = self.session.post( + f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/https_main/binds?version={self.get_dataplaneapi_version()}", + json=ssl_bind_data, + ) + print(response.json()) + + if response.status_code in [200, 201]: + print(f"Updated HAProxy SSL bind for {domain}") + + except Exception as e: + print(f"Error updating HAProxy SSL bind: {e}") + + def setup_certificate_renewal(self, domain): + renewal_script = f"/etc/cron.d/acme-{domain.replace('.', '-')}" + + cron_content = f"""0 0 * * * root {ACME_SCRIPT} --renew -d {domain} --post-hook "systemctl reload haproxy" >/dev/null 2>&1 +""" + + with open(renewal_script, "w") as f: + f.write(cron_content) + + print(f"Setup automatic renewal for {domain}") + + def update_haproxy_backend(self, service_name, host, port, action="add"): + backend_name = f"backend_{service_name}" + server_name = f"{service_name}_server" + + if action == "add": + backend_data = { + "name": backend_name, + "mode": "http", + "balance": {"algorithm": "roundrobin"}, + } + backends = self.session.post( + f"{HAPROXY_API_BASE}/services/haproxy/configuration/backends?version={self.get_dataplaneapi_version()}", + json=backend_data, + ) + print(backends.json()) + + server_data = { + "name": server_name, + "address": host, + "port": int(port), + "check": "enabled", + } + tweak = self.session.post( + f"{HAPROXY_API_BASE}/services/haproxy/configuration/backends/{backend_name}/servers?version={self.get_dataplaneapi_version()}", + json=server_data, + ) + print(tweak.json()) + + elif action == "remove": + self.session.delete( + f"{HAPROXY_API_BASE}/services/haproxy/configuration/backends/{backend_name}/servers/{server_name}?version={self.get_dataplaneapi_version()}" + ) + + def update_haproxy_frontend_rule( + self, service_name, domain, ssl_enabled=False, action="add" + ): + """ + Update HAProxy frontend rules (ACLs, backend switching rules, and redirect rules). + Uses upsert behavior to prevent duplicate rules on multiple syncs. + """ + if action == "add": + if ssl_enabled and domain and domain not in self.ssl_services: + print(f"Setting up SSL for {domain}") + if self.request_certificate(domain): + self.setup_certificate_renewal(domain) + self.ssl_services.add(domain) + + # Upsert ACL in HTTP frontend (main) + self.upsert_acl( + "main", + f"is_{service_name}", + "hdr(host)", + domain + ) + + # Upsert ACL in HTTPS frontend if SSL enabled + if ssl_enabled: + self.upsert_acl( + "https_main", + f"is_{service_name}", + "hdr(host)", + domain + ) + + # Upsert backend switching rule in HTTP frontend + self.upsert_backend_rule( + "main", + f"backend_{service_name}", + f"is_{service_name}" + ) + + # Upsert backend switching rule in HTTPS frontend if SSL enabled + if ssl_enabled: + self.upsert_backend_rule( + "https_main", + f"backend_{service_name}", + f"is_{service_name}" + ) + + # Upsert redirect rule (HTTP to HTTPS) + redirect_rule = { + "type": "redirect", + "redirect_rule": {"type": "scheme", "value": "https", "code": 301}, + "cond": "if", + "cond_test": f"is_{service_name}", + } + self.upsert_http_request_rule( + "main", + f"is_{service_name}", + redirect_rule + ) + + def process_container_event(self, event): + # DIAGNOSTIC: Log raw event structure + print( + f"[EVENT-DEBUG] Received event - Type: {event.get('Type', 'MISSING')}, Action: {event.get('Action', 'MISSING')}" + ) + sys.stdout.flush() + + # DIAGNOSTIC: Check for Actor key + if "Actor" not in event: + print( + f"[EVENT-SKIP] Skipping event without 'Actor' key - Full event: {json.dumps(event)}" + ) + sys.stdout.flush() + return + + # DIAGNOSTIC: Check for ID in Actor + if "ID" not in event["Actor"]: + print( + f"[EVENT-SKIP] Skipping event without 'Actor.ID' - Actor content: {json.dumps(event['Actor'])}" + ) + sys.stdout.flush() + return + + container_id = event["Actor"]["ID"][:12] + action = event["Action"] + + print( + f"[EVENT-PROCESS] Processing '{action}' event for container {container_id}" + ) + sys.stdout.flush() + + labels = self.get_container_labels(container_id) + + # Dictionary to store discovered services + services = {} + + # First, check for namespaced labels (haproxy.{service_name}.enable) + for label_key, label_value in labels.items(): + if ( + label_key.startswith("haproxy.") + and label_key.endswith(".enable") + and label_value.lower() == "true" + ): + # Extract service name from label key + parts = label_key.split(".") + if len(parts) == 3: # haproxy.{service_name}.enable + service_name = parts[1] + + # Extract properties for this service namespace + service_config = { + "service_name": service_name, + "host": labels.get(f"haproxy.{service_name}.host", "127.0.0.1"), + "port": labels.get(f"haproxy.{service_name}.port", "8080"), + "domain": labels.get(f"haproxy.{service_name}.domain", None), + "ssl_enabled": labels.get( + f"haproxy.{service_name}.tls", "false" + ).lower() + == "true", + } + services[service_name] = service_config + + # Backward compatibility: If no namespaced labels found, check for flat labels + if ( + not services + and "haproxy.enable" in labels + and labels["haproxy.enable"].lower() == "true" + ): + service_name = labels.get("haproxy.service", container_id) + services[service_name] = { + "service_name": service_name, + "host": labels.get("haproxy.host", "127.0.0.1"), + "port": labels.get("haproxy.port", "8080"), + "domain": labels.get("haproxy.domain", None), + "ssl_enabled": labels.get("haproxy.tls", "false").lower() == "true", + } + + # Process each discovered service + for service_name, config in services.items(): + if action in ["start", "restart"]: + print( + f"Adding service {config['service_name']} to HAProxy (SSL: {config['ssl_enabled']}, Domain: {config['domain']})" + ) + sys.stdout.flush() + self.update_haproxy_backend( + config["service_name"], config["host"], config["port"], "add" + ) + if config["domain"]: + self.update_haproxy_frontend_rule( + config["service_name"], + config["domain"], + config["ssl_enabled"], + "add", + ) + + elif action in ["stop", "remove", "died"]: + print(f"Removing service {config['service_name']} from HAProxy") + sys.stdout.flush() + self.update_haproxy_backend( + config["service_name"], config["host"], config["port"], "remove" + ) + + def watch_events(self): + print("Starting Podman-HAProxy-ACME sync...") + + # Track last sync time + last_full_sync = 0 + SYNC_INTERVAL = 60 # Re-scan all containers every 60 seconds + + def do_full_sync(): + """Perform a full sync of all running containers""" + print("Performing full container sync...") + try: + result = subprocess.run( + ["podman", "ps", "--format", "json"], capture_output=True, text=True + ) + if result.returncode == 0: + containers = json.loads(result.stdout) + for container in containers: + event = { + "Type": "container", + "Action": "start", + "Actor": {"ID": container.get("Id", "")}, + } + self.process_container_event(event) + print(f"Synced {len(containers)} containers") + except Exception as e: + print(f"Error during full sync: {e}") + + # Initial sync + do_full_sync() + last_full_sync = time.time() + + print("Watching for container events...") + + cmd = ["podman", "events", "--format", "json"] + process = subprocess.Popen(cmd, stdout=subprocess.PIPE, text=True) + + # Use select/poll for non-blocking read so we can do periodic syncs + import select + + while True: + # Check if it's time for periodic sync + if time.time() - last_full_sync >= SYNC_INTERVAL: + do_full_sync() + last_full_sync = time.time() + + # Check for events with timeout + ready, _, _ = select.select([process.stdout], [], [], 5) + + if ready: + line = process.stdout.readline() + if line: + try: + event = json.loads(line.strip()) + if event["Type"] == "container": + self.process_container_event(event) + except json.JSONDecodeError as e: + print( + f"[EVENT-ERROR] JSON decode error: {e} - Line: {line[:100]}" + ) + sys.stdout.flush() + except KeyError as e: + print( + f"[EVENT-ERROR] Missing key {e} in event: {json.dumps(event)}" + ) + sys.stdout.flush() + except Exception as e: + print(f"[EVENT-ERROR] Error processing event: {e}") + print(f"[EVENT-ERROR] Event structure: {json.dumps(event)}") + sys.stdout.flush() + + +if __name__ == "__main__": + os.makedirs(CERT_DIR, exist_ok=True) + sync = PodmanHAProxyACMESync() + sync.watch_events() diff --git a/quadlets/scripts/podman-haproxy-acme-sync/pyproject.toml b/quadlets/scripts/podman-haproxy-acme-sync/pyproject.toml new file mode 100644 index 0000000..9b50ae2 --- /dev/null +++ b/quadlets/scripts/podman-haproxy-acme-sync/pyproject.toml @@ -0,0 +1,9 @@ +[project] +name = "podman-haproxy-acme-sync" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.13" +dependencies = [ + "requests>=2.32.5", +] diff --git a/quadlets/scripts/podman-haproxy-acme-sync/uv.lock b/quadlets/scripts/podman-haproxy-acme-sync/uv.lock new file mode 100644 index 0000000..918b09c --- /dev/null +++ b/quadlets/scripts/podman-haproxy-acme-sync/uv.lock @@ -0,0 +1,97 @@ +version = 1 +revision = 3 +requires-python = ">=3.13" + +[[package]] +name = "certifi" +version = "2025.10.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4c/5b/b6ce21586237c77ce67d01dc5507039d444b630dd76611bbca2d8e5dcd91/certifi-2025.10.5.tar.gz", hash = "sha256:47c09d31ccf2acf0be3f701ea53595ee7e0b8fa08801c6624be771df09ae7b43", size = 164519, upload-time = "2025-10-05T04:12:15.808Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl", hash = "sha256:0f212c2744a9bb6de0c56639a6f68afe01ecd92d91f14ae897c4fe7bbeeef0de", size = 163286, upload-time = "2025-10-05T04:12:14.03Z" }, +] + +[[package]] +name = "charset-normalizer" +version = "3.4.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/13/69/33ddede1939fdd074bce5434295f38fae7136463422fe4fd3e0e89b98062/charset_normalizer-3.4.4.tar.gz", hash = "sha256:94537985111c35f28720e43603b8e7b43a6ecfb2ce1d3058bbe955b73404e21a", size = 129418, upload-time = "2025-10-14T04:42:32.879Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/97/45/4b3a1239bbacd321068ea6e7ac28875b03ab8bc0aa0966452db17cd36714/charset_normalizer-3.4.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e1f185f86a6f3403aa2420e815904c67b2f9ebc443f045edd0de921108345794", size = 208091, upload-time = "2025-10-14T04:41:13.346Z" }, + { url = "https://files.pythonhosted.org/packages/7d/62/73a6d7450829655a35bb88a88fca7d736f9882a27eacdca2c6d505b57e2e/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b39f987ae8ccdf0d2642338faf2abb1862340facc796048b604ef14919e55ed", size = 147936, upload-time = "2025-10-14T04:41:14.461Z" }, + { url = "https://files.pythonhosted.org/packages/89/c5/adb8c8b3d6625bef6d88b251bbb0d95f8205831b987631ab0c8bb5d937c2/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3162d5d8ce1bb98dd51af660f2121c55d0fa541b46dff7bb9b9f86ea1d87de72", size = 144180, upload-time = "2025-10-14T04:41:15.588Z" }, + { url = "https://files.pythonhosted.org/packages/91/ed/9706e4070682d1cc219050b6048bfd293ccf67b3d4f5a4f39207453d4b99/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:81d5eb2a312700f4ecaa977a8235b634ce853200e828fbadf3a9c50bab278328", size = 161346, upload-time = "2025-10-14T04:41:16.738Z" }, + { url = "https://files.pythonhosted.org/packages/d5/0d/031f0d95e4972901a2f6f09ef055751805ff541511dc1252ba3ca1f80cf5/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5bd2293095d766545ec1a8f612559f6b40abc0eb18bb2f5d1171872d34036ede", size = 158874, upload-time = "2025-10-14T04:41:17.923Z" }, + { url = "https://files.pythonhosted.org/packages/f5/83/6ab5883f57c9c801ce5e5677242328aa45592be8a00644310a008d04f922/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a8a8b89589086a25749f471e6a900d3f662d1d3b6e2e59dcecf787b1cc3a1894", size = 153076, upload-time = "2025-10-14T04:41:19.106Z" }, + { url = "https://files.pythonhosted.org/packages/75/1e/5ff781ddf5260e387d6419959ee89ef13878229732732ee73cdae01800f2/charset_normalizer-3.4.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc7637e2f80d8530ee4a78e878bce464f70087ce73cf7c1caf142416923b98f1", size = 150601, upload-time = "2025-10-14T04:41:20.245Z" }, + { url = "https://files.pythonhosted.org/packages/d7/57/71be810965493d3510a6ca79b90c19e48696fb1ff964da319334b12677f0/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f8bf04158c6b607d747e93949aa60618b61312fe647a6369f88ce2ff16043490", size = 150376, upload-time = "2025-10-14T04:41:21.398Z" }, + { url = "https://files.pythonhosted.org/packages/e5/d5/c3d057a78c181d007014feb7e9f2e65905a6c4ef182c0ddf0de2924edd65/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:554af85e960429cf30784dd47447d5125aaa3b99a6f0683589dbd27e2f45da44", size = 144825, upload-time = "2025-10-14T04:41:22.583Z" }, + { url = "https://files.pythonhosted.org/packages/e6/8c/d0406294828d4976f275ffbe66f00266c4b3136b7506941d87c00cab5272/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:74018750915ee7ad843a774364e13a3db91682f26142baddf775342c3f5b1133", size = 162583, upload-time = "2025-10-14T04:41:23.754Z" }, + { url = "https://files.pythonhosted.org/packages/d7/24/e2aa1f18c8f15c4c0e932d9287b8609dd30ad56dbe41d926bd846e22fb8d/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:c0463276121fdee9c49b98908b3a89c39be45d86d1dbaa22957e38f6321d4ce3", size = 150366, upload-time = "2025-10-14T04:41:25.27Z" }, + { url = "https://files.pythonhosted.org/packages/e4/5b/1e6160c7739aad1e2df054300cc618b06bf784a7a164b0f238360721ab86/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:362d61fd13843997c1c446760ef36f240cf81d3ebf74ac62652aebaf7838561e", size = 160300, upload-time = "2025-10-14T04:41:26.725Z" }, + { url = "https://files.pythonhosted.org/packages/7a/10/f882167cd207fbdd743e55534d5d9620e095089d176d55cb22d5322f2afd/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9a26f18905b8dd5d685d6d07b0cdf98a79f3c7a918906af7cc143ea2e164c8bc", size = 154465, upload-time = "2025-10-14T04:41:28.322Z" }, + { url = "https://files.pythonhosted.org/packages/89/66/c7a9e1b7429be72123441bfdbaf2bc13faab3f90b933f664db506dea5915/charset_normalizer-3.4.4-cp313-cp313-win32.whl", hash = "sha256:9b35f4c90079ff2e2edc5b26c0c77925e5d2d255c42c74fdb70fb49b172726ac", size = 99404, upload-time = "2025-10-14T04:41:29.95Z" }, + { url = "https://files.pythonhosted.org/packages/c4/26/b9924fa27db384bdcd97ab83b4f0a8058d96ad9626ead570674d5e737d90/charset_normalizer-3.4.4-cp313-cp313-win_amd64.whl", hash = "sha256:b435cba5f4f750aa6c0a0d92c541fb79f69a387c91e61f1795227e4ed9cece14", size = 107092, upload-time = "2025-10-14T04:41:31.188Z" }, + { url = "https://files.pythonhosted.org/packages/af/8f/3ed4bfa0c0c72a7ca17f0380cd9e4dd842b09f664e780c13cff1dcf2ef1b/charset_normalizer-3.4.4-cp313-cp313-win_arm64.whl", hash = "sha256:542d2cee80be6f80247095cc36c418f7bddd14f4a6de45af91dfad36d817bba2", size = 100408, upload-time = "2025-10-14T04:41:32.624Z" }, + { url = "https://files.pythonhosted.org/packages/2a/35/7051599bd493e62411d6ede36fd5af83a38f37c4767b92884df7301db25d/charset_normalizer-3.4.4-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:da3326d9e65ef63a817ecbcc0df6e94463713b754fe293eaa03da99befb9a5bd", size = 207746, upload-time = "2025-10-14T04:41:33.773Z" }, + { url = "https://files.pythonhosted.org/packages/10/9a/97c8d48ef10d6cd4fcead2415523221624bf58bcf68a802721a6bc807c8f/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8af65f14dc14a79b924524b1e7fffe304517b2bff5a58bf64f30b98bbc5079eb", size = 147889, upload-time = "2025-10-14T04:41:34.897Z" }, + { url = "https://files.pythonhosted.org/packages/10/bf/979224a919a1b606c82bd2c5fa49b5c6d5727aa47b4312bb27b1734f53cd/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:74664978bb272435107de04e36db5a9735e78232b85b77d45cfb38f758efd33e", size = 143641, upload-time = "2025-10-14T04:41:36.116Z" }, + { url = "https://files.pythonhosted.org/packages/ba/33/0ad65587441fc730dc7bd90e9716b30b4702dc7b617e6ba4997dc8651495/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:752944c7ffbfdd10c074dc58ec2d5a8a4cd9493b314d367c14d24c17684ddd14", size = 160779, upload-time = "2025-10-14T04:41:37.229Z" }, + { url = "https://files.pythonhosted.org/packages/67/ed/331d6b249259ee71ddea93f6f2f0a56cfebd46938bde6fcc6f7b9a3d0e09/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d1f13550535ad8cff21b8d757a3257963e951d96e20ec82ab44bc64aeb62a191", size = 159035, upload-time = "2025-10-14T04:41:38.368Z" }, + { url = "https://files.pythonhosted.org/packages/67/ff/f6b948ca32e4f2a4576aa129d8bed61f2e0543bf9f5f2b7fc3758ed005c9/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ecaae4149d99b1c9e7b88bb03e3221956f68fd6d50be2ef061b2381b61d20838", size = 152542, upload-time = "2025-10-14T04:41:39.862Z" }, + { url = "https://files.pythonhosted.org/packages/16/85/276033dcbcc369eb176594de22728541a925b2632f9716428c851b149e83/charset_normalizer-3.4.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:cb6254dc36b47a990e59e1068afacdcd02958bdcce30bb50cc1700a8b9d624a6", size = 149524, upload-time = "2025-10-14T04:41:41.319Z" }, + { url = "https://files.pythonhosted.org/packages/9e/f2/6a2a1f722b6aba37050e626530a46a68f74e63683947a8acff92569f979a/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c8ae8a0f02f57a6e61203a31428fa1d677cbe50c93622b4149d5c0f319c1d19e", size = 150395, upload-time = "2025-10-14T04:41:42.539Z" }, + { url = "https://files.pythonhosted.org/packages/60/bb/2186cb2f2bbaea6338cad15ce23a67f9b0672929744381e28b0592676824/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:47cc91b2f4dd2833fddaedd2893006b0106129d4b94fdb6af1f4ce5a9965577c", size = 143680, upload-time = "2025-10-14T04:41:43.661Z" }, + { url = "https://files.pythonhosted.org/packages/7d/a5/bf6f13b772fbb2a90360eb620d52ed8f796f3c5caee8398c3b2eb7b1c60d/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:82004af6c302b5d3ab2cfc4cc5f29db16123b1a8417f2e25f9066f91d4411090", size = 162045, upload-time = "2025-10-14T04:41:44.821Z" }, + { url = "https://files.pythonhosted.org/packages/df/c5/d1be898bf0dc3ef9030c3825e5d3b83f2c528d207d246cbabe245966808d/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:2b7d8f6c26245217bd2ad053761201e9f9680f8ce52f0fcd8d0755aeae5b2152", size = 149687, upload-time = "2025-10-14T04:41:46.442Z" }, + { url = "https://files.pythonhosted.org/packages/a5/42/90c1f7b9341eef50c8a1cb3f098ac43b0508413f33affd762855f67a410e/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:799a7a5e4fb2d5898c60b640fd4981d6a25f1c11790935a44ce38c54e985f828", size = 160014, upload-time = "2025-10-14T04:41:47.631Z" }, + { url = "https://files.pythonhosted.org/packages/76/be/4d3ee471e8145d12795ab655ece37baed0929462a86e72372fd25859047c/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:99ae2cffebb06e6c22bdc25801d7b30f503cc87dbd283479e7b606f70aff57ec", size = 154044, upload-time = "2025-10-14T04:41:48.81Z" }, + { url = "https://files.pythonhosted.org/packages/b0/6f/8f7af07237c34a1defe7defc565a9bc1807762f672c0fde711a4b22bf9c0/charset_normalizer-3.4.4-cp314-cp314-win32.whl", hash = "sha256:f9d332f8c2a2fcbffe1378594431458ddbef721c1769d78e2cbc06280d8155f9", size = 99940, upload-time = "2025-10-14T04:41:49.946Z" }, + { url = "https://files.pythonhosted.org/packages/4b/51/8ade005e5ca5b0d80fb4aff72a3775b325bdc3d27408c8113811a7cbe640/charset_normalizer-3.4.4-cp314-cp314-win_amd64.whl", hash = "sha256:8a6562c3700cce886c5be75ade4a5db4214fda19fede41d9792d100288d8f94c", size = 107104, upload-time = "2025-10-14T04:41:51.051Z" }, + { url = "https://files.pythonhosted.org/packages/da/5f/6b8f83a55bb8278772c5ae54a577f3099025f9ade59d0136ac24a0df4bde/charset_normalizer-3.4.4-cp314-cp314-win_arm64.whl", hash = "sha256:de00632ca48df9daf77a2c65a484531649261ec9f25489917f09e455cb09ddb2", size = 100743, upload-time = "2025-10-14T04:41:52.122Z" }, + { url = "https://files.pythonhosted.org/packages/0a/4c/925909008ed5a988ccbb72dcc897407e5d6d3bd72410d69e051fc0c14647/charset_normalizer-3.4.4-py3-none-any.whl", hash = "sha256:7a32c560861a02ff789ad905a2fe94e3f840803362c84fecf1851cb4cf3dc37f", size = 53402, upload-time = "2025-10-14T04:42:31.76Z" }, +] + +[[package]] +name = "idna" +version = "3.11" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/0703ccc57f3a7233505399edb88de3cbd678da106337b9fcde432b65ed60/idna-3.11.tar.gz", hash = "sha256:795dafcc9c04ed0c1fb032c2aa73654d8e8c5023a7df64a53f39190ada629902", size = 194582, upload-time = "2025-10-12T14:55:20.501Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea", size = 71008, upload-time = "2025-10-12T14:55:18.883Z" }, +] + +[[package]] +name = "podman-haproxy-acme-sync" +version = "0.1.0" +source = { virtual = "." } +dependencies = [ + { name = "requests" }, +] + +[package.metadata] +requires-dist = [{ name = "requests", specifier = ">=2.32.5" }] + +[[package]] +name = "requests" +version = "2.32.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "charset-normalizer" }, + { name = "idna" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c9/74/b3ff8e6c8446842c3f5c837e9c3dfcfe2018ea6ecef224c710c85ef728f4/requests-2.32.5.tar.gz", hash = "sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf", size = 134517, upload-time = "2025-08-18T20:46:02.573Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6", size = 64738, upload-time = "2025-08-18T20:46:00.542Z" }, +] + +[[package]] +name = "urllib3" +version = "2.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/15/22/9ee70a2574a4f4599c47dd506532914ce044817c7752a79b6a51286319bc/urllib3-2.5.0.tar.gz", hash = "sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760", size = 393185, upload-time = "2025-06-18T14:07:41.644Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl", hash = "sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc", size = 129795, upload-time = "2025-06-18T14:07:40.39Z" }, +] diff --git a/ships/k3s+rancher.ign b/ships/k3s+rancher.ign deleted file mode 100644 index 71a4ad3..0000000 --- a/ships/k3s+rancher.ign +++ /dev/null @@ -1 +0,0 @@ -{"ignition":{"config":{"merge":[{"compression":"gzip","source":"data:;base64,H4sIAAAAAAAC/3yUSXOrPBaG9/0rXPSS3GAGYztdWWBjDB7ANgYP11kwKFgMAiQx3sp/73Jy892u6u5PK9WRzvtIi/P8YmCEIIU5Yl5+MTXA5HPLiM/i85D5eGIIzbEXgcfpO0wBYV5+/mLyGuAGQwqYF4or8MQUHr0zLwwHaMDdc0KRlwHmiQlyRAGi5NEd5FmBAfmdzzwxJK9wAJgXJvSo9/KEPRTcAf5BAK4BfqCzPATMiyQMP55+/UXIC8oRQKvix++GZ3L/W1LUw+K/aP/yPQJk6UmXiKF8rTkntY5z4WJzNmOnMnsZ24al3/tjOZwbzmiurPmOvzqLDVRCJT2Zu2VZWf45ycbuSdYlNqCmKEgzZRdc+3Y64Sfb0XjFXfnyrM3NIhkHjUATU+nGmyYjxkSulmGsKWpxMZYHI4uJjXOH22vlpfRFq8N0eT3w2zuPUt2Xg8Zl60glW6VS71RgzyInDtmdWN7FMku2QzPQujJnx9OjogZNv9knsyXQi0vdHBZ7edLms70SQn8hjueBr62kpNfrrXtORlGzmd75M9VqmztYw5O7GnE2Ki5DfYIFyBv5PHCUJZTnm50+V+1EUwgIE0u1bDUGvEuldkbml0OtB2ZAF7IBeMhufPtwXa5y8eB72VpTRYk7b018nY/aqJ8kE6ehgtSs2ykaxWdfkqzVDmzMgPNTb1dzvdyfyynweblM3e15V0btbhparXRtI26RGYvYVKIrPQrrPRtMGspfZ6fuYDj2ZqoUZLZbG/OjVLOSqvFCbisndg1oOIdKUxiCHg0TV7wsN++p3CfvBDeSPJ2dwg5v9TtXHZX+qrC2ELvD3shYB2K8H7u8qIjmfnU3VaObrVtz7Prt1pbZDUicrJrYCSWwEyxnLkYabyy4dJeQYaYhwaoiekWadZTfk7hTfZtVCnkWFxlSx0m4jFfwkEqdLpVr0evlepSnOGi2F6HqRKkeZnspuFh3aX0iuTAyY+3i9mWhw4nu4H10mOq86rjrMBaXESD1rtxhtGKz9h7G8tHK5mbhWYagrkzPbFngofG6PFZhvPAuRbr2j5mTmvGcivvx2nPczt4eEt5ojqHRuXRhtNkUQgSupVFMLtNOvO96lF4kZzIzLEffrXir61gMJ3vNPXPD7pxsxhNlq5prNpoFkcBlSLtqYnnetJC+L7rt4VqMJvzQ1rKTUPtVr1TueL7tjlVcXuVN3WwVZcdxdZCY/YJoiqK8/sf4T8WPt4eHOkJBFj7mu0KQfnnoz9QzPx0E6dsNqYAEGBYPo70evgwxsB++uCHlnQL8igBtcpz8yFEKEXimHo4AvaF/DpYAAQyDQZCj8NOIA5oPGg/SwXuOBwDSR1QikkGOBzgBwndgIpLnh7RgAD7rvw32XbuhAygriAH5f+gb+ml/3X27oWNXgNccAXLP6Q0tWhDY1MP09X+K75GdefDrIYsW0tcOkM9AAxHqpenbDZ08REE4616zKqXwR0UA/ovMPDEAeX4Kwm+Rf4r7hfkjY1oV3z9hPt4+Pv7x7wAAAP//hVXhITIGAAA="}]},"version":"3.3.0"}} diff --git a/ships/k3s+rancher.yaml b/ships/k3s+rancher.yaml deleted file mode 100644 index 82bf646..0000000 --- a/ships/k3s+rancher.yaml +++ /dev/null @@ -1,6 +0,0 @@ -variant: flatcar -version: 1.0.0 -ignition: - config: - merge: - - local: rancher.ign diff --git a/ships/k3s.ign b/ships/k3s.ign deleted file mode 100644 index 9b9dffa..0000000 --- a/ships/k3s.ign +++ /dev/null @@ -1 +0,0 @@ -{"ignition":{"config":{"merge":[{"compression":"gzip","source":"data:;base64,H4sIAAAAAAAC/5yRwWvbMBjF7/szPsjNsRU5DKZdNlqy1h1ha9akyehBlr7aworkSZ8NJvh/H26yQ05jO4gn0OPpPX4nMJUzZLwDcYIeQ3y7Qp7mKYMxgUg+yAqn11djMYL4eYJWUg0CMiSV1T6Sk0eEBJR3hI7iZFb+2AaMlzhIIPouKAQBWpIUifMap/zjpGLJ2Zhc58YhKrKpzjib/+oM0lx5F73FVHn3+o+/NRgc2rQNxlEz42yW3844y68O+/y3PoRHfdEsYjDSziskGj4RDRuWRgy9UZjqzPcYgtH/U/VjKSO+Xya7xdoqd2j3fKtvmu3ysFv/0F9Wg75lD4/Ptd0v1mz/XLBvG9YrXrSl+VAf+Jbpu6b6ull0JV/Hw2413N8s6vu7oi/z71Xx1FTF6nH11LCH660vE+nzwKlj5wydSaOTpUUNgkKHCbyBFn+s8wujy3AYX8bx3e8AAAD//zEhu5dSAgAA"},{"compression":"gzip","source":"data:;base64,H4sIAAAAAAAC/3yTX4+qOBjG7/dTbHqrYx1xFN14geAI6qgM+Hf0osIrINByaEFh4nffoJs9m5zs6U2bvM3za9Lf840CjwYiYBT1v1EOKX8ckdSQGk10ryMuWEo8qKbnIAKO+l/fKCHCR32EQTjYZ1xQEgOqI4dRAVTw6rLD4iQF/k8cqiPOstQB1EcuEaRfDyX+QpkLFSOu9n671bzXf2azRGAOIkteQok3uP/bfK8Mkl8Yf50Ih067rre5oTyXil+LpV3LiTlUx13Mk2269qDn8cmJ6JFfTGGoRu/XXDBLPZWOyVt2z993rsY596xOR5c1b6kV8ocsd9qbJN9OxGSnC8eocdcznam3nxeyxkK51vLUbfvNtCcbPUqDteJIeGRos9t76yObzNc7p7YqdeHjJZba7qUADW+TfJm9tsr9LMmnukrbqbnIF7zV1OZrg/e2b3Iod5h7s8m66Aznbr7KdY73k31oNPVc3qldlVrSzf/RwfjiD93a9L03uwhrs13V5HyRkUXMa6fy05BNNXu9psR8N2fnHR4m+6X15qm37jTVFqPTYrqrObOe8mk7/t4uwV1Z+twfDyc0CF8zNp6N4wyS7oWMcUsv7bJ7Okcst5vbqb4aFZvQ8Fs9aX06q0P+oZUbM26H2tXHjGXedfnpj3BJw0tPMxUFY+z/6I5U5o0URRkM/qNCT7ofK/kKLiB2q//OaCCe8v20AH2taCCOB6oBd9IgqTQeTCX+p1V5c6DKWUA6oCCuLA1fGI0CCg1BUg/EgW4IFfz/hgf6ZUGaBw4cD9QuEhgwCtxn4kBHN3AsQVIx+EXRA/2EmARP7ugWiEEB/BFmUC5IFB2fWHCHxSDOIhG8ZBzSf6mojoCSUwQu6os0gzp6FKuPqrI8QA3+fBW6H+/3P/4OAAD//2a0KAm9AwAA"}]},"version":"3.3.0"}} diff --git a/ships/k3s.yaml b/ships/k3s.yaml deleted file mode 100644 index 9134d95..0000000 --- a/ships/k3s.yaml +++ /dev/null @@ -1,7 +0,0 @@ -variant: flatcar -version: 1.0.0 -ignition: - config: - merge: - - local: base.ign - - local: k3s.ign diff --git a/ships/mars/main.tf b/ships/mars/main.tf new file mode 100644 index 0000000..331045a --- /dev/null +++ b/ships/mars/main.tf @@ -0,0 +1,312 @@ +variable "hcloud_token" { + type = string + sensitive = true +} + +variable "hdns_token" { + type = string + sensitive = true +} + +variable "ssh_public_key_path" { + description = "Path to SSH public key" + type = string +} + +variable "ssh_private_key_path" { + description = "Path to SSH private key" + type = string +} + +variable "server" { + default = "mars" +} + +variable "server_domain" { + default = "mars.fourlights.dev" +} + +variable "ghcr_username" {} +variable "ghcr_token" {} + +resource "null_resource" "is_up" { + connection { + type = "ssh" + host = var.server + user = "fourlights" + timeout = "10m" + agent = true + agent_identity = var.ssh_private_key_path + } + + provisioner "remote-exec" { + inline = [ + "whoami", + ] + } +} + +module "containers-network" { + wait_on = null_resource.is_up + source = "../../quadlets/network" + + server_ip = var.server + ssh_private_key_path = var.ssh_private_key_path + + name = "containers" +} + +module "minio" { + wait_on = null_resource.is_up + source = "../../quadlets/modules/minio" + server_ip = var.server + server_domain = var.server_domain + ssh_private_key_path = var.ssh_private_key_path + https = true +} + +module "valkey" { + wait_on = null_resource.is_up + source = "../../quadlets/modules/valkey" + server_ip = var.server + ssh_private_key_path = var.ssh_private_key_path +} + +module "affine" { + wait_on = module.postgres.installed + source = "../../quadlets/modules/affine" + server_ip = var.server + server_domain = var.server_domain + ssh_private_key_path = var.ssh_private_key_path + + # Pass postgres password for database connection + postgres_password = module.postgres.password +} + +module "oci-proxy" { + wait_on = null_resource.is_up + source = "../../quadlets/modules/oci-proxy" + server_ip = var.server + ssh_private_key_path = var.ssh_private_key_path +} + +module "arcane" { + wait_on = module.oci-proxy.installed + source = "../../quadlets/modules/arcane" + server_domain = var.server_domain + server_ip = var.server + ssh_private_key_path = var.ssh_private_key_path +} + +module "qdrant" { + wait_on = null_resource.is_up + source = "../../quadlets/modules/qdrant" + server_ip = var.server + ssh_private_key_path = var.ssh_private_key_path + server_domain = var.server_domain +} + +module "documentdb" { + wait_on = null_resource.is_up + source = "../../quadlets/modules/documentdb" + server_ip = var.server + ssh_private_key_path = var.ssh_private_key_path +} + +#module "opensign" { +# wait_on = module.documentdb.installed +# source = "../../quadlets/modules/opensign" +# server_ip = var.server +# server_domain = var.server_domain +# ssh_private_key_path = var.ssh_private_key_path +#} + +module "postgres" { + wait_on = null_resource.is_up + source = "../../quadlets/modules/postgres" + server_ip = var.server + ssh_private_key_path = var.ssh_private_key_path +} + +module "rabbitmq" { + wait_on = null_resource.is_up + source = "../../quadlets/modules/rabbitmq" + server_ip = var.server + ssh_private_key_path = var.ssh_private_key_path +} + +#module "plane" { +# count = 0 +# wait_on = null_resource.is_up +# source = "../../quadlets/modules/plane" +# server_ip = var.server +# ssh_private_key_path = var.ssh_private_key_path +# server_domain = var.server_domain +#} + +#module "airsonic-advanced" { +# wait_on = null_resource.is_up +# source = "../../quadlets/modules/airsonic-advanced" +# server_ip = var.server +# ssh_private_key_path = var.ssh_private_key_path +# server_domain = var.server_domain +#} + +module "gonic" { + wait_on = null_resource.is_up + source = "../../quadlets/modules/gonic" + server_ip = var.server + server_domain = var.server_domain + ssh_private_key_path = var.ssh_private_key_path +} + +module "tmail-web" { + wait_on = null_resource.is_up + source = "../../quadlets/modules/tmail-web" + server_ip = var.server + server_domain = var.server_domain + ssh_private_key_path = var.ssh_private_key_path + server_url = "https://mail.binarysunset.dev" +} + +module "navidrome" { + wait_on = null_resource.is_up + source = "../../quadlets/modules/navidrome" + server_ip = var.server + ssh_private_key_path = var.ssh_private_key_path + server_domain = var.server_domain +} + +module "mopidy" { + wait_on = null_resource.is_up + source = "../../quadlets/modules/mopidy" + server_ip = var.server + ssh_private_key_path = var.ssh_private_key_path + server_domain = var.server_domain +} + +module "zot" { + wait_on = null_resource.is_up + source = "../../quadlets/modules/zot" + server_ip = var.server + ssh_private_key_path = var.ssh_private_key_path + server_domain = var.server_domain +} + +# Deploy Plane after all dependencies are ready +#module "plane" { +# wait_on = null_resource.is_up +# +# source = "../../quadlets/modules/plane" +# server_ip = var.server +# server_domain = var.server_domain +# ssh_private_key_path = var.ssh_private_key_path +# +# # Pass credentials from existing services +# postgres_password = module.postgres.password +# minio_server = module.minio.server +# minio_access_key = module.minio.access_key +# minio_secret_key = module.minio.secret_key +# rabbitmq_username = module.rabbitmq.username +# rabbitmq_password = module.rabbitmq.password +#} + +module "kosync" { + wait_on = null_resource.is_up + source = "../../quadlets/modules/kosync" + server_ip = var.server + server_domain = var.server_domain + ssh_private_key_path = var.ssh_private_key_path +} + +module "calibre-web-automated" { + wait_on = null_resource.is_up + source = "../../quadlets/modules/calibre-web-automated" + server_ip = var.server + server_domain = var.server_domain + ssh_private_key_path = var.ssh_private_key_path +} + +module "beets" { + wait_on = null_resource.is_up + source = "../../quadlets/modules/beets" + server_ip = var.server + server_domain = var.server_domain + ssh_private_key_path = var.ssh_private_key_path +} + +module "deeptutor" { + count = 0 + wait_on = null_resource.is_up + source = "../../quadlets/modules/deeptutor" + server_ip = var.server + server_domain = var.server_domain + ssh_private_key_path = var.ssh_private_key_path +} + +output "psql_pw" { + value = module.postgres.password + sensitive = true +} + +module "forgejo" { + wait_on = module.postgres.installed + source = "../../quadlets/modules/forgejo" + server_ip = var.server + server_domain = var.server_domain + ssh_private_key_path = var.ssh_private_key_path + + # Pass postgres password for database connection + postgres_password = module.postgres.password +} + +output "minio_app_urls" { + value = module.minio.app_urls +} + +output "qdrant_api_key" { + value = module.qdrant.api_key + sensitive = true +} + +#output "plane_app_urls" { +# value = module.plane.app_urls +#} +# +#output "plane_credentials" { +# value = module.plane.credentials +# sensitive = true +#} +# +#output "plane_main_url" { +# value = module.plane.main_url +#} + +output "forgejo_app_urls" { + value = module.forgejo.app_urls +} + +output "affine_app_urls" { + value = module.affine.app_urls +} + +#output "deeptutor_app_urls" { +# value = module.deeptutor.app_urls +#} + +output "tmail_web_app_urls" { + value = module.tmail-web.app_urls +} + +output "kosync_app_urls" { + value = module.kosync.app_urls +} + +output "calibre_web_automated_app_urls" { + value = module.calibre-web-automated.app_urls +} + +#output "plane_credentials" { +#value = module.plane.credentials +#sensitive = true +#} \ No newline at end of file diff --git a/ships/overlays/base.ign b/ships/overlays/base.ign deleted file mode 100644 index 71f50b0..0000000 --- a/ships/overlays/base.ign +++ /dev/null @@ -1 +0,0 @@ -{"ignition":{"version":"3.3.0"},"storage":{"files":[{"path":"/etc/hostname","contents":{"compression":"","source":"data:,node"},"mode":420},{"path":"/etc/sysctl.d/20-quiet-console.conf","contents":{"compression":"","source":"data:,kernel.printk%20%3D%203%203%203%203%0A"},"mode":420},{"path":"/etc/systemd/system/serial-getty@ttyS0.service.d/override.conf","contents":{"compression":"","source":"data:;base64,W1NlcnZpY2VdCkV4ZWNTdGFydD0KRXhlY1N0YXJ0PS0vc2Jpbi9hZ2V0dHkgLS1ub2NsZWFyIC1hIHJvb3QgJUkgJFRFUk0K"},"mode":420}]},"systemd":{"units":[{"enabled":true,"name":"systemd-sysctl.service"}]}} diff --git a/ships/overlays/base.yaml b/ships/overlays/base.yaml deleted file mode 100644 index c0e7ad3..0000000 --- a/ships/overlays/base.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# base.yaml -variant: flatcar -version: 1.0.0 -storage: - files: - - path: /etc/hostname - mode: 0644 - contents: - inline: node - replace: true - - path: /etc/sysctl.d/20-quiet-console.conf - mode: 0644 - contents: - inline: | - kernel.printk = 3 3 3 3 - - path: /etc/systemd/system/serial-getty@ttyS0.service.d/override.conf - mode: 0644 - contents: - inline: | - [Service] - ExecStart= - ExecStart=-/sbin/agetty --noclear -a root %I $TERM -systemd: - units: - - name: systemd-sysctl.service - enabled: true diff --git a/ships/overlays/k3s.ign b/ships/overlays/k3s.ign deleted file mode 100644 index 8d17f49..0000000 --- a/ships/overlays/k3s.ign +++ /dev/null @@ -1 +0,0 @@ -{"ignition":{"version":"3.3.0"},"storage":{"files":[{"path":"/etc/hostname","contents":{"compression":"","source":"data:,k3s-node"},"mode":420},{"path":"/opt/setup-k3s.sh","contents":{"compression":"gzip","source":"data:;base64,H4sIAAAAAAAC/1yPT+vaQBCG7/spXrVge9gsJbaHlhyKeBClFwvtoSCbzcQs2T9hZ6wIfvgS66H8DgPDy8M8864WpvXJtJYHtcI+sdgQcKgZNy8Dok8+2gCX45QTJWHlriVAc3/EIDLxF2MuJNVYc+UzHth/P/34djyeD/XpvPu12zZLpvKHCn4rQOvOs20DNVIs9X58k86odxTaVy6BNdvUvHs/ZJZkI0Hv8YC7CnS3xhq6//jhBd+KF9LjtSWXU+8vOuaOms+bzRI8QCu1wraQFQLfY/BpZPS5gCx7KrDOEbOKY+cL9ARTchZTzedUSHNhGBJnik1uoGLGmuep7jaG/2HzTz7bflovT0XKHUEyWkIh293VbfCBsMDzWQm4kDwh/oougwPRhE/znkj9DQAA///hq7ECogEAAA=="},"mode":493}]},"systemd":{"units":[{"contents":"[Unit]\nDescription=K3s Setup\nAfter=network-online.target\nWants=network-online.target\n\n[Service]\nType=oneshot\nExecStart=/opt/setup-k3s.sh\nRemainAfterExit=yes\n\n[Install]\nWantedBy=multi-user.target\n","enabled":true,"name":"k3s-setup.service"}]}} diff --git a/ships/overlays/k3s.yaml b/ships/overlays/k3s.yaml deleted file mode 100644 index 3e59f0c..0000000 --- a/ships/overlays/k3s.yaml +++ /dev/null @@ -1,45 +0,0 @@ -variant: flatcar -version: 1.0.0 -storage: - files: - - path: /etc/hostname - mode: 0644 - contents: - inline: k3s-node - replace: true - - path: /opt/setup-k3s.sh - mode: 0755 - contents: - inline: | - #!/bin/bash - # Install K3s with minimal components - curl -sfL https://get.k3s.io | INSTALL_K3S_EXEC="server \ - --disable=traefik \ - --disable=servicelb \ - --tls-san=$(hostname -I | cut -d' ' -f1) \ - --write-kubeconfig-mode=644" sh - - - # Create symlinks for easier access - mkdir -p /root/.kube - ln -sf /etc/rancher/k3s/k3s.yaml /root/.kube/config - - # Wait for node to be ready - while ! kubectl get nodes; do sleep 5; done - -systemd: - units: - - name: k3s-setup.service - enabled: true - contents: | - [Unit] - Description=K3s Setup - After=network-online.target - Wants=network-online.target - - [Service] - Type=oneshot - ExecStart=/opt/setup-k3s.sh - RemainAfterExit=yes - - [Install] - WantedBy=multi-user.target diff --git a/ships/overlays/rancher.ign b/ships/overlays/rancher.ign deleted file mode 100644 index 708215d..0000000 --- a/ships/overlays/rancher.ign +++ /dev/null @@ -1 +0,0 @@ -{"ignition":{"version":"3.3.0"},"storage":{"files":[{"overwrite":true,"path":"/etc/hostname","contents":{"compression":"","source":"data:,rancher-server"},"mode":420},{"path":"/opt/setup-rancher.sh","contents":{"compression":"gzip","source":"data:;base64,H4sIAAAAAAAC/4xUUY/jNBB+96+Y7SIOHhzTq0CIU5CAK1y1ZUELiAdAlWNPGquObXkm7VW6H4+ctN324BAPcZzx9818M57J/Z1qXFCNpk7cw2tkNAy7LwmsI86uGdjFADpYIGRImjsSroU/QFqYqb3OyrtGZR1Mh1nlHb6cwV+vgDsMAuDht2+X3/30+P3qh3qmkM0NcFyqo+79TADcwzLQkBGeHpYvwREQ68xoBQAdibE37CcbFJ4kzHvMVXk5gwL9h1XtFvS/RO0WVJ5/SnpY0H8r2i1IoCcUAGi6CLPHCDSkFAsedkODOSDje1Vt4xBsCYRvHcNctE6Ie1i+LbSRZGJo3RbamKFD34/XMNrZC5xgz8k8Uwt24wKx9n5jXb44OJPeLNc/blaPv/z6zXq9eb16qlVMXPqgxP9dOx4Zxg/EmIEjNAgZtT2KQ+c8wt1ZBWyRIUSL9ApsBPKICT4v+4DF12oSAW+KetdCiAwpI2Hg0kV3YGLfl6zkfsrw469BWdyrMHh/uTAzZA+S2jV0zIm+UirrQ7V13A3NQJhNDIyBKxN7VbxMS6+LekUmu8Sktsiy2OUC3gF1IE/lPks0mFn2OugtZnFOT6fkjyDbS+Ap6BjpmnD7kdGjJiRl4yH4qK3az6v5olrcwMY2uy34v0mQ4cYOh4KWso25NjFYVzqpHi8HUrQgR9H1DUVKdj3GgesvPqPrnJ+mxhdj6TOmCNpaOI2DJNaNx+ean7KqTudjEaYplKbTmUlNjCt3Q7KaUVySMRk1IwTdIyVtEIxm9iineZqIp8Y9y3hPznlY4U8BIOUHPJ1Oyy+ri8QFVX/0yXkL78AMDNK+gBcg2/mnFZF3qXLxitfEyMRZp5810SFmW2vbuzAuV7CMyTujqZ6LvwMAAP//vckNzEsFAAA="},"mode":493}]},"systemd":{"units":[{"contents":"[Unit]\nDescription=Rancher Setup\nAfter=network-online.target\n# Generic condition to wait for either k3s or rke2\nAfter=k3s.service rke2-server.service\nRequires=network-online.target\n\n[Service]\nType=oneshot\nExecStart=/opt/setup-rancher.sh\nRemainAfterExit=yes\n\n[Install]\nWantedBy=multi-user.target\n","enabled":true,"name":"rancher-setup.service"}]}} diff --git a/ships/overlays/rancher.yaml b/ships/overlays/rancher.yaml deleted file mode 100644 index 15de4ce..0000000 --- a/ships/overlays/rancher.yaml +++ /dev/null @@ -1,78 +0,0 @@ -# rancher-overlay.yaml - Universal Rancher overlay -variant: flatcar -version: 1.0.0 -storage: - files: - - path: /etc/hostname - mode: 0644 - overwrite: true - contents: - inline: rancher-server - - path: /opt/setup-rancher.sh - mode: 0755 - contents: - inline: | - #!/bin/bash - # Detect k8s distribution and set paths - if [ -d "/var/lib/rancher/rke2" ]; then - KUBECONFIG="/etc/rancher/rke2/rke2.yaml" - # Ensure RKE2 is started - systemctl start rke2-server.service - elif [ -d "/var/lib/rancher/k3s" ]; then - KUBECONFIG="/etc/rancher/k3s/k3s.yaml" - # Ensure K3s is started - systemctl start k3s - else - echo "No supported kubernetes distribution found" - exit 1 - fi - - # Export kubeconfig for helm and kubectl - export KUBECONFIG - # Export helm_install_dir for helm - export HELM_INSTALL_DIR=/opt/bin - - # Wait for cluster to be ready - while ! kubectl get nodes; do sleep 5; done - - # Install Helm if not present - if ! command -v helm &> /dev/null; then - curl -sfL https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | sh - - fi - - # Install cert-manager - kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.13.3/cert-manager.yaml - - # Wait for cert-manager - kubectl -n cert-manager wait --for=condition=ready pod -l app=cert-manager --timeout=60s - - # Install Rancher - helm repo add rancher-stable https://releases.rancher.com/server-charts/stable - helm repo update - - kubectl create namespace cattle-system - helm install rancher rancher-stable/rancher \ - --namespace cattle-system \ - --set hostname=$(hostname | cut -d' ' -f1).sslip.io \ - --set bootstrapPassword=adminadmin \ - --set replicas=1 - -systemd: - units: - - name: rancher-setup.service - enabled: true - contents: | - [Unit] - Description=Rancher Setup - After=network-online.target - # Generic condition to wait for either k3s or rke2 - After=k3s.service rke2-server.service - Requires=network-online.target - - [Service] - Type=oneshot - ExecStart=/opt/setup-rancher.sh - RemainAfterExit=yes - - [Install] - WantedBy=multi-user.target diff --git a/ships/overlays/rke2.ign b/ships/overlays/rke2.ign deleted file mode 100644 index e3537e5..0000000 --- a/ships/overlays/rke2.ign +++ /dev/null @@ -1 +0,0 @@ -{"ignition":{"version":"3.3.0"},"storage":{"files":[{"path":"/etc/hostname","contents":{"compression":"","source":"data:,rke2-node"},"mode":420},{"path":"/etc/rancher/rke2/config.yaml","contents":{"compression":"","source":"data:;base64,dGxzLXNhbjoKICAtICQoaG9zdG5hbWUgLUkgfCBjdXQgLWQnICcgLWYxKQp3cml0ZS1rdWJlY29uZmlnLW1vZGU6ICIwNjQ0Igo="},"mode":420},{"path":"/opt/setup-rke2.sh","contents":{"compression":"gzip","source":"data:;base64,H4sIAAAAAAAC/4SQsWrDQAyG93uKv3i2BRm7lg6lnfoG54scH5bvgiQHDH34ckkLaZdMAknf9wt1TzTmQmO0OXR4K+ZRBJ/vr4eQNhX0Nn1gdj/bM9GJfdCFD0Ou+ILN6IPt5rwmF3CJozDavDfWC+vQSk4cQocX5egM21fJZTFMVbFsIzcyliOS5uQSpKA30CUqSR5JY0kzKzXp9c5fhDZTkpqi3Lcf4reU//RPdliXY1b0Z5DW6jQ06005gdjTX9/1EXtc5X6dUi1TPoXvAAAA///HYfmJVwEAAA=="},"mode":493}]},"systemd":{"units":[{"contents":"[Unit]\nDescription=RKE2 Setup\nAfter=network-online.target\nWants=network-online.target\n\n[Service]\nType=oneshot\nExecStart=/opt/setup-rke2.sh\nRemainAfterExit=yes\n\n[Install]\nWantedBy=multi-user.target\n","enabled":true,"name":"rke2-setup.service"}]}} diff --git a/ships/overlays/rke2.yaml b/ships/overlays/rke2.yaml deleted file mode 100644 index 7c0b0c6..0000000 --- a/ships/overlays/rke2.yaml +++ /dev/null @@ -1,49 +0,0 @@ -# rke2-base-config.yaml - Base Flatcar + RKE2 setup -variant: flatcar -version: 1.0.0 -storage: - files: - - path: /etc/hostname - mode: 0644 - contents: - inline: rke2-node - - path: /etc/rancher/rke2/config.yaml - mode: 0644 - contents: - inline: | - tls-san: - - $(hostname -I | cut -d' ' -f1) - write-kubeconfig-mode: "0644" - - path: /opt/setup-rke2.sh - mode: 0755 - contents: - inline: | - #!/bin/bash - # Install RKE2 - curl -sfL https://get.rke2.io | sh - - systemctl enable rke2-server.service - - # Create symlinks for kubectl and crictl - ln -s /var/lib/rancher/rke2/bin/kubectl /usr/local/bin/kubectl - ln -s /var/lib/rancher/rke2/bin/crictl /usr/local/bin/crictl - - mkdir -p /root/.kube - ln -sf /etc/rancher/rke2/rke2.yaml /root/.kube/config - -systemd: - units: - - name: rke2-setup.service - enabled: true - contents: | - [Unit] - Description=RKE2 Setup - After=network-online.target - Wants=network-online.target - - [Service] - Type=oneshot - ExecStart=/opt/setup-rke2.sh - RemainAfterExit=yes - - [Install] - WantedBy=multi-user.target diff --git a/ships/rke2.ign b/ships/rke2.ign deleted file mode 100644 index f5af63a..0000000 --- a/ships/rke2.ign +++ /dev/null @@ -1 +0,0 @@ -{"ignition":{"config":{"merge":[{"compression":"gzip","source":"data:;base64,H4sIAAAAAAAC/5yRwWvbMBjF7/szPsjNsRU5DKZdNlqy1h1ha9akyehBlr7aworkSZ8NJvh/H26yQ05jO4gn0OPpPX4nMJUzZLwDcYIeQ3y7Qp7mKYMxgUg+yAqn11djMYL4eYJWUg0CMiSV1T6Sk0eEBJR3hI7iZFb+2AaMlzhIIPouKAQBWpIUifMap/zjpGLJ2Zhc58YhKrKpzjib/+oM0lx5F73FVHn3+o+/NRgc2rQNxlEz42yW3844y68O+/y3PoRHfdEsYjDSziskGj4RDRuWRgy9UZjqzPcYgtH/U/VjKSO+Xya7xdoqd2j3fKtvmu3ysFv/0F9Wg75lD4/Ptd0v1mz/XLBvG9YrXrSl+VAf+Jbpu6b6ull0JV/Hw2413N8s6vu7oi/z71Xx1FTF6nH11LCH660vE+nzwKlj5wydSaOTpUUNgkKHCbyBFn+s8wujy3AYX8bx3e8AAAD//zEhu5dSAgAA"},{"compression":"gzip","source":"data:;base64,H4sIAAAAAAAC/5STT2/yOBDG7/spVr6WkkASVrDiQAOFAKUNgTeBwsE4k8QksVPbCYWK774KrPaPVl3p9cWWZjQ/PzPzfCEaM6ooZ6j3hSoQ8vZERtNo6ujaQFJxgWOooxHNQKLe+xcqsEpQD2mgiJZwqRjOATUQ4UwBU7JOJjwvBMg/y6EGkrwUBFAPhVjhXkOk0H5kPIQaktd3z2zr18a/iwvMSAJCq7M1wllE4+YZ59nPwX4/YAkdsxGOPy/zYJEcjnzm2APl2C7H4+4lHFvJwV/H83UaR/bTMQzceO67zLFJPPc3nzO3MEie6VuvJUJ/mm3a3XKbZ2zut6rteN1xbOe0OLq6E/P+t3J4oTQJqiweazFNmfyvhvhCi291TEzpDO7H1kzPlb4YuoPzuGuUs8qg7adl/lsWdzIW8bFlSjKxDlVM3clwYpgkTed4G74MUhZ1T6q1uqxyN3/VX4OlOXvYLp+mWiVMcBdJoC9YKw6P2uGlO55Gof081F/LB2e+6DhvyhKn/Nmwp/wyxNUw8u2HyvVSk7icBBbEL+1WNN2unl9+HJ6lcyHnjL56Vul6xWxg6Pb6w1ta042eXmaXoOgSK0qG21VafFBjTiJTwFrTlm9hRoNN66BvraHfObp6R9etODyugq7WGgWKWEEnXNPW6o0HVd0MTdMmmyif/jiNBoNB/5+z6BrXfb3NZ6kgD+t+l4yq+zb/PQX0vmZU7XdsCJIIWtS+6C9no/avXj25HRtECkSfgTpxkT5yllEGTYVFDGrHfMyU/C64Y+8eiIoS2O/Y6lxAnzOQCVc7NvoE4iksVP+/S7JjS8gxvYNHn1T1zyBv1RwmFc6y/Z0L4dO5n5eZoo+lBPEXFjUQMHzIIEQ9JUpooJtXe+jmvxuqKe//Qtf99frLHwEAAP//D4wVlBEEAAA="}]},"version":"3.3.0"}} diff --git a/ships/rke2.yaml b/ships/rke2.yaml deleted file mode 100644 index 4d23dfe..0000000 --- a/ships/rke2.yaml +++ /dev/null @@ -1,7 +0,0 @@ -variant: flatcar -version: 1.0.0 -ignition: - config: - merge: - - local: base.ign - - local: rke2.ign diff --git a/ships/start.sh b/ships/start.sh deleted file mode 100755 index 225c88d..0000000 --- a/ships/start.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash -TARGET=${1:-"k3s"} -CPU=${2:-2048} - -echo "Booting $TARGET" -qemu-system-x86_64 \ - -m $CPU \ - -cpu host \ - -enable-kvm \ - -smp $(nproc) \ - -drive if=pflash,format=raw,readonly=on,file=/usr/share/edk2/x64/OVMF_CODE.4m.fd \ - -drive if=pflash,format=raw,file=uefi/OVMF_VARS.4m.fd \ - -drive if=virtio,file=disks/$TARGET.qcow2,cache=none,aio=native \ - -fw_cfg name=opt/org.flatcar-linux/config,file=$TARGET.ign \ - -device virtio-net-pci,netdev=net0 \ - -netdev user,id=net0 - diff --git a/ships/uefi/OVMF_VARS.4m.fd b/ships/uefi/OVMF_VARS.4m.fd deleted file mode 100644 index 6681546..0000000 Binary files a/ships/uefi/OVMF_VARS.4m.fd and /dev/null differ diff --git a/shipyard/cloud-init.yml b/shipyard/cloud-init.yml new file mode 100644 index 0000000..199790a --- /dev/null +++ b/shipyard/cloud-init.yml @@ -0,0 +1,561 @@ +#cloud-config +users: + - name: fourlights + sudo: ALL=(ALL) NOPASSWD:ALL + groups: users,admin,sudo + shell: /bin/bash + lock_passwd: false + ssh_authorized_keys: + - ${ssh_public_key} + +packages: + - podman + - haproxy + - python3 + - python3-requests + - curl + - wget + - jq + - socat + - nmap + +package_update: true +package_upgrade: true + +write_files: + - path: /etc/sudoers.d/fourlights-haproxy + permissions: '0440' + content: | + fourlights ALL=(root) NOPASSWD: /bin/systemctl reload haproxy + fourlights ALL=(root) NOPASSWD: /bin/systemctl restart haproxy + fourlights ALL=(root) NOPASSWD: /bin/systemctl stop haproxy + fourlights ALL=(root) NOPASSWD: /bin/systemctl start haproxy + fourlights ALL=(root) NOPASSWD: /bin/chown -R haproxy\:haproxy /etc/ssl/haproxy/* + fourlights ALL=(root) NOPASSWD: /bin/chmod 600 /etc/ssl/haproxy/* + # HAProxy main configuration + - path: /etc/haproxy/haproxy.cfg + content: | + global + daemon + stats socket /var/run/haproxy/admin.sock mode 660 level admin expose-fd listeners + stats timeout 30s + user haproxy + group haproxy + log stdout local0 info + + defaults + mode http + timeout connect 5000ms + timeout client 50000ms + timeout server 50000ms + option httplog + log global + + # Stats interface + frontend stats + bind *:8404 + http-request use-service prometheus-exporter if { path /metrics } + stats enable + stats uri /stats + stats refresh 10s + + # HTTP Frontend + frontend main + bind *:80 + # ACL to detect ACME challenge requests + acl is_acme_challenge path_beg /.well-known/acme-challenge/ + # Route ACME challenges to the acme_challenge backend + use_backend acme_challenge if is_acme_challenge + default_backend no_match + + # HTTPS Frontend + frontend https_main + bind *:443 + default_backend no_match + + # ACME Challenge Backend + backend acme_challenge + mode http + server acme_server 127.0.0.1:8888 + + # Default backend + backend no_match + http-request return status 404 content-type text/plain string "No matching service found" + + - path: /etc/dataplaneapi/dataplaneapi.yml + content: | + dataplaneapi: + host: 0.0.0.0 + port: 5555 + user: + - insecure: true + password: admin + username: admin + + haproxy: + config_file: /etc/haproxy/haproxy.cfg + haproxy_bin: /usr/sbin/haproxy + reload: + reload_cmd: systemctl reload haproxy + restart_cmd: systemctl restart haproxy + stats_socket: /var/run/haproxy/admin.sock + + - path: /usr/local/bin/podman-haproxy-acme-sync-wrapper.sh + permissions: '0755' + content: | + #!/bin/bash + + set -e + + MAX_WAIT=60 + ELAPSED=0 + + # Wait for HAProxy + echo "Checking HAProxy status..." + while ! systemctl is-active --quiet haproxy; do + echo "Waiting for HAProxy to start..." + sleep 2 + ELAPSED=$($ELAPSED + 2) + [ $ELAPSED -ge $MAX_WAIT ] && { echo "ERROR: HAProxy timeout"; exit 1; } + done + echo "HAProxy is active" + + # Reset and wait for Data Plane API to actually respond + ELAPSED=0 + echo "Checking Data Plane API readiness..." + while true; do + HTTP_CODE=$(curl -s -w "%%{http_code}" -o /dev/null \ + --connect-timeout 5 \ + --max-time 10 \ + -u :admin \ + http://localhost:5555/v3/services/haproxy/configuration/version 2>/dev/null || echo "000") + + [ "$HTTP_CODE" = "200" ] && { echo "Data Plane API ready"; break; } + + echo "Waiting for Data Plane API... (HTTP $HTTP_CODE)" + sleep 2 + ELAPSED=$((ELAPSED + 2)) + + if [ $ELAPSED -ge $MAX_WAIT ]; then + echo "ERROR: Data Plane API not ready within $MAX_WAITs (HTTP $HTTP_CODE)" + journalctl -u dataplaneapi -n 50 --no-pager + exit 1 + fi + done + + sleep 2 + exec /usr/local/bin/podman-haproxy-acme-sync.py + + # Podman HAProxy ACME Sync Script + - path: /usr/local/bin/podman-haproxy-acme-sync.py + permissions: '0755' + content: | + #!/usr/bin/env python3 + + import json + import subprocess + import requests + import time + import os + import sys + + HAPROXY_API_BASE = "http://:admin@127.0.0.1:5555/v3" + CERT_DIR = "/home/fourlights/.acme.sh" + ACME_SCRIPT = "/usr/local/bin/acme.sh" + + class PodmanHAProxyACMESync: + def __init__(self): + self.ssl_services = set() + self.session = requests.Session() + self.session.headers.update({'Content-Type': 'application/json'}) + + def get_next_index(self, path): + response = self.session.get(f"{HAPROXY_API_BASE}/services/haproxy/configuration/{path}") + return len(response.json()) if response.status_code == 200 else None + + def get_dataplaneapi_version(self): + response = self.session.get(f"{HAPROXY_API_BASE}/services/haproxy/configuration/version") + return response.json() if response.status_code == 200 else None + + def get_container_labels(self, container_id): + try: + result = subprocess.run(['podman', 'inspect', container_id], + capture_output=True, text=True) + if result.returncode == 0: + data = json.loads(result.stdout) + return data[0]['Config']['Labels'] or {} + except Exception as e: + print(f"Error getting labels for {container_id}: {e}") + return {} + + def request_certificate(self, domain): + print(f"[CERT-REQUEST] About to request certificate for {domain}") + sys.stdout.flush() + + try: + cmd = [ + ACME_SCRIPT, + "--issue", + "-d", domain, + "--standalone", + "--httpport", "8888", + "--server", "letsencrypt", + "--listen-v4", + "--debug", "2" + ] + + # Log the command being executed + print(f"[CERT-REQUEST] Executing: {' '.join(cmd)}") + sys.stdout.flush() + + result = subprocess.run(cmd, capture_output=True, text=True) + + # Log both stdout and stderr for complete debugging + if result.stdout: + print(f"[CERT-STDOUT] {result.stdout}") + sys.stdout.flush() + if result.stderr: + print(f"[CERT-STDERR] {result.stderr}") + sys.stderr.flush() + + if result.returncode == 0: + print(f"[CERT-SUCCESS] Certificate obtained for {domain}") + sys.stdout.flush() + self.install_certificate(domain) + return True + else: + print(f"[CERT-FAILED] Failed to obtain certificate for {domain}") + print(f"[CERT-FAILED] Return code: {result.returncode}") + sys.stdout.flush() + return False + + except Exception as e: + print(f"[CERT-ERROR] Error requesting certificate: {e}") + sys.stdout.flush() + return False + + def install_certificate(self, domain): + cert_file = f"{CERT_DIR}/{domain}.pem" + + try: + acme_cert_dir = f"/home/fourlights/.acme.sh/{domain}_ecc" + + with open(cert_file, 'w') as outfile: + with open(f"{acme_cert_dir}/fullchain.cer") as cert: + outfile.write(cert.read()) + with open(f"{acme_cert_dir}/{domain}.key") as key: + outfile.write(key.read()) + try: + with open(f"{acme_cert_dir}/ca.cer") as ca: + outfile.write(ca.read()) + except FileNotFoundError: + pass + + os.chmod(cert_file, 0o600) + print(f"Certificate installed at {cert_file}") + + self.update_haproxy_ssl_bind(domain) + + except Exception as e: + print(f"Error installing certificate for {domain}: {e}") + + def update_haproxy_ssl_bind(self, domain): + print(f"Updating ssl bind for {domain}") + try: + ssl_bind_data = { + "address": "*", + "port": 443, + "ssl": True, + "ssl_certificate": f"{CERT_DIR}/{domain}.pem", + } + + response = self.session.post(f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/https_main/binds?version={self.get_dataplaneapi_version()}", + json=ssl_bind_data) + print(response.json()) + + if response.status_code in [200, 201]: + print(f"Updated HAProxy SSL bind for {domain}") + + except Exception as e: + print(f"Error updating HAProxy SSL bind: {e}") + + def setup_certificate_renewal(self, domain): + renewal_script = f"/etc/cron.d/acme-{domain.replace('.', '-')}" + + cron_content = f"""0 0 * * * root {ACME_SCRIPT} --renew -d {domain} --post-hook "systemctl reload haproxy" >/dev/null 2>&1 + """ + + with open(renewal_script, 'w') as f: + f.write(cron_content) + + print(f"Setup automatic renewal for {domain}") + + def update_haproxy_backend(self, service_name, host, port, action='add'): + backend_name = f"backend_{service_name}" + server_name = f"{service_name}_server" + + if action == 'add': + backend_data = { + "name": backend_name, + "mode": "http", + "balance": {"algorithm": "roundrobin"}, + } + backends = self.session.post(f"{HAPROXY_API_BASE}/services/haproxy/configuration/backends?version={self.get_dataplaneapi_version()}", + json=backend_data) + print(backends.json()) + + server_data = { + "name": server_name, + "address": host, + "port": int(port), + "check": "enabled", + } + tweak = self.session.post(f"{HAPROXY_API_BASE}/services/haproxy/configuration/backends/{backend_name}/servers?version={self.get_dataplaneapi_version()}", + json=server_data) + print(tweak.json()) + + elif action == 'remove': + self.session.delete(f"{HAPROXY_API_BASE}/services/haproxy/configuration/backends/{backend_name}/servers/{server_name}?version={self.get_dataplaneapi_version()}") + + def update_haproxy_frontend_rule(self, service_name, domain, ssl_enabled=False, action='add'): + if action == 'add': + if ssl_enabled and domain and domain not in self.ssl_services: + print(f"Setting up SSL for {domain}") + if self.request_certificate(domain): + self.setup_certificate_renewal(domain) + self.ssl_services.add(domain) + + acl_data = { + "acl_name": f"is_{service_name}", + "criterion": "hdr(host)", + "value": domain, + } + self.session.post(f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/main/acls/{self.get_next_index('frontends/main/acls')}?version={self.get_dataplaneapi_version()}", + json=acl_data) + + if ssl_enabled: + self.session.post(f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/https_main/acls/{self.get_next_index('frontends/https_main/acls')}?version={self.get_dataplaneapi_version()}", + json=acl_data) + + rule_data = { + "name": f"backend_{service_name}", + "cond": "if", + "cond_test": f"is_{service_name}", + } + self.session.post(f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/main/backend_switching_rules/{self.get_next_index('frontends/main/backend_switching_rules')}?version={self.get_dataplaneapi_version()}", + json=rule_data) + + if ssl_enabled: + self.session.post(f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/https_main/backend_switching_rules/{self.get_next_index('frontends/https_main/backend_switching_rules')}?version={self.get_dataplaneapi_version()}", + json=rule_data) + + redirect_rule = { + "type": "redirect", + "redirect_rule": { + "type": "scheme", + "value": "https", + "code": 301 + }, + "cond": "if", + "cond_test": f"is_{service_name}", + } + self.session.post(f"{HAPROXY_API_BASE}/services/haproxy/configuration/frontends/main/http_request_rules/{self.get_next_index('frontends/main/http_request_rules')}?version={self.get_dataplaneapi_version()}", + json=redirect_rule) + + def process_container_event(self, event): + # DIAGNOSTIC: Log raw event structure + print(f"[EVENT-DEBUG] Received event - Type: {event.get('Type', 'MISSING')}, Action: {event.get('Action', 'MISSING')}") + sys.stdout.flush() + + # DIAGNOSTIC: Check for Actor key + if 'Actor' not in event: + print(f"[EVENT-SKIP] Skipping event without 'Actor' key - Full event: {json.dumps(event)}") + sys.stdout.flush() + return + + # DIAGNOSTIC: Check for ID in Actor + if 'ID' not in event['Actor']: + print(f"[EVENT-SKIP] Skipping event without 'Actor.ID' - Actor content: {json.dumps(event['Actor'])}") + sys.stdout.flush() + return + + container_id = event['Actor']['ID'][:12] + action = event['Action'] + + print(f"[EVENT-PROCESS] Processing '{action}' event for container {container_id}") + sys.stdout.flush() + + labels = self.get_container_labels(container_id) + + # Dictionary to store discovered services + services = {} + + # First, check for namespaced labels (haproxy.{service_name}.enable) + for label_key, label_value in labels.items(): + if label_key.startswith('haproxy.') and label_key.endswith('.enable') and label_value.lower() == 'true': + # Extract service name from label key + parts = label_key.split('.') + if len(parts) == 3: # haproxy.{service_name}.enable + service_name = parts[1] + + # Extract properties for this service namespace + service_config = { + 'service_name': service_name, + 'host': labels.get(f'haproxy.{service_name}.host', '127.0.0.1'), + 'port': labels.get(f'haproxy.{service_name}.port', '8080'), + 'domain': labels.get(f'haproxy.{service_name}.domain', None), + 'ssl_enabled': labels.get(f'haproxy.{service_name}.tls', 'false').lower() == 'true' + } + services[service_name] = service_config + + # Backward compatibility: If no namespaced labels found, check for flat labels + if not services and 'haproxy.enable' in labels and labels['haproxy.enable'].lower() == 'true': + service_name = labels.get('haproxy.service', container_id) + services[service_name] = { + 'service_name': service_name, + 'host': labels.get('haproxy.host', '127.0.0.1'), + 'port': labels.get('haproxy.port', '8080'), + 'domain': labels.get('haproxy.domain', None), + 'ssl_enabled': labels.get('haproxy.tls', 'false').lower() == 'true' + } + + # Process each discovered service + for service_name, config in services.items(): + if action in ['start', 'restart']: + print(f"Adding service {config['service_name']} to HAProxy (SSL: {config['ssl_enabled']}, Domain: {config['domain']})") + sys.stdout.flush() + self.update_haproxy_backend(config['service_name'], config['host'], config['port'], 'add') + if config['domain']: + self.update_haproxy_frontend_rule(config['service_name'], config['domain'], config['ssl_enabled'], 'add') + + elif action in ['stop', 'remove', 'died']: + print(f"Removing service {config['service_name']} from HAProxy") + sys.stdout.flush() + self.update_haproxy_backend(config['service_name'], config['host'], config['port'], 'remove') + + def watch_events(self): + print("Starting Podman-HAProxy-ACME sync...") + + # Track last sync time + last_full_sync = 0 + SYNC_INTERVAL = 60 # Re-scan all containers every 60 seconds + + def do_full_sync(): + """Perform a full sync of all running containers""" + print("Performing full container sync...") + try: + result = subprocess.run(['podman', 'ps', '--format', 'json'], + capture_output=True, text=True) + if result.returncode == 0: + containers = json.loads(result.stdout) + for container in containers: + event = { + 'Type': 'container', + 'Action': 'start', + 'Actor': {'ID': container.get('Id', '')} + } + self.process_container_event(event) + print(f"Synced {len(containers)} containers") + except Exception as e: + print(f"Error during full sync: {e}") + + # Initial sync + do_full_sync() + last_full_sync = time.time() + + print("Watching for container events...") + + cmd = ['podman', 'events', '--format', 'json'] + process = subprocess.Popen(cmd, stdout=subprocess.PIPE, text=True) + + # Use select/poll for non-blocking read so we can do periodic syncs + import select + + while True: + # Check if it's time for periodic sync + if time.time() - last_full_sync >= SYNC_INTERVAL: + do_full_sync() + last_full_sync = time.time() + + # Check for events with timeout + ready, _, _ = select.select([process.stdout], [], [], 5) + + if ready: + line = process.stdout.readline() + if line: + try: + event = json.loads(line.strip()) + if event['Type'] == 'container': + self.process_container_event(event) + except json.JSONDecodeError as e: + print(f"[EVENT-ERROR] JSON decode error: {e} - Line: {line[:100]}") + sys.stdout.flush() + except KeyError as e: + print(f"[EVENT-ERROR] Missing key {e} in event: {json.dumps(event)}") + sys.stdout.flush() + except Exception as e: + print(f"[EVENT-ERROR] Error processing event: {e}") + print(f"[EVENT-ERROR] Event structure: {json.dumps(event)}") + sys.stdout.flush() + + if __name__ == "__main__": + os.makedirs(CERT_DIR, exist_ok=True) + sync = PodmanHAProxyACMESync() + sync.watch_events() + +runcmd: + # Create necessary directories + - mkdir -p /var/run/haproxy /etc/ssl/haproxy /etc/containers/systemd /etc/haproxy/dataplane /etc/dataplaneapi + - chown haproxy:haproxy /var/run/haproxy + + # Install Data Plane API + - cd /tmp && curl -LO https://github.com/haproxytech/dataplaneapi/releases/download/v3.2.4/dataplaneapi_3.2.4_linux_amd64.deb + - env DEBIAN_FRONTEND=noninteractive apt install -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" /tmp/dataplaneapi_3.2.4_linux_amd64.deb + - rm /tmp/dataplaneapi_3.2.4_linux_amd64.deb + + - mkdir -p /home/fourlights/.config/containers/systemd + - mkdir -p /home/fourlights/.config/systemd/user + - | + cat > /home/fourlights/.config/systemd/user/podman-haproxy-acme-sync.service << 'EOF' + [Unit] + Description=Podman HAProxy ACME Sync Service + After=network.target + + [Service] + Type=simple + Environment="XDG_RUNTIME_DIR=/run/user/1000" + Environment="DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus" + ExecStart=/usr/local/bin/podman-haproxy-acme-sync-wrapper.sh + StandardOutput=journal + StandardError=journal + Restart=always + RestartSec=10 + + [Install] + WantedBy=default.target + EOF + - chown -R fourlights:fourlights /home/fourlights + + # Install ACME.sh + - su - fourlights -c 'curl https://get.acme.sh | sh -s email=${acme_email}' + - ln -sf /home/fourlights/.acme.sh/acme.sh /usr/local/bin/acme.sh + + # Setup data directory and mount volume + - mkdir -p /opt/storage/data + - mkfs.ext4 -F /dev/sdb + - mount /dev/sdb /opt/storage/data + - echo '/dev/sdb /opt/storage/data ext4 defaults 0 2' >> /etc/fstab + - chown -R fourlights:fourlights /opt/storage/data + + # Enable Podman for user services + - loginctl enable-linger fourlights + - su - fourlights -c 'podman login ghcr.io -u ${ghcr_username} -p ${ghcr_token}' + + # Enable and start services + - systemctl daemon-reload + - systemctl enable --now haproxy + - systemctl enable --now dataplaneapi + - su - fourlights -c 'systemctl --user daemon-reload' + - su - fourlights -c 'systemctl --user enable --now podman-haproxy-acme-sync' + +final_message: "Server setup complete with HAProxy, Podman, and ACME sync configured" diff --git a/shuttles/.gitignore b/shuttles/.gitignore new file mode 100644 index 0000000..2171f23 --- /dev/null +++ b/shuttles/.gitignore @@ -0,0 +1,2 @@ +kubeconfig +*.lock.hcl diff --git a/shuttles/k3sup b/shuttles/k3sup index 937d761..6913a71 100755 Binary files a/shuttles/k3sup and b/shuttles/k3sup differ diff --git a/shuttles/kubeconfig b/shuttles/kubeconfig deleted file mode 100644 index 342348c..0000000 --- a/shuttles/kubeconfig +++ /dev/null @@ -1,19 +0,0 @@ -apiVersion: v1 -clusters: -- cluster: - certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJlRENDQVIyZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQWpNU0V3SHdZRFZRUUREQmhyTTNNdGMyVnkKZG1WeUxXTmhRREUzTXprM09ESTROelF3SGhjTk1qVXdNakUzTURrd01URTBXaGNOTXpVd01qRTFNRGt3TVRFMApXakFqTVNFd0h3WURWUVFEREJock0zTXRjMlZ5ZG1WeUxXTmhRREUzTXprM09ESTROelF3V1RBVEJnY3Foa2pPClBRSUJCZ2dxaGtqT1BRTUJCd05DQUFUWVNEV1Jwbmd6TE5ySGphTmhqdmM1SU82a2dibVpwaER4WVROTG11MjAKaWxaQnZLRlZRdW5kV3ZEQ1VrcGJNRjNsOTRuSmxaYVByK3lDSnJpVVh0UjZvMEl3UURBT0JnTlZIUThCQWY4RQpCQU1DQXFRd0R3WURWUjBUQVFIL0JBVXdBd0VCL3pBZEJnTlZIUTRFRmdRVVQ5bVZxTGcvSFBCUS91L3MzbHAwCjhJQ0RDc013Q2dZSUtvWkl6ajBFQXdJRFNRQXdSZ0loQUpjMkJkMjd0SzNZTFpwa01yOFNMSEIvbngzd1E1MU0KRnRaYnBNVzJudVNXQWlFQTMyUmcyVHZNQW9LYll5bnhySkk3U3g5eWszZHFsSWd5TW15d2M5d1JicmM9Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K - server: https://10.110.36.47:6443 - name: default -contexts: -- context: - cluster: default - user: default - name: default -current-context: default -kind: Config -preferences: {} -users: -- name: default - user: - client-certificate-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJrakNDQVRlZ0F3SUJBZ0lJZFh2OWlXRHR6SE13Q2dZSUtvWkl6ajBFQXdJd0l6RWhNQjhHQTFVRUF3d1kKYXpOekxXTnNhV1Z1ZEMxallVQXhOek01TnpneU9EYzBNQjRYRFRJMU1ESXhOekE1TURFeE5Gb1hEVEkyTURJeApOekE1TURFeE5Gb3dNREVYTUJVR0ExVUVDaE1PYzNsemRHVnRPbTFoYzNSbGNuTXhGVEFUQmdOVkJBTVRESE41CmMzUmxiVHBoWkcxcGJqQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJKNlNVZm5ESVJndVRDMjkKaWFjVTdTM3VPWkw1RERGZjJPQi9IakdTWEErQlRGaE5VOGtMSHBxZlZYeWVKbHNkd09mR1QvL2JQbENsWFYvdQowc0wyTW5halNEQkdNQTRHQTFVZER3RUIvd1FFQXdJRm9EQVRCZ05WSFNVRUREQUtCZ2dyQmdFRkJRY0RBakFmCkJnTlZIU01FR0RBV2dCUXdoZkJDTWRocVpXMW96WlEzZG84d1VYOEpCREFLQmdncWhrak9QUVFEQWdOSkFEQkcKQWlFQXczSFpKY1cwaGI3ZUwxSktvcTJ2cExFaFVxVncxRG1oTGJtcUNQTVdmcEFDSVFDRkhXcDhoTTNMdTROTgpGUnYxc2pkYS93VjdmSVpUcUsyZHVNOUNPQVc5emc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlCZHpDQ0FSMmdBd0lCQWdJQkFEQUtCZ2dxaGtqT1BRUURBakFqTVNFd0h3WURWUVFEREJock0zTXRZMnhwClpXNTBMV05oUURFM016azNPREk0TnpRd0hoY05NalV3TWpFM01Ea3dNVEUwV2hjTk16VXdNakUxTURrd01URTAKV2pBak1TRXdId1lEVlFRRERCaHJNM010WTJ4cFpXNTBMV05oUURFM016azNPREk0TnpRd1dUQVRCZ2NxaGtqTwpQUUlCQmdncWhrak9QUU1CQndOQ0FBUjJCcXE5cVhESmZGeVQ1VVpEY3Z6SHVPdDg2TEZ5WTlDb1oxL0xxeldGClZMdHVQYUFXc3BUdUtZckJieTRZRlBQQlQ1M0RkS1F5cjhhWG5HUDRWenlxbzBJd1FEQU9CZ05WSFE4QkFmOEUKQkFNQ0FxUXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QWRCZ05WSFE0RUZnUVVNSVh3UWpIWWFtVnRhTTJVTjNhUApNRkYvQ1FRd0NnWUlLb1pJemowRUF3SURTQUF3UlFJZ1lmS01YQ3lFelBmM05wN3paLzVYTnFxeTdjTDBpMXBWCkpjZzNzYmtMbXB3Q0lRRDlzYVpmekswRlUrNWljWFpLZmUyVFg0WW5sNS96aFVGR2FHb2RTb1ovUXc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg== - client-key-data: LS0tLS1CRUdJTiBFQyBQUklWQVRFIEtFWS0tLS0tCk1IY0NBUUVFSUtlQVpqUzhNM1ZBd2l6cWo0UDN6RURuQmNaYldrcDJPekt2VlNpUSs0azRvQW9HQ0NxR1NNNDkKQXdFSG9VUURRZ0FFbnBKUitjTWhHQzVNTGIySnB4VHRMZTQ1a3ZrTU1WL1k0SDhlTVpKY0Q0Rk1XRTFUeVFzZQptcDlWZko0bVd4M0E1OFpQLzlzK1VLVmRYKzdTd3ZZeWRnPT0KLS0tLS1FTkQgRUMgUFJJVkFURSBLRVktLS0tLQo= diff --git a/shuttles/setup-cluster.ts b/shuttles/setup-cluster.ts index 69c4479..0d3114b 100755 --- a/shuttles/setup-cluster.ts +++ b/shuttles/setup-cluster.ts @@ -1,149 +1,413 @@ #!/usr/bin/env -S deno run --allow-run --allow-read --allow-write -import { Command } from "https://deno.land/x/cliffy@v1.0.0-rc.4/command/mod.ts"; +// Note: TypeScript errors related to Deno imports and namespace can be safely ignored +// These are only relevant when running the script with the Deno runtime +import { Command, EnumType } from "https://deno.land/x/cliffy@v1.0.0-rc.4/command/mod.ts"; import { delay } from "https://deno.land/std/async/mod.ts"; +import { exists } from "https://deno.land/std/fs/mod.ts"; -const alpineImage = "alpine/edge/cloud" -const alpineConfig = ['--profile', 'cloud-init-alpine'] -const archImage = "archlinux/current/cloud" -const archConfig = ['--profile', 'cloud-init-arch'] +// Configuration constants +const alpineImage = "alpine/edge/cloud"; +const alpineConfig = ['--profile', 'cloud-init-alpine']; +const archImage = "archlinux/current/cloud"; +const archConfig = ['--profile', 'cloud-init-arch']; +const Provisioner = new EnumType(["incus", "qemu"]) -const image = archImage -const config = archConfig +const getIp = (i: number) => `192.168.100.${9 + i}`; -const findIP4 = (name: string, nodeList: any) => { - const ip4 = nodeList?.find((n) => n.name === name)?.state?.network?.eth0?.addresses?.find((n) => n.family === 'inet')?.address; - return ip4; +const image = archImage; +const config = archConfig; + +// Enhanced logging function with timestamps and log levels +const log = { + debug: (message: string) => console.log(`[${new Date().toISOString()}] [DEBUG] ${message}`), + info: (message: string) => console.log(`[${new Date().toISOString()}] [INFO] ${message}`), + success: (message: string) => console.log(`[${new Date().toISOString()}] [SUCCESS] ✅ ${message}`), + warning: (message: string) => console.log(`[${new Date().toISOString()}] [WARNING] ⚠️ ${message}`), + error: (message: string) => console.error(`[${new Date().toISOString()}] [ERROR] ❌ ${message}`), + skip: (message: string) => console.log(`[${new Date().toISOString()}] [SKIP] ⏩ ${message}`), +}; + +// Helper function to execute commands with proper error handling +async function executeCommand( + cmdArray: string[], + description: string, + options: { + stdout?: "piped" | "inherit" | "null", + stderr?: "piped" | "inherit" | "null", + throwOnError?: boolean + } = {stdout: 'piped', stderr: 'piped', throwOnError: true} +): Promise<{ success: boolean; output?: string; error?: string }> { + const {stdout = "piped", stderr = "piped", throwOnError = true} = options; + + log.debug(`Executing: ${cmdArray.join(" ")}`); + + try { + // Use Deno.Command API which is the modern replacement for Deno.run + const command = new Deno.Command(cmdArray[0], { + args: cmdArray.slice(1), + stdout: stdout === "piped" ? "piped" : stdout === "inherit" ? "inherit" : "null", + stderr: stderr === "piped" ? "piped" : stderr === "inherit" ? "inherit" : "null", + }); + + const {code, stdout: stdoutOutput, stderr: stderrOutput} = await command.output(); + + const stdoutText = stdout === "piped" ? new TextDecoder().decode(stdoutOutput).trim() : ""; + const stderrText = stderr === "piped" ? new TextDecoder().decode(stderrOutput).trim() : ""; + + if (code !== 0) { + log.error(`Failed to ${description}: ${stderrText || "Unknown error"}`); + if (throwOnError) { + throw new Error(`Command failed: ${cmdArray.join(" ")}\n${stderrText}`); + } + } + + return { + success: code === 0, + output: stdoutText, + error: stderrText + }; + } catch (error) { + const errorMessage = error instanceof Error ? error.message : String(error); + log.error(`Exception while ${description}: ${errorMessage}`); + if (throwOnError) { + throw error; + } + return {success: false, error: errorMessage}; + } } -const setupCluster = async (numMasters: number) => { - const hostname = await Deno.run({ - cmd: ["hostnamectl", "hostname"], - stdout: "piped", - }).output().then((output) => new TextDecoder().decode(output).trim()); +// Check if VM is ready for SSH connections +async function isVmReadyForSsh(ip: string, user: string, sshKeyPath: string, maxAttempts = 30): Promise { + log.info(`Checking if VM at ${ip} is ready for SSH connections...`); - const user = await Deno.run({ - cmd: ["whoami"], - stdout: "piped", - }).output().then((output) => new TextDecoder().decode(output).trim()); + for (let attempt = 1; attempt <= maxAttempts; attempt++) { + log.debug(`SSH readiness check attempt ${attempt}/${maxAttempts}`); - const sshKeyPubFileName = `/home/${user}/.ssh/nl.fourlights.${hostname}.pub`; - const sshKeyPrivateFileName = `/home/${user}/.ssh/nl.fourlights.${hostname}`; + const {success} = await executeCommand( + ["ssh", "-o", "StrictHostKeyChecking=no", "-o", "ConnectTimeout=5", `${user}@${ip}`, "-i", sshKeyPath, "echo", "ready"], + `check SSH connectivity to ${ip}`, + {throwOnError: false} + ); - // Step 1: Create Low-Resource Profile (if not exists) - const profileExists = await Deno.run({ - cmd: ["incus", "profile", "show", "low-resource"], - stdout: "null", - stderr: "null", - }).status().then((status) => status.success); + if (success) { + log.success(`VM at ${ip} is ready for SSH connections`); + return true; + } - if (!profileExists) { - await Deno.run({ - cmd: ["incus", "profile", "create", "low-resource"], - }).status(); - await Deno.run({ - cmd: ["incus", "profile", "set", "low-resource", "limits.cpu=1", "limits.memory=512MB"], - }).status(); - await Deno.run({ - cmd: ["incus", "profile", "device", "add", "low-resource", "root", "disk", "pool=default", "path=/"], - }).status(); - await Deno.run({ - cmd: ["incus", "profile", "device", "add", "low-resource", "eth-0", "nic", "network=incusbr0"], - }).status(); - console.log("✅ Low-resource profile created."); - } else { - console.log("⏩ Low-resource profile already exists."); + log.debug(`VM at ${ip} not ready yet, waiting...`); + await delay(2000); // Wait 2 seconds between attempts } + log.error(`VM at ${ip} is not ready for SSH connections after ${maxAttempts} attempts`); + return false; +} - const sshKey = await Deno.readTextFile(sshKeyPubFileName); +// Check if VM is running +async function isVmRunning(vmName: string): Promise { + const {success, output} = await executeCommand( + ["incus", "list", vmName, "--format", "json"], + `check if VM ${vmName} is running`, + {throwOnError: false} + ); - // Step 3: Launch VMs (if not already running) - for (let i = 1; i <= numMasters; i++) { - const vmName = `k3s-master${i}`; - const vmExists = await Deno.run({ - cmd: ["incus", "list", vmName, "--format", "csv"], - stdout: "piped", - }).output().then((output) => new TextDecoder().decode(output).trim() !== ""); + if (!success || !output) { + return false; + } - if (!vmExists) { - await Deno.run({ - cmd: ["incus", "launch", `images:${image}`, vmName, "--profile", "low-resource", "-c", "user.timezone=\"Europe/Amsterdam\"", "-c", `user.ssh_key=\"${sshKey}\"`, ...config], - }).status(); - console.log(`✅ VM ${vmName} launched.`); - } else { - console.log(`⏩ VM ${vmName} already exists.`); + try { + const vmInfo = JSON.parse(output); + return vmInfo.length > 0 && vmInfo[0].status === "Running"; + } catch (error) { + const errorMessage = error instanceof Error ? error.message : String(error); + log.error(`Failed to parse VM status: ${errorMessage}`); + return false; + } +} + +// Cleanup function to handle failures +async function cleanup(vmNames: string[], shouldRemove = false): Promise { + log.info("Starting cleanup process..."); + + return; + + for (const vmName of vmNames) { + // Check if VM exists + const {success, output} = await executeCommand( + ["incus", "list", vmName, "--format", "csv"], + `check if VM ${vmName} exists`, + {throwOnError: false} + ); + + if (success && output) { + // Stop VM if it's running + const isRunning = await isVmRunning(vmName); + if (isRunning) { + log.info(`Stopping VM ${vmName}...`); + await executeCommand( + ["incus", "stop", vmName, "--force"], + `stop VM ${vmName}`, + {throwOnError: false} + ); + } + + // Remove VM if requested + if (shouldRemove) { + log.info(`Removing VM ${vmName}...`); + await executeCommand( + ["incus", "delete", vmName], + `remove VM ${vmName}`, + {throwOnError: false} + ); + } } } - // Step 4: Install k3sup (if not installed) - const k3supInstalled = await Deno.run({ - cmd: ["which", "k3sup"], - stdout: "null", - stderr: "null", - }).status().then((status) => status.success); + log.success("Cleanup completed"); +} - if (!k3supInstalled) { - await Deno.run({ - cmd: ["sh", "-c", "curl -sLS https://get.k3sup.dev | sh"], - }).status(); - console.log("✅ k3sup installed."); - } else { - console.log("⏩ k3sup already installed."); - } +const bootstrapIncus = async () => { + // Step 1: Create Low-Resource Profile (if not exists) + const {success: profileExists} = await executeCommand( + ["incus", "profile", "show", "low-resource"], + "check if low-resource profile exists", + {throwOnError: false} + ); - // Step 5: Bootstrap First Master Node (if not already bootstrapped) - let firstMasterIP; - let nodes; - while (firstMasterIP === undefined) { - nodes = await Deno.run({ - cmd: ["incus", "list", "--format", "json"], - stdout: "piped", - }).output().then((output) => JSON.parse(new TextDecoder().decode(output))); - firstMasterIP = findIP4('k3s-master1', nodes) - await delay(1000) - } - - const kubeconfigExists = await Deno.stat("./kubeconfig").then(() => true).catch(() => false); - - if (!kubeconfigExists) { - await Deno.run({ - cmd: ["k3sup", "install", "--ip", firstMasterIP, "--user", "picard", "--cluster", "--ssh-key", sshKeyPrivateFileName], - }).status(); - console.log("✅ First master node bootstrapped."); - } else { - console.log("⏩ First master node already bootstrapped."); - } - - // Step 6: Join Additional Master Nodes (if not already joined) - for (let i = 2; i <= numMasters; i++) { - const vmName = `k3s-master${i}`; - const vmIP = findIP4(vmName, nodes) - - const joined = await Deno.run({ - cmd: ["kubectl", "get", "nodes", vmName], - stdout: "null", - stderr: "null", - }).status().then((status) => status.success); - - if (!joined) { - await Deno.run({ - cmd: ["k3sup", "join", "--ip", vmIP, "--server-ip", firstMasterIP, "--user", "picard", "--ssh-key", sshKeyPrivateFileName], - }).status(); - console.log(`✅ VM ${vmName} joined the cluster.`); + if (!profileExists) { + log.info("Creating low-resource profile..."); + await executeCommand( + ["incus", "profile", "create", "low-resource"], + "create low-resource profile" + ); + await executeCommand( + ["incus", "profile", "set", "low-resource", "limits.cpu=1", "limits.memory=512MB"], + "set low-resource profile limits" + ); + await executeCommand( + ["incus", "profile", "device", "add", "low-resource", "root", "disk", "pool=default", "path=/"], + "add root disk to low-resource profile" + ); + // await executeCommand( + // ["incus", "profile", "device", "add", "low-resource", "eth-0", "nic", "network=incusbr0"], + // "add network interface to low-resource profile" + // ); + log.success("Low-resource profile created"); } else { - console.log(`⏩ VM ${vmName} already joined the cluster.`); + log.skip("Low-resource profile already exists"); } - } +} - console.log("🚀 HA k3s cluster setup complete!"); +const makeSureVMExists = async (provisioner: "incus" | "qemu", idx: number, vmName: string, sshKey: string) => { + switch (provisioner) { + case "incus": + return makeSureVMExistsIncus(idx, vmName, sshKey); + case "qemu": + return makeSureVMExistsQEMU(idx, vmName, sshKey); + default: + throw new Error(`Unknown VM method: ${method}`); + } +} + +const makeSureVMExistsIncus = async (idx: number, vmName: string, sshKey: string) => { + const {success: vmExists, output: vmOutput} = await executeCommand( + ["incus", "list", vmName, "--format", "csv"], + `check if VM ${vmName} exists`, + {throwOnError: false} + ); + + if (!vmExists || !vmOutput) { + log.info(`Creating VM ${vmName}...`); + await executeCommand( + ["incus", "init", `images:${image}`, vmName, "--profile", "low-resource", "-c", "user.timezone=\"Europe/Amsterdam\"", "-c", `user.ssh_key=\"${sshKey}\"`, ...config], + `initialize VM ${vmName}` + ); + + await executeCommand( + ["incus", "config", 'device', 'add', vmName, 'eth0', 'nic', 'nictype=bridged', 'parent=incusbr0', `ipv4.address=${getIp(idx)}`], + `configure network for VM ${vmName}` + ); + + await executeCommand( + ["incus", "start", vmName], + `start VM ${vmName}` + ); + + log.success(`VM ${vmName} started`); + return true + } + + // Check if VM is running, if not, start it + const isRunning = await isVmRunning(vmName); + if (!isRunning) { + log.info(`Starting existing VM ${vmName}...`); + await executeCommand( + ["incus", "start", vmName], + `start VM ${vmName}` + ); + } + log.skip(`VM ${vmName} already exists`); + return false +} + +const makeSureVMExistsQEMU = async (idx: number, vmName: string, sshKey: string) => { + return false +} + +const setupCluster = async (provisioner: Provisioner, numMasters: number, forceCleanup = false) => { + log.info(`Starting setup of k3s cluster with ${numMasters} master nodes`); + + const createdVMs: string[] = []; + + try { + // Get hostname and user + const {output: hostname} = await executeCommand( + ["hostnamectl", "hostname"], + "get hostname" + ); + + const {output: user} = await executeCommand( + ["whoami"], + "get current user" + ); + + const sshKeyPubFileName = `/home/${user}/.ssh/nl.fourlights.${hostname}.pub`; + const sshKeyPrivateFileName = `/home/${user}/.ssh/nl.fourlights.${hostname}`; + + // Check if SSH keys exist + if (!await exists(sshKeyPubFileName) || !await exists(sshKeyPrivateFileName)) { + log.error(`Required SSH keys not found: ${sshKeyPubFileName} or ${sshKeyPrivateFileName}`); + throw new Error("SSH keys not found"); + } + + // Bootstrap our provisioner + if (provisioner === "incus") await bootstrapIncus(); + + // Read SSH key + const sshKey = await Deno.readTextFile(sshKeyPubFileName); + + // Step 3: Launch VMs (if not already running) + for (let i = 1; i <= numMasters; i++) { + const vmName = `shuttle-${i}`; + + const created = await makeSureVMExists(provisioner, i, vmName, sshKey); + if (created) createdVMs.push(vmName); + } + + // Step 4: Install k3sup (if not installed) + const {success: k3supInstalled} = await executeCommand( + ["which", "k3sup"], + "check if k3sup is installed", + {throwOnError: false} + ); + + if (!k3supInstalled) { + log.info("Installing k3sup..."); + await executeCommand( + ["sh", "-c", "curl -sLS https://get.k3sup.dev | sh"], + "install k3sup" + ); + await executeCommand(["chmod", "+x", "./k3sup"], "make executable"); + log.success("k3sup installed"); + } else { + log.skip("k3sup already installed"); + } + + // Step 5: Wait for VMs to be ready + const firstMasterIP = getIp(1); + log.info(`Waiting for first master node (${firstMasterIP}) to be ready...`); + + const vmReady = await isVmReadyForSsh(firstMasterIP, "picard", sshKeyPrivateFileName); + if (!vmReady) { + throw new Error(`First master node at ${firstMasterIP} is not ready for SSH connections`); + } + + // Check if kubeconfig exists + const kubeconfigExists = await exists("./kubeconfig"); + + if (!kubeconfigExists) { + log.info("Bootstrapping first master node..."); + await executeCommand( + ["./k3sup", "install", "--host", firstMasterIP, "--user", "picard", "--cluster", "--ssh-key", sshKeyPrivateFileName], + "bootstrap first master node", + {throwOnError: false} + ); + log.success("First master node bootstrapped"); + } else { + log.skip("First master node already bootstrapped"); + } + + // Step 6: Join Additional Master Nodes (if not already joined) + for (let i = 2; i <= numMasters; i++) { + const vmName = `shuttle-${i}`; + const vmIP = getIp(i); + + // Wait for VM to be ready + log.info(`Waiting for ${vmName} (${vmIP}) to be ready...`); + const nodeReady = await isVmReadyForSsh(vmIP, "picard", sshKeyPrivateFileName); + if (!nodeReady) { + log.warning(`VM ${vmName} is not ready for SSH connections, skipping join operation`); + continue; + } + + const {success: joined} = await executeCommand( + ["kubectl", "--kubeconfig=./kubeconfig", "get", "nodes", vmName], + `check if ${vmName} has joined the cluster`, + {throwOnError: false} + ); + + if (!joined) { + log.info(`Joining ${vmName} to the cluster...`); + await executeCommand( + ["./k3sup", "join", "--server", "--host", vmIP, "--server-ip", firstMasterIP, "--user", "picard", "--ssh-key", sshKeyPrivateFileName], + `join ${vmName} to the cluster`, + {throwOnError: false} + ); + log.success(`VM ${vmName} joined the cluster`); + } else { + log.skip(`VM ${vmName} already joined the cluster`); + } + } + + log.success("HA k3s cluster setup complete! 🚀"); + + // Verify cluster status + log.info("Verifying cluster status..."); + const {success: clusterVerified, output: nodesOutput} = await executeCommand( + ["kubectl", "--kubeconfig=./kubeconfig", "get", "nodes", "-o", "wide"], + "verify cluster nodes", + {throwOnError: false} + ); + + if (clusterVerified) { + log.info("Cluster nodes:"); + console.log(nodesOutput); + } else { + log.warning("Could not verify cluster status"); + } + + } catch (error) { + const errorMessage = error instanceof Error ? error.message : String(error); + log.error(`Failed to set up cluster: ${errorMessage}`); + throw error + + if (createdVMs.length > 0) { + log.warning("An error occurred during setup. Cleaning up created resources..."); + await cleanup(createdVMs, forceCleanup); + } + + Deno.exit(1); + } }; await new Command() .name("setup-k3s-cluster") .version("0.1.0") + .type("provisioner", Provisioner) .description("Automate the setup of an HA k3s cluster using incus and k3sup") + .option("-p, --provisioner ", "Provisioner of VMs", {default: "incus"}) .option("-m, --masters ", "Number of master nodes", {default: 3}) - .action(({masters}) => setupCluster(masters)) + .option("-c, --cleanup", "Force cleanup of VMs if setup fails", {default: false}) + .action(({provisioner, masters, cleanup}) => setupCluster(provisioner, masters, cleanup)) .parse(Deno.args); diff --git a/shuttles/shuttles-network.xml b/shuttles/shuttles-network.xml new file mode 100644 index 0000000..48aa354 --- /dev/null +++ b/shuttles/shuttles-network.xml @@ -0,0 +1,12 @@ + + shuttles + + + + + + + + + + diff --git a/shuttles/terraform/.terraform.lock.hcl b/shuttles/terraform/.terraform.lock.hcl deleted file mode 100644 index 8c5ae0a..0000000 --- a/shuttles/terraform/.terraform.lock.hcl +++ /dev/null @@ -1,77 +0,0 @@ -# This file is maintained automatically by "terraform init". -# Manual edits may be lost in future updates. - -provider "registry.terraform.io/argoproj-labs/argocd" { - version = "7.0.2" - constraints = "7.0.2" - hashes = [ - "h1:4lbS20EczuzhSNSOjp1mJoe2YbcXniBTzxmJHd+rjIE=", - "zh:083686eaeaa7b51ebaac42c3c7b01a15f020a735dc8dbe50aa6a6bff16888943", - "zh:16b1b813f33874844fadc747c57ae99cf8f119c119b3776a105c154fc4a54488", - "zh:25ed8dca5da5faa52392c7938c61dd9a83bc6388ad771062cecfc15c44bc3d8e", - "zh:3907351bbcb6a0c1c1abeb33dac5d70f798b0ecc05559f2ede40ae84b9079983", - "zh:3a737237f03b9b28de26b1fe9d20bcfa53f580489fc28d774396e5de38906fd3", - "zh:64421961cc342cec8280899352444a96ad1b09144fa933dc3a0dfb9bbae809a9", - "zh:9702119789cc42b98dc9d1a8d7666b608a964cf1355e3cf500b82bed1898f2fd", - "zh:9cc9ad41a6ce25aac40b9dd2291fc4d90a223add197155decdca7d2d82fc60f1", - "zh:a239381a36bf6041d6520c8db83fb281fd2417f4540c895e07db052dd108a72f", - "zh:ecca66064fff07719eec2ef35cd62d1cb65cf4a11f9ce96f3a9b9b7c78d614a5", - ] -} - -provider "registry.terraform.io/hashicorp/helm" { - version = "2.17.0" - hashes = [ - "h1:K5FEjxvDnxb1JF1kG1xr8J3pNGxoaR3Z0IBG9Csm/Is=", - "zh:06fb4e9932f0afc1904d2279e6e99353c2ddac0d765305ce90519af410706bd4", - "zh:104eccfc781fc868da3c7fec4385ad14ed183eb985c96331a1a937ac79c2d1a7", - "zh:129345c82359837bb3f0070ce4891ec232697052f7d5ccf61d43d818912cf5f3", - "zh:3956187ec239f4045975b35e8c30741f701aa494c386aaa04ebabffe7749f81c", - "zh:66a9686d92a6b3ec43de3ca3fde60ef3d89fb76259ed3313ca4eb9bb8c13b7dd", - "zh:88644260090aa621e7e8083585c468c8dd5e09a3c01a432fb05da5c4623af940", - "zh:a248f650d174a883b32c5b94f9e725f4057e623b00f171936dcdcc840fad0b3e", - "zh:aa498c1f1ab93be5c8fbf6d48af51dc6ef0f10b2ea88d67bcb9f02d1d80d3930", - "zh:bf01e0f2ec2468c53596e027d376532a2d30feb72b0b5b810334d043109ae32f", - "zh:c46fa84cc8388e5ca87eb575a534ebcf68819c5a5724142998b487cb11246654", - "zh:d0c0f15ffc115c0965cbfe5c81f18c2e114113e7a1e6829f6bfd879ce5744fbb", - "zh:f569b65999264a9416862bca5cd2a6177d94ccb0424f3a4ef424428912b9cb3c", - ] -} - -provider "registry.terraform.io/hashicorp/kubernetes" { - version = "2.35.1" - hashes = [ - "h1:Av0Wk8g2XjY2oap7nyWNHEgfCRfphdJvrkqJjEM2ZKM=", - "zh:12212ca5ae47823ce14bfafb909eeb6861faf1e2435fb2fc4a8b334b3544b5f5", - "zh:3f49b3d77182df06b225ab266667de69681c2e75d296867eb2cf06a8f8db768c", - "zh:40832494d19f8a2b3cd0c18b80294d0b23ef6b82f6f6897b5fe00248a9997460", - "zh:739a5ddea61a77925ee7006a29c8717377a2e9d0a79a0bbd98738d92eec12c0d", - "zh:a02b472021753627c5c39447a56d125a32214c29ff9108fc499f2dcdf4f1cc4f", - "zh:b78865b3867065aa266d6758c9601a2756741478f5735a838c20d633d65e085b", - "zh:d362e87464683f5632790e66920ea803adb54c2bc0cb24b6fd9a314d2b1efffd", - "zh:d98206fe88c2c9a52b8d2d0cb2c877c812a4a51d19f9d8428e63cbd5fd8a304d", - "zh:dfa320946b1ce3f3615c42b3447a28dc9f604c06d8b9a6fe289855ab2ade4d11", - "zh:f569b65999264a9416862bca5cd2a6177d94ccb0424f3a4ef424428912b9cb3c", - "zh:fc1debd2e695b5222d2ccc8b24dab65baba4ee2418ecce944e64d42e79474cb5", - "zh:fdaf960443720a238c09e519aeb30faf74f027ac5d1e0a309c3b326888e031d7", - ] -} - -provider "registry.terraform.io/hashicorp/random" { - version = "3.6.3" - hashes = [ - "h1:Fnaec9vA8sZ8BXVlN3Xn9Jz3zghSETIKg7ch8oXhxno=", - "zh:04ceb65210251339f07cd4611885d242cd4d0c7306e86dda9785396807c00451", - "zh:448f56199f3e99ff75d5c0afacae867ee795e4dfda6cb5f8e3b2a72ec3583dd8", - "zh:4b4c11ccfba7319e901df2dac836b1ae8f12185e37249e8d870ee10bb87a13fe", - "zh:4fa45c44c0de582c2edb8a2e054f55124520c16a39b2dfc0355929063b6395b1", - "zh:588508280501a06259e023b0695f6a18149a3816d259655c424d068982cbdd36", - "zh:737c4d99a87d2a4d1ac0a54a73d2cb62974ccb2edbd234f333abd079a32ebc9e", - "zh:78d5eefdd9e494defcb3c68d282b8f96630502cac21d1ea161f53cfe9bb483b3", - "zh:a357ab512e5ebc6d1fda1382503109766e21bbfdfaa9ccda43d313c122069b30", - "zh:c51bfb15e7d52cc1a2eaec2a903ac2aff15d162c172b1b4c17675190e8147615", - "zh:e0951ee6fa9df90433728b96381fb867e3db98f66f735e0c3e24f8f16903f0ad", - "zh:e3cdcb4e73740621dabd82ee6a37d6cfce7fee2a03d8074df65086760f5cf556", - "zh:eff58323099f1bd9a0bec7cb04f717e7f1b2774c7d612bf7581797e1622613a0", - ] -} diff --git a/shuttles/terraform/main.tf b/shuttles/terraform/main.tf index 957d491..c4fa7ae 100644 --- a/shuttles/terraform/main.tf +++ b/shuttles/terraform/main.tf @@ -1,9 +1,80 @@ locals { tld = "fourlights.dev" - cluster_dns = "venus.${local.tld}" - bridge_dns = "bridge.${local.cluster_dns}" + cluster_dns = "neptune.${local.tld}" is_installed = true - node_count = 3 + node_count = 1 +} + +resource "kubernetes_manifest" "traefik-helm-config" { + manifest = { + apiVersion = "helm.cattle.io/v1" + kind = "HelmChartConfig" + metadata = { + name = "traefik" + namespace = "kube-system" + } + spec = { + valuesContent = < + +``` +Terraform version: +Provider version: +Kubernetes version: +``` + +### Affected Resource(s) + +- helm_release +- helm_repository + + + +### Terraform Configuration Files +```hcl +# Copy-paste your Terraform configurations here - for large Terraform configs, +# please use a service like Dropbox and share a link to the ZIP file. For +# security, you can also encrypt the files using our GPG public key. +``` + +### Debug Output + + +NOTE: In addition to Terraform debugging, please set HELM_DEBUG=1 to enable debugging info from helm. + +### Panic Output + + +### Steps to Reproduce + +1. `terraform apply` + +### Expected Behavior + + +### Actual Behavior + + +### Important Factoids + + +### References + +- GH-1234 + +### Community Note + +* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request +* If you are interested in working on this issue or have submitted a pull request, please leave a comment diff --git a/shuttles/terraform/terraform-provider-helm/.github/ISSUE_TEMPLATE/config.yml b/shuttles/terraform/terraform-provider-helm/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..790ae60 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: Helm Provider for Terraform Roadmap + url: https://github.com/terraform-providers/terraform-provider-helm/blob/master/_about/ROADMAP.md + about: Each quarter the team highlights our areas of focus for our work and upcoming research. diff --git a/shuttles/terraform/terraform-provider-helm/.github/ISSUE_TEMPLATE/feature-request.md b/shuttles/terraform/terraform-provider-helm/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 0000000..ba1c1f3 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,39 @@ +--- +name: "\U0001F680 Feature Request" +about: "I have a suggestion (and might want to implement myself \U0001F642)!" +title: '' +labels: enhancement + +--- + + +### Description + + + +### Potential Terraform Configuration + + + +```hcl +# Copy-paste your Terraform configurations here - for large Terraform configs, +# please use a service like Dropbox and share a link to the ZIP file. For +# security, you can also encrypt the files using our GPG public key. +``` + +### References + + + + + +### Community Note + +* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request +* If you are interested in working on this issue or have submitted a pull request, please leave a comment + + diff --git a/shuttles/terraform/terraform-provider-helm/.github/ISSUE_TEMPLATE/question.md b/shuttles/terraform/terraform-provider-helm/.github/ISSUE_TEMPLATE/question.md new file mode 100644 index 0000000..b6b3a3d --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/ISSUE_TEMPLATE/question.md @@ -0,0 +1,34 @@ +--- +name: "\U0001F914 Question" +about: "If you need help figuring something out" +title: '' +labels: question + +--- + + +If you prefer, you can also ask your question in the Kubernetes community Slack channel [#terraform-providers](https://kubernetes.slack.com/messages/CJY6ATQH4). ([Sign up here](http://slack.k8s.io/)) + +## Terraform version, Kubernetes provider version and Kubernetes version + +``` +Terraform version: +Helm Provider version: +Kubernetes version: +``` +## Terraform configuration + +```hcl +Enter your configuration here. +``` + +## Question + + diff --git a/shuttles/terraform/terraform-provider-helm/.github/dependabot.yml b/shuttles/terraform/terraform-provider-helm/.github/dependabot.yml new file mode 100644 index 0000000..4f78b5d --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/dependabot.yml @@ -0,0 +1,18 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" + day: "sunday" + commit-message: + prefix: "🌱" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + # DependaBot does not open a pull request to update the version of GH actions, only security updates. + # TSCCR is responsible for opening a pull request to update the version of GH actions. + open-pull-requests-limit: 0 + commit-message: + prefix: "🤖" diff --git a/shuttles/terraform/terraform-provider-helm/.github/labeler-issue-triage.yml b/shuttles/terraform/terraform-provider-helm/.github/labeler-issue-triage.yml new file mode 100644 index 0000000..d1a51fd --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/labeler-issue-triage.yml @@ -0,0 +1,4 @@ +bug: + - 'panic:' +crash: + - 'panic:' diff --git a/shuttles/terraform/terraform-provider-helm/.github/labeler-pull-request-triage.yml b/shuttles/terraform/terraform-provider-helm/.github/labeler-pull-request-triage.yml new file mode 100644 index 0000000..19f0cf1 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/labeler-pull-request-triage.yml @@ -0,0 +1,4 @@ +dependencies: + - vendor/**/* +documentation: + - website/**/* diff --git a/shuttles/terraform/terraform-provider-helm/.github/pull_request_template.md b/shuttles/terraform/terraform-provider-helm/.github/pull_request_template.md new file mode 100644 index 0000000..78cdb97 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/pull_request_template.md @@ -0,0 +1,41 @@ + + +## Rollback Plan + +If a change needs to be reverted, we will publish an updated version of the library. + +## Changes to Security Controls + +Are there any changes to security controls (access controls, encryption, logging) in this pull request? If so, explain. + +### Description + + + +### Acceptance tests +- [ ] Have you added an acceptance test for the functionality being added? + + +### Release Note +Release note for [CHANGELOG](https://github.com/hashicorp/terraform-provider-helm/blob/main/CHANGELOG.md): + + +```release-note +... +``` +### References + + + + + +### Community Note + +* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request +* If you are interested in working on this issue or have submitted a pull request, please leave a comment + + diff --git a/shuttles/terraform/terraform-provider-helm/.github/tf.png b/shuttles/terraform/terraform-provider-helm/.github/tf.png new file mode 100644 index 0000000..be81789 Binary files /dev/null and b/shuttles/terraform/terraform-provider-helm/.github/tf.png differ diff --git a/shuttles/terraform/terraform-provider-helm/.github/workflows/acceptance_test_dfa.yaml b/shuttles/terraform/terraform-provider-helm/.github/workflows/acceptance_test_dfa.yaml new file mode 100644 index 0000000..f94d2a6 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/workflows/acceptance_test_dfa.yaml @@ -0,0 +1,31 @@ +name: Deferred Actions + +on: + pull_request: + branches: + - main + paths: + - "helm/**/*.go" + - "go.mod" + workflow_dispatch: + inputs: + terraformVersion: + description: Terraform version + default: 1.9.0-alpha20240516 + +jobs: + acceptance_tests: + runs-on: custom-linux-medium + steps: + - name: Checkout repository + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 + - name: Set up Go + uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1 + with: + go-version-file: 'go.mod' + - name: Run Tests + env: + TF_ACC: 1 + TF_ACC_TERRAFORM_VERSION: ${{ github.event.inputs.terraformVersion || '1.9.0-alpha20240516' }} + run: | + go test -v -run '^TestAccDeferredActions_basic' ./helm/testing diff --git a/shuttles/terraform/terraform-provider-helm/.github/workflows/build.yml b/shuttles/terraform/terraform-provider-helm/.github/workflows/build.yml new file mode 100644 index 0000000..424020f --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/workflows/build.yml @@ -0,0 +1,153 @@ +name: build + +on: + push: + branches: + - main + - release/** + workflow_dispatch: + +env: + PKG_NAME: "terraform-provider-helm" + +jobs: + get-go-version: + name: "Detect Go toolchain version" + runs-on: ubuntu-latest + outputs: + go-version: ${{ steps.get-go-version.outputs.go-version }} + steps: + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0 + with: + go-version-file: 'go.mod' + - name: Detect Go version + id: get-go-version + run: | + version="$(go list -f {{.GoVersion}} -m)" + echo "go-version=$version" >> "$GITHUB_OUTPUT" + + set-product-version: + name: "Parse version file" + runs-on: ubuntu-latest + outputs: + product-version: ${{ steps.set-product-version.outputs.product-version }} + product-base-version: ${{ steps.set-product-version.outputs.base-product-version }} + product-prerelease-version: ${{ steps.set-product-version.outputs.prerelease-product-version }} + product-minor-version: ${{ steps.set-product-version.outputs.minor-product-version }} + steps: + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - name: Set variables + id: set-product-version + uses: hashicorp/actions-set-product-version@v2 + + generate-metadata-file: + needs: set-product-version + runs-on: ubuntu-latest + outputs: + filepath: ${{ steps.generate-metadata-file.outputs.filepath }} + steps: + - name: "Checkout directory" + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - name: Generate metadata file + id: generate-metadata-file + uses: hashicorp/actions-generate-metadata@v1 + with: + version: ${{ needs.set-product-version.outputs.product-version }} + product: ${{ env.PKG_NAME }} + repositoryOwner: "hashicorp" + - uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 + with: + name: metadata.json + path: ${{ steps.generate-metadata-file.outputs.filepath }} + + upload-terraform-registry-manifest-artifact: + needs: set-product-version + runs-on: ubuntu-latest + steps: + - name: "Checkout directory" + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + with: + path: ${{ env.PKG_NAME }} + - name: "Copy manifest from checkout directory to a file with the desired name" + id: terraform-registry-manifest + run: | + name="${{ env.PKG_NAME }}" + version="${{ needs.set-product-version.outputs.product-version }}" + + source="${name}/terraform-registry-manifest.json" + destination="${name}_${version}_manifest.json" + + cp "$source" "$destination" + echo "filename=$destination" >> "$GITHUB_OUTPUT" + - uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 + with: + name: terraform-registry-manifest.json + path: ${{ steps.terraform-registry-manifest.outputs.filename }} + if-no-files-found: error + + build: + needs: + - get-go-version + - set-product-version + runs-on: ubuntu-latest + strategy: + fail-fast: true + matrix: + goos: [freebsd, windows, linux, darwin] + goarch: ["386", "amd64", "arm", "arm64"] + exclude: + - goos: freebsd + goarch: arm64 + - goos: windows + goarch: arm64 + - goos: windows + goarch: arm + - goos: darwin + goarch: 386 + - goos: darwin + goarch: arm + + name: Go ${{ needs.get-go-version.outputs.go-version }} ${{ matrix.goos }} ${{ matrix.goarch }} build + steps: + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: hashicorp/actions-go-build@v1 + env: + CGO_ENABLED: 0 + BASE_VERSION: ${{ needs.set-product-version.outputs.product-base-version }} + PRERELEASE_VERSION: ${{ needs.set-product-version.outputs.product-prerelease-version}} + METADATA_VERSION: ${{ env.METADATA }} + with: + bin_name: "${{ env.PKG_NAME }}_v${{ needs.set-product-version.outputs.product-version }}_x5" + product_name: ${{ env.PKG_NAME }} + product_version: ${{ needs.set-product-version.outputs.product-version }} + go_version: ${{ needs.get-go-version.outputs.go-version }} + os: ${{ matrix.goos }} + arch: ${{ matrix.goarch }} + reproducible: report + instructions: | + go build \ + -o "$BIN_PATH" \ + -trimpath \ + -buildvcs=false \ + -ldflags "-s -w -X 'main.Version=${{ needs.set-product-version.outputs.product-version }}'" + cp LICENSE "$TARGET_DIR/LICENSE.txt" + + whats-next: + needs: + - build + - generate-metadata-file + - upload-terraform-registry-manifest-artifact + runs-on: ubuntu-latest + name: "What's next?" + steps: + - name: "Write a helpful summary" + run: | + github_dot_com="${{ github.server_url }}" + owner_with_name="${{ github.repository }}" + ref="${{ github.ref }}" + + echo "### What's next?" >> "$GITHUB_STEP_SUMMARY" + echo "#### For a release branch (see \`.release/ci.hcl\`)" >> $GITHUB_STEP_SUMMARY + echo "After this \`build\` workflow run completes succesfully, you can expect the CRT \`prepare\` workflow to begin momentarily." >> "$GITHUB_STEP_SUMMARY" + echo "To find the \`prepare\` workflow run, [view the checks for this commit]($github_dot_com/$owner_with_name/commits/$ref)" >> "$GITHUB_STEP_SUMMARY" diff --git a/shuttles/terraform/terraform-provider-helm/.github/workflows/changelog-checker.yml b/shuttles/terraform/terraform-provider-helm/.github/workflows/changelog-checker.yml new file mode 100644 index 0000000..0e7ca63 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/workflows/changelog-checker.yml @@ -0,0 +1,36 @@ +# This workflow checks that there is either a 'pr/no-changelog' label applied to a PR +# or there is a .changelog/.txt file associated with a PR for a changelog entry +name: Changelog Entry + +on: + pull_request: + types: [opened, synchronize, labeled] + # Runs on PRs to main and all release branches + branches: + - main + +jobs: + # checks that a .changelog entry is present for a PR + changelog-check: + # If there a `pr/no-changelog` label we ignore this check + if: "!contains(github.event.pull_request.labels.*.name, 'pr/no-changelog') || github.event.pull_request.user.login == 'dependabot'" + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + with: + ref: ${{ github.event.pull_request.head.sha }} + fetch-depth: 0 # by default the checkout action doesn't checkout all branches + - name: Check for changelog entry in diff + run: | + # check if there is a diff in the .changelog directory + changelog_files=$(git --no-pager diff --name-only HEAD "$(git merge-base HEAD "origin/${{ github.event.pull_request.base.ref }}")" -- .changelog/${{ github.event.pull_request.number }}.txt) + + # If we do not find a file in .changelog/, we fail the check + if [ -z "$changelog_files" ]; then + # Fail status check when no .changelog entry was found on the PR + echo "Did not find a .changelog entry and the 'pr/no-changelog' label was not applied. Reference - https://github.com/hashicorp/terraform-provider-helm/tree/main/.github/workflows/CHANGELOG_GUIDE.md" + exit 1 + else + echo "Found .changelog entry in PR!" + fi diff --git a/shuttles/terraform/terraform-provider-helm/.github/workflows/codeql-analysis.yml b/shuttles/terraform/terraform-provider-helm/.github/workflows/codeql-analysis.yml new file mode 100644 index 0000000..c0f86d8 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/workflows/codeql-analysis.yml @@ -0,0 +1,68 @@ +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +name: "CodeQL" + +on: + push: + branches: [main] + pull_request: + # The branches below must be a subset of the branches above + branches: [main] + schedule: + - cron: '0 13 * * 0' + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + + strategy: + fail-fast: false + matrix: + # Override automatic language detection by changing the below list + # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python'] + language: ['go'] + # Learn more... + # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection + + steps: + - name: Checkout repository + uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + with: + # We must fetch at least the immediate parents so that if this is + # a pull request then we can checkout the head. + fetch-depth: 2 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@c4fb451437765abf5018c6fbf22cce1a7da1e5cc # codeql-bundle-v2.17.1 + + with: + languages: ${{ matrix.language }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + # queries: ./path/to/local/query, your-org/your-repo/queries@main + + # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). + # If this step fails, then you should remove it and run the build manually (see below) + - name: Autobuild + uses: github/codeql-action/autobuild@c4fb451437765abf5018c6fbf22cce1a7da1e5cc # codeql-bundle-v2.17.1 + + + # ℹ️ Command-line programs to run using the OS shell. + # 📚 https://git.io/JvXDl + + # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines + # and modify them (or add more) to build your code if your project + # uses a compiled language + + #- run: | + # make bootstrap + # make release + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@c4fb451437765abf5018c6fbf22cce1a7da1e5cc # codeql-bundle-v2.17.1 diff --git a/shuttles/terraform/terraform-provider-helm/.github/workflows/hc-copywrite.yml b/shuttles/terraform/terraform-provider-helm/.github/workflows/hc-copywrite.yml new file mode 100644 index 0000000..86b8a7b --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/workflows/hc-copywrite.yml @@ -0,0 +1,25 @@ +name: HashiCorp Copywrite + +on: + schedule: + - cron: '30 2 * * *' + pull_request: + branches: + - main + push: + branches: + - main + workflow_dispatch: + +jobs: + copywrite: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + + - name: Install copywrite + uses: hashicorp/setup-copywrite@32638da2d4e81d56a0764aa1547882fc4d209636 # v1.1.3 + + - name: Validate Header Compliance + run: copywrite headers --plan diff --git a/shuttles/terraform/terraform-provider-helm/.github/workflows/issue-comment-created.yml b/shuttles/terraform/terraform-provider-helm/.github/workflows/issue-comment-created.yml new file mode 100644 index 0000000..0c4f898 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/workflows/issue-comment-created.yml @@ -0,0 +1,15 @@ +name: Issue Comment Created Triage + +on: + issue_comment: + types: [created] + +jobs: + issue_comment_triage: + runs-on: ubuntu-latest + steps: + - uses: actions-ecosystem/action-remove-labels@2ce5d41b4b6aa8503e285553f75ed56e0a40bae0 # v1.3.0 + with: + labels: | + stale + waiting-response diff --git a/shuttles/terraform/terraform-provider-helm/.github/workflows/issue-opened.yml b/shuttles/terraform/terraform-provider-helm/.github/workflows/issue-opened.yml new file mode 100644 index 0000000..b0e8f52 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/workflows/issue-opened.yml @@ -0,0 +1,56 @@ +name: Issue Opened Triage + +on: + issues: + types: [opened] + +jobs: + issue_triage: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + - uses: github/issue-labeler@c1b0f9f52a63158c4adc09425e858e87b32e9685 # v3.4 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" + configuration-path: .github/labeler-issue-triage.yml + enable-versioned-regex: 0 + oncall_review_assigner: + runs-on: ubuntu-latest + steps: + - uses: actions/setup-node@v4 + - run: npm install @pagerduty/pdjs + - uses: actions/github-script@e69ef5462fd455e02edcaf4dd7708eda96b9eda0 # v7.0.0 + env: + PAGERDUTY_TOKEN: ${{ secrets.PAGERDUTY_TOKEN }} + with: + script: | + const { PAGERDUTY_TOKEN } = process.env + const { api } = require('@pagerduty/pdjs'); + const pd = api({token: PAGERDUTY_TOKEN}); + const reviewerList = new Map([ + ["Sheneska Williams", "sheneska"], + ["Mauricio Alvarez Leon", "BBBmau"], + ["Alex Somesan", "alexsomesan"], + ["Alex Pilon", "appilon"], + ["John Houston", "jrhouston"], + ["Sacha Rybolovlev", "arybolovlev"], + ]); + + + let resp = await pd.get('oncalls?escalation_policy_ids%5B%5D=PH8IF3M') + if (resp.status != 200){ + core.setFailed("PagerDuty Error: " + resp.statusText) + } + const reviewer = resp.data.oncalls[0].user.summary + const reviewerGH = reviewerList.get(reviewer) + console.log("Assigning issue to " + reviewerGH); + + resp = await github.rest.issues.addAssignees({ + owner: context.repo.owner, + repo: context.repo.repo, + assignees: reviewerGH, + issue_number: context.issue.number, + }) + if (resp.status != 201){ + core.setFailed("error assigning reviewer: user doesn't have the appropriate permissions to be assigned an issue.") + } diff --git a/shuttles/terraform/terraform-provider-helm/.github/workflows/jira-issues.yml b/shuttles/terraform/terraform-provider-helm/.github/workflows/jira-issues.yml new file mode 100644 index 0000000..911a0db --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/workflows/jira-issues.yml @@ -0,0 +1,104 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + +on: + issues: + types: [opened, closed, deleted, reopened, edited] + issue_comment: + types: [created] + workflow_dispatch: + +name: Jira Community Issue Sync + +jobs: + sync: + runs-on: ubuntu-latest + name: Jira Community Issue sync + steps: + - name: Login + uses: atlassian/gajira-login@ca13f8850ea309cf44a6e4e0c49d9aa48ac3ca4c # v3 + env: + JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} + JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} + JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} + + - name: Set ticket type + id: set-ticket-type + run: | + echo "TYPE=GH Issue" >> $GITHUB_OUTPUT + + - name: Set ticket labels + if: github.event.action == 'opened' + id: set-ticket-labels + run: | + LABELS="[\"${{github.event.repository.name}}\", " + if [[ "${{ contains(github.event.issue.labels.*.name, 'bug') }}" == "true" ]]; then LABELS+="\"bug\", "; fi + if [[ "${{ contains(github.event.issue.labels.*.name, 'enhancement') }}" == "true" ]]; then LABELS+="\"enhancement\", "; fi + if [[ "${{ contains(github.event.issue.labels.*.name, 'documentation') }}" == "true" ]]; then LABELS+="\"documentation\", "; fi + if [[ "${{ contains(github.event.issue.labels.*.name, 'needs-investigation') }}" == "true" ]]; then LABELS+="\"needs-investigation\", "; fi + if [[ "${{ contains(github.event.issue.labels.*.name, 'question') }}" == "true" ]]; then LABELS+="\"question\", "; fi + if [[ "${{ contains(github.event.issue.labels.*.name, 'size/XS') }}" == "true" ]]; then LABELS+="\"size/XS\", "; fi + if [[ "${{ contains(github.event.issue.labels.*.name, 'size/S') }}" == "true" ]]; then LABELS+="\"size/S\", "; fi + if [[ "${{ contains(github.event.issue.labels.*.name, 'size/M') }}" == "true" ]]; then LABELS+="\"size/M\", "; fi + if [[ "${{ contains(github.event.issue.labels.*.name, 'size/L') }}" == "true" ]]; then LABELS+="\"size/L\", "; fi + if [[ "${{ contains(github.event.issue.labels.*.name, 'size/XL') }}" == "true" ]]; then LABELS+="\"size/XL\", "; fi + if [[ "${{ contains(github.event.issue.labels.*.name, 'size/XXL') }}" == "true" ]]; then LABELS+="\"size/XXL\", "; fi + if [[ "${{ contains(github.event.issue.labels.*.name, 'acknowledged') }}" == "true" ]]; then LABELS+="\"acknowledged\", "; fi + if [[ "${{ contains(github.event.issue.labels.*.name, 'help wanted') }}" == "true" ]]; then LABELS+="\"help wanted\", "; fi + if [[ "${{ contains(github.event.issue.labels.*.name, 'upstream-helm') }}" == "true" ]]; then LABELS+="\"upstream-helm\", "; fi + if [[ "${{ contains(github.event.issue.labels.*.name, 'upstream-terraform') }}" == "true" ]]; then LABELS+="\"upstream-terraform\", "; fi + if [[ "${{ contains(github.event.issue.labels.*.name, 'progressive apply') }}" == "true" ]]; then LABELS+="\"progressive apply\", "; fi + if [[ "${{ contains(github.event.issue.labels.*.name, 'pr/changelog') }}" == "true" ]]; then LABELS+="\"pr/changelog\", "; fi + if [[ "${{ contains(github.event.issue.labels.*.name, 'crash') }}" == "true" ]]; then LABELS+="\"crash\", "; fi + if [[ "${{ contains(github.event.issue.labels.*.name, 'breaking-change') }}" == "true" ]]; then LABELS+="\"breaking-change\", "; fi + if [[ "${{ contains(github.event.issue.labels.*.name, 'provider') }}" == "true" ]]; then LABELS+="\"provider\", "; fi + if [[ "${{ contains(github.event.issue.labels.*.name, 'stale') }}" == "true" ]]; then LABELS+="\"stale\", "; fi + if [[ ${#LABELS} != 1 ]]; then LABELS=${LABELS::-2}"]"; else LABELS+="]"; fi + echo "LABELS=${LABELS}" >> $GITHUB_OUTPUT + + - name: Create ticket if an issue is filed, or if PR not by a team member is opened + if: github.event.action == 'opened' + uses: tomhjp/gh-action-jira-create@3ed1789cad3521292e591a7cfa703215ec1348bf # v0.2.1 + with: + project: TFECO + issuetype: "${{ steps.set-ticket-type.outputs.TYPE }}" + summary: "${{ github.event.issue.title }}:[Issue-${{ github.event.issue.number }}] (${{ github.event.repository.name }})" + description: "${{ github.event.issue.body || github.event.pull_request.body }}\n\n_Created in GitHub by ${{ github.actor }}._\n\n${{ github.event.issue.html_url || github.event.pull_request.html_url }}" + # customfield_10089 is "Issue Link", customfield_10371 is "Source" (use JIRA API to retrieve) + extraFields: '{ "customfield_10089": "${{ github.event.issue.html_url || github.event.pull_request.html_url }}", + "customfield_10371": { "value": "GitHub" }, + "customfield_10091": ["TF-HybridCloud"], + "labels": ${{ steps.set-ticket-labels.outputs.LABELS }} }' + env: + JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} + JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} + JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} + + - name: Search + if: github.event.action != 'opened' + id: search + uses: tomhjp/gh-action-jira-search@04700b457f317c3e341ce90da5a3ff4ce058f2fa # v0.2.2 + with: + # cf[10089] is Issue Link (use JIRA API to retrieve) + jql: 'issuetype = "${{ steps.set-ticket-type.outputs.TYPE }}" and cf[10089] = "${{ github.event.issue.html_url || github.event.pull_request.html_url }}"' + + - name: Sync comment + if: github.event.action == 'created' && steps.search.outputs.issue + uses: tomhjp/gh-action-jira-comment@6eb6b9ead70221916b6badd118c24535ed220bd9 # v0.2.0 + with: + issue: ${{ steps.search.outputs.issue }} + comment: "${{ github.actor }} ${{ github.event.review.state || 'commented' }}:\n\n${{ github.event.comment.body || github.event.review.body }}\n\n${{ github.event.comment.html_url || github.event.review.html_url }}" + + - name: Close ticket + if: ( github.event.action == 'closed' || github.event.action == 'deleted' ) && steps.search.outputs.issue + uses: atlassian/gajira-transition@38fc9cd61b03d6a53dd35fcccda172fe04b36de3 # v3 + with: + issue: ${{ steps.search.outputs.issue }} + transition: "Closed" + + - name: Reopen ticket + if: github.event.action == 'reopened' && steps.search.outputs.issue + uses: atlassian/gajira-transition@38fc9cd61b03d6a53dd35fcccda172fe04b36de3 # v3 + with: + issue: ${{ steps.search.outputs.issue }} + transition: "To Do" \ No newline at end of file diff --git a/shuttles/terraform/terraform-provider-helm/.github/workflows/jira-pr.yml b/shuttles/terraform/terraform-provider-helm/.github/workflows/jira-pr.yml new file mode 100644 index 0000000..e15f756 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/workflows/jira-pr.yml @@ -0,0 +1,102 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + +on: + pull_request_target: + types: [opened, closed, reopened, edited] + workflow_dispatch: + +name: Jira Community PR Sync + +jobs: + sync: + runs-on: ubuntu-latest + name: Jira sync + steps: + - name: Login + uses: atlassian/gajira-login@ca13f8850ea309cf44a6e4e0c49d9aa48ac3ca4c # v3 + env: + JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} + JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} + JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} + + - name: Set ticket type + id: set-ticket-type + run: | + echo "TYPE=GH Issue" >> $GITHUB_OUTPUT + + - name: Set ticket labels + if: github.event.action == 'opened' + id: set-ticket-labels + run: | + LABELS="[\"${{github.event.repository.name}}\", " + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'bug') }}" == "true" ]]; then LABELS+="\"bug\", "; fi + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'enhancement') }}" == "true" ]]; then LABELS+="\"enhancement\", "; fi + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'documentation') }}" == "true" ]]; then LABELS+="\"documentation\", "; fi + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'needs-investigation') }}" == "true" ]]; then LABELS+="\"needs-investigation\", "; fi + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'question') }}" == "true" ]]; then LABELS+="\"question\", "; fi + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'size/XS') }}" == "true" ]]; then LABELS+="\"size/XS\", "; fi + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'size/S') }}" == "true" ]]; then LABELS+="\"size/S\", "; fi + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'size/M') }}" == "true" ]]; then LABELS+="\"size/M\", "; fi + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'size/L') }}" == "true" ]]; then LABELS+="\"size/L\", "; fi + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'size/XL') }}" == "true" ]]; then LABELS+="\"size/XL\", "; fi + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'size/XXL') }}" == "true" ]]; then LABELS+="\"size/XXL\", "; fi + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'acknowledged') }}" == "true" ]]; then LABELS+="\"acknowledged\", "; fi + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'help wanted') }}" == "true" ]]; then LABELS+="\"help wanted\", "; fi + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'upstream-helm') }}" == "true" ]]; then LABELS+="\"upstream-helm\", "; fi + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'upstream-terraform') }}" == "true" ]]; then LABELS+="\"upstream-terraform\", "; fi + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'progressive apply') }}" == "true" ]]; then LABELS+="\"progressive apply\", "; fi + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'pr/changelog') }}" == "true" ]]; then LABELS+="\"pr/changelog\", "; fi + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'crash') }}" == "true" ]]; then LABELS+="\"crash\", "; fi + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'breaking-change') }}" == "true" ]]; then LABELS+="\"breaking-change\", "; fi + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'provider') }}" == "true" ]]; then LABELS+="\"provider\", "; fi + if [[ "${{ contains(github.event.pull_request.labels.*.name, 'stale') }}" == "true" ]]; then LABELS+="\"stale\", "; fi + if [[ ${#LABELS} != 1 ]]; then LABELS=${LABELS::-2}"]"; else LABELS+="]"; fi + echo "LABELS=${LABELS}" >> $GITHUB_OUTPUT + + - name: Create ticket if a PR is opened + if: ( github.event.action == 'opened') + uses: tomhjp/gh-action-jira-create@3ed1789cad3521292e591a7cfa703215ec1348bf # v0.2.1 + with: + project: TFECO + issuetype: "${{ steps.set-ticket-type.outputs.TYPE }}" + summary: "${{ github.event.pull_request.title }}:[PR-${{ github.event.pull_request.number }}] (${{ github.event.repository.name }})" + description: "${{ github.event.issue.body || github.event.pull_request.body }}\n\n_Created in GitHub by ${{ github.actor }}._\n\n${{ github.event.pull_request.html_url }}" + # customfield_10089 is "Issue Link", customfield_10371 is "Source" (use JIRA API to retrieve) + extraFields: '{ "customfield_10089": "${{ github.event.pull_request.html_url }}", + "customfield_10371": { "value": "GitHub" }, + "customfield_10091": ["TF-HybridCloud"], + "labels": ${{ steps.set-ticket-labels.outputs.LABELS }} }' + env: + JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} + JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} + JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} + + - name: Search + if: github.event.action != 'opened' + id: search + uses: tomhjp/gh-action-jira-search@04700b457f317c3e341ce90da5a3ff4ce058f2fa # v0.2.2 + with: + # cf[10089] is Issue Link (use JIRA API to retrieve) + jql: 'issuetype = "${{ steps.set-ticket-type.outputs.TYPE }}" and cf[10089] = "${{ github.event.issue.html_url || github.event.pull_request.html_url }}"' + + - name: Sync comment + if: github.event.action == 'created' && steps.search.outputs.issue + uses: tomhjp/gh-action-jira-comment@6eb6b9ead70221916b6badd118c24535ed220bd9 # v0.2.0 + with: + issue: ${{ steps.search.outputs.issue }} + comment: "${{ github.actor }} ${{ github.event.review.state || 'commented' }}:\n\n${{ github.event.comment.body || github.event.review.body }}\n\n${{ github.event.comment.html_url || github.event.review.html_url }}" + + - name: Close PR + if: ( github.event.action == 'closed' || github.event.action == 'deleted' || github.event.pull_request.merged == true) && steps.search.outputs.issue + uses: atlassian/gajira-transition@38fc9cd61b03d6a53dd35fcccda172fe04b36de3 # v3 + with: + issue: ${{ steps.search.outputs.issue }} + transition: "Closed" + + - name: Reopen PR + if: github.event.action == 'reopened' && steps.search.outputs.issue + uses: atlassian/gajira-transition@38fc9cd61b03d6a53dd35fcccda172fe04b36de3 # v3 + with: + issue: ${{ steps.search.outputs.issue }} + transition: "To Do" \ No newline at end of file diff --git a/shuttles/terraform/terraform-provider-helm/.github/workflows/lock.yml b/shuttles/terraform/terraform-provider-helm/.github/workflows/lock.yml new file mode 100644 index 0000000..697265b --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/workflows/lock.yml @@ -0,0 +1,23 @@ +name: 'Lock Threads' + +on: + schedule: + - cron: '49 1 * * *' + +jobs: + lock: + runs-on: ubuntu-latest + steps: + - uses: dessant/lock-threads@1bf7ec25051fe7c00bdd17e6a7cf3d7bfb7dc771 # v5.0.1 + with: + github-token: ${{ github.token }} + issue-lock-comment: > + I'm going to lock this issue because it has been closed for _30 days_ ⏳. This helps our maintainers find and focus on the active issues. + + If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. + issue-lock-inactive-days: '30' + pr-lock-comment: > + I'm going to lock this pull request because it has been closed for _30 days_ ⏳. This helps our maintainers find and focus on the active issues. + + If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. + pr-lock-inactive-days: '30' diff --git a/shuttles/terraform/terraform-provider-helm/.github/workflows/prune_stale_issues.yml b/shuttles/terraform/terraform-provider-helm/.github/workflows/prune_stale_issues.yml new file mode 100644 index 0000000..9dad5a4 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/workflows/prune_stale_issues.yml @@ -0,0 +1,15 @@ +name: "Close stale issues" +on: + schedule: + - cron: "0 0 * * *" + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # 9.0.0 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: 'Marking this issue as stale due to inactivity. If this issue receives no comments in the next 30 days it will automatically be closed. If this issue was automatically closed and you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. This helps our maintainers find and focus on the active issues. Maintainers may also remove the stale label at their discretion. Thank you!' + days-before-stale: 365 + days-before-close: 30 \ No newline at end of file diff --git a/shuttles/terraform/terraform-provider-helm/.github/workflows/pull-request.yml b/shuttles/terraform/terraform-provider-helm/.github/workflows/pull-request.yml new file mode 100644 index 0000000..b77e9ff --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/workflows/pull-request.yml @@ -0,0 +1,25 @@ +name: "Pull Request Triage" + +on: [pull_request_target] + +jobs: + triage: + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@ba790c862c380240c6d5e7427be5ace9a05c754b # v4.0.3 + with: + configuration-path: .github/labeler-pull-request-triage.yml + repo-token: "${{ secrets.GITHUB_TOKEN }}" + - uses: CodelyTV/pr-size-labeler@54ef36785e9f4cb5ecf1949cfc9b00dbb621d761 # v1.8.1 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + xs_label: 'size/XS' + xs_max_size: '30' + s_label: 'size/S' + s_max_size: '60' + m_label: 'size/M' + m_max_size: '150' + l_label: 'size/L' + l_max_size: '300' + xl_label: 'size/XL' + message_if_xl: '' diff --git a/shuttles/terraform/terraform-provider-helm/.github/workflows/tests.yaml b/shuttles/terraform/terraform-provider-helm/.github/workflows/tests.yaml new file mode 100644 index 0000000..bea43c0 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/workflows/tests.yaml @@ -0,0 +1,63 @@ +name: "tests" +on: + push: + branches: + - main + pull_request: + branches: + - main + +env: + KUBECONFIG: ${{ github.workspace }}/.kube/config + +jobs: + get_version_matrix: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + - id: get_version_matrix + shell: bash + run: scripts/get-version-matrix.sh + outputs: + version_matrix: ${{ steps.get_version_matrix.outputs.matrix }} + unit_test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + - name: Set up Go + uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 + with: + go-version-file: go.mod + - name: Unit tests + env: + GOPATH: /home/runner/go + run: | + make test + make vet + acc_test: + needs: get_version_matrix + runs-on: ubuntu-latest + strategy: + # Don't cancel all in-progress and queued jobs in the matrix if any job in the matrix fails. + # That will be helpful to catch any issues related to a particular Terraform version. + fail-fast: false + matrix: + terraform_version: ${{ fromJson(needs.get_version_matrix.outputs.version_matrix) }} + steps: + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + - name: Set up Go + uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 + with: + go-version-file: go.mod + - uses: helm/kind-action@0025e74a8c7512023d06dc019c617aa3cf561fde # v1.10.0 + id: kind + with: + wait: 2m + - name: Acceptance Tests + env: + KUBE_CONFIG_PATH: ${{ env.KUBECONFIG }} + TF_ACC_TERRAFORM_VERSION: ${{ matrix.terraform_version }} + TF_ACC_TEMP_DIR: ${{ runner.temp }} + TESTARGS: "-parallel 1" + run: | + make testacc diff --git a/shuttles/terraform/terraform-provider-helm/.github/workflows/website.yaml b/shuttles/terraform/terraform-provider-helm/.github/workflows/website.yaml new file mode 100644 index 0000000..ebc2863 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.github/workflows/website.yaml @@ -0,0 +1,17 @@ +name: website +on: + push: + paths: + - "docs/**" + pull_request: + branches: + - main + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + - name: website-lint + run: | + make website-lint diff --git a/shuttles/terraform/terraform-provider-helm/.gitignore b/shuttles/terraform/terraform-provider-helm/.gitignore new file mode 100644 index 0000000..65a5620 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.gitignore @@ -0,0 +1,38 @@ +terraform-provider-helm +terraform-provider-helm_v* +*.tfstate* +/build +assets +.terraform +_output/ +.vscode +/results +*.dll +*.exe +.DS_Store +example.tf +terraform.tfvars +terraform.tfplan +bin/ +modules-dev/ +/pkg/ +website/.vagrant +website/.bundle +website/build +website/node_modules +.vagrant/ +*.backup +*.log +*.bak +*~ +.*.swp +.idea +*.iml +*.test +*.iml + +website/vendor + +# Test exclusions +!command/test-fixtures/**/*.tfstate +!command/test-fixtures/**/.terraform/ diff --git a/shuttles/terraform/terraform-provider-helm/.markdownlinkcheck.json b/shuttles/terraform/terraform-provider-helm/.markdownlinkcheck.json new file mode 100644 index 0000000..3707354 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.markdownlinkcheck.json @@ -0,0 +1,29 @@ +{ + "ignorePatterns": [ + { + "pattern": "^http(s)?:\/\/terraform.io/(.*)" + } + ], + "replacementPatterns": [ + { + "pattern": "^(/docs/(?!providers/helm/))", + "replacement": "https://terraform.io$1" + }, + { + "pattern": "^(?!http(s)?://)(.*)\\.html(#.*)?$", + "replacement": "$2.html.markdown$3" + }, + { + "pattern": "^/docs/providers/helm/", + "replacement": "file:///github/workspace/docs/" + }, + { + "pattern": "^(getting-started).html.markdown(#.*)?$", + "replacement": "file:///github/workspace/docs/guides/$1.html.md$2" + }, + { + "pattern": "^file:///github/workspace/docs/guides/(.*)\\.markdown(#.*)?$", + "replacement": "file:///github/workspace/docs/guides/$1.md$2" + } + ] +} diff --git a/shuttles/terraform/terraform-provider-helm/.markdownlint.yml b/shuttles/terraform/terraform-provider-helm/.markdownlint.yml new file mode 100644 index 0000000..6bfeb93 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.markdownlint.yml @@ -0,0 +1,19 @@ +# Configuration for markdownlint +# https://github.com/DavidAnson/markdownlint#configuration + +default: true +MD007: + indent: 2 + +# Disabled Rules +# https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md + +MD001: false +MD004: false +MD006: false +MD012: false +MD013: false +MD014: false +MD022: false +MD024: false +MD033: false diff --git a/shuttles/terraform/terraform-provider-helm/.release/ci.hcl b/shuttles/terraform/terraform-provider-helm/.release/ci.hcl new file mode 100644 index 0000000..ce17ee1 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.release/ci.hcl @@ -0,0 +1,81 @@ +schema = "2" + +project "terraform-provider-helm" { + team = "terraform" + + slack { + notification_channel = "C051FAAHL8M" // #feed-terraform-ecosystem-kubernetes-releases + } + + github { + organization = "hashicorp" + repository = "terraform-provider-helm" + release_branches = ["main", "release/**"] + } +} + +event "merge" { +} + +event "build" { + action "build" { + depends = ["merge"] + + organization = "hashicorp" + repository = "terraform-provider-helm" + workflow = "build" + } +} + +event "prepare" { + depends = ["build"] + + action "prepare" { + organization = "hashicorp" + repository = "crt-workflows-common" + workflow = "prepare" + depends = ["build"] + } + + notification { + on = "fail" + } +} + +event "trigger-staging" { +} + +event "promote-staging" { + action "promote-staging" { + organization = "hashicorp" + repository = "crt-workflows-common" + workflow = "promote-staging" + depends = null + config = "release-metadata.hcl" + } + + depends = ["trigger-staging"] + + notification { + on = "always" + } +} + +event "trigger-production" { +} + +event "promote-production" { + action "promote-production" { + organization = "hashicorp" + repository = "crt-workflows-common" + workflow = "promote-production" + depends = null + config = "" + } + + depends = ["trigger-production"] + + notification { + on = "always" + } +} diff --git a/shuttles/terraform/terraform-provider-helm/.release/release-metadata.hcl b/shuttles/terraform/terraform-provider-helm/.release/release-metadata.hcl new file mode 100644 index 0000000..5c3afea --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.release/release-metadata.hcl @@ -0,0 +1,4 @@ +url_source_repository = "https://github.com/hashicorp/terraform-provider-helm" +url_project_website = "https://registry.terraform.io/providers/hashicorp/helm" +url_license = "https://github.com/hashicorp/terraform-provider-helm/blob/main/LICENSE" +url_release_notes = "https://github.com/hashicorp/terraform-provider-helm/blob/main/CHANGELOG.md" diff --git a/shuttles/terraform/terraform-provider-helm/.release/security-scan.hcl b/shuttles/terraform/terraform-provider-helm/.release/security-scan.hcl new file mode 100644 index 0000000..5a48bf8 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.release/security-scan.hcl @@ -0,0 +1,18 @@ +binary { + secrets { + all = true + } + go_modules = true + osv = true + oss_index = false + nvd = false + + triage { + suppress { + vulnerabilities = [ + "GO", + "GHSA" + ] + } + } +} diff --git a/shuttles/terraform/terraform-provider-helm/.release/terraform-provider-kubernetes-artifacts.hcl b/shuttles/terraform/terraform-provider-helm/.release/terraform-provider-kubernetes-artifacts.hcl new file mode 100644 index 0000000..cd7a53a --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/.release/terraform-provider-kubernetes-artifacts.hcl @@ -0,0 +1,16 @@ +schema = 1 +artifacts { + zip = [ + "terraform-provider-helm_${version}_darwin_amd64.zip", + "terraform-provider-helm_${version}_darwin_arm64.zip", + "terraform-provider-helm_${version}_freebsd_386.zip", + "terraform-provider-helm_${version}_freebsd_amd64.zip", + "terraform-provider-helm_${version}_freebsd_arm.zip", + "terraform-provider-helm_${version}_linux_386.zip", + "terraform-provider-helm_${version}_linux_amd64.zip", + "terraform-provider-helm_${version}_linux_arm.zip", + "terraform-provider-helm_${version}_linux_arm64.zip", + "terraform-provider-helm_${version}_windows_386.zip", + "terraform-provider-helm_${version}_windows_amd64.zip", + ] +} diff --git a/shuttles/terraform/terraform-provider-helm/CHANGELOG.md b/shuttles/terraform/terraform-provider-helm/CHANGELOG.md new file mode 100644 index 0000000..b6f50e7 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/CHANGELOG.md @@ -0,0 +1,585 @@ +## 3.0.1 (Jun 18, 2025) + +This is a hotfix release. + +HOTFIX: + +- `helm_release`: Fix state upgrader code to use correct type for "values" attribute. [[GH-1638](https://github.com/hashicorp/terraform-provider-helm/pull/1638)] + + +## 3.0.0 (Jun 18, 2025) + +This release migrates ports the provider project from `terraform-plugin-sdk/v2` to `terraform-plugin-framework` [[GH-1379](https://github.com/hashicorp/terraform-provider-helm/pull/1379)] + +Please refer to the [migration guide](./docs/guides/v3-upgrade-guide.md). + +BREAKING CHANGES: + +- **Blocks to Nested Objects**: Blocks like `kubernetes`, `registry`, and `experiments` are now represented as nested objects. +- **List Syntax for Nested Attributes**: Attributes like `set`, `set_list`, and `set_sensitive` in `helm_release` and `helm_template` are now lists of nested objects instead of blocks +- The new framework code uses [Terraform Plugin Protocol Version 6](https://developer.hashicorp.com/terraform/plugin/terraform-plugin-protocol#protocol-version-6) which is compatible with Terraform versions 1.0 and aboove. Users of earlier versions of Terraform can continue to use the Helm provider by pinning their configuration to the 2.x version. + +FEATURES: + +* Add `"literal"` as a supported `type` for the `set` block [[GH-1615](https://github.com/hashicorp/terraform-provider-helm/issues/1615)] + +* `helm_release`: Add support for ResourceIdentity. [[GH-1625](https://github.com/hashicorp/terraform-provider-helm/issues/1625)] + +* `helm_release`: Add `set_wo` write-only attribute [[GH-1592](https://github.com/hashicorp/terraform-provider-helm/issues/1592)] + +ENHANCEMENT: + +* `helm_release`: Add `UpgradeState` logic to support migration from SDKv2 to Plugin Framework [[GH-1633](https://github.com/hashicorp/terraform-provider-helm/issues/1633)] +* update helm dependency to v3.17.2 [[GH-1608](https://github.com/hashicorp/terraform-provider-helm/issues/1608)] + +BUG FIXES: + +* `helm_release`: Fix namespace behaviour for dependency charts in non-default namespaces [[GH-1583](https://github.com/hashicorp/terraform-provider-helm/issues/1583)] + +* change `set.value` && `set_list.value` to optional instead of required [[GH-1572](https://github.com/hashicorp/terraform-provider-helm/issues/1572)] + +## 3.0.0-pre2 (Feb 27, 2025) + +FEATURES: + +* `helm_release`: Add `set_wo` write-only attribute [[GH-1592](https://github.com/hashicorp/terraform-provider-helm/issues/1592)] + +BUG FIXES: + +* change `set.value` && `set_list.value` to optional instead of required [[GH-1572](https://github.com/hashicorp/terraform-provider-helm/issues/1572)] + + +## 3.0.0-pre1 (Jan 16, 2025) + +* This pre-release migrates ports the provider project from `terraform-plugin-sdk/v2` to `terraform-plugin-framework` [[GH-1379](https://github.com/hashicorp/terraform-provider-helm/pull/1379)] + +Please refer to the [migration guide](./docs/guides/v3-upgrade-guide.md). + +## 2.17.0 (Dec 19, 2024) + +ENHANCEMENT: + +* `resource/helm_release`: the dry-run option is now set to `server` to execute any chart lookups against the server during the plan stage. [[GH-1335](https://github.com/hashicorp/terraform-provider-helm/issues/1335)] + +BUG FIXES: + +* `resource/helm_release`: fix an issue where `postrender.args` is not parsed correctly. [[GH-1534](https://github.com/hashicorp/terraform-provider-helm/issues/1534)] + +## 2.16.1 (Oct 15, 2024) + +BUG FIXES: + +* `helm_release`: Fix nil pointer deref panic on destroy when helm release is not found [[GH-1501](https://github.com/hashicorp/terraform-provider-helm/issues/1501)] + +## 2.16.0 (Oct 10, 2024) + +BUG FIXES: + +* `helm_release`: On destroy, do not error when release is not found [[GH-1487](https://github.com/hashicorp/terraform-provider-helm/issues/1487)] +* `resource/helm_release`: Fix: only recompute metadata when the version in the metadata changes [[GH-1458](https://github.com/hashicorp/terraform-provider-helm/issues/1458)] + +## 2.15.0 (Aug 14, 2024) + +ENHANCEMENT: + +* resource/helm_release: add `upgrade_install` boolean attribute to enable idempotent release installation, addressing components of [GH-425](https://github.com/hashicorp/terraform-provider-helm/issues/425) [[GH-1247](https://github.com/hashicorp/terraform-provider-helm/issues/1247)] + +## 2.14.1 (Aug 7, 2024) + +DEPENDENCIES: + +* Bump golang.org/x/crypto from v0.23.0 to v0.25.0 [[GH-1399](https://github.com/hashicorp/terraform-provider-helm/pull/1399)] +* Bump k8s.io/api from v0.30.0 to v0.30.3 [[GH-1436](https://github.com/hashicorp/terraform-provider-helm/pull/1436)] +* Bump k8s.io/apimachinery from v0.30.0 to v0.30.3 [[GH-1436](https://github.com/hashicorp/terraform-provider-helm/pull/1436)] +* Bump k8s.io/client-go from v0.30.0 to v0.30.3 [[GH-1436](https://github.com/hashicorp/terraform-provider-helm/pull/1436)] +* Bump helm.sh/helm/v3 from v3.13.2 to v3.15.3 [[GH-1422](https://github.com/hashicorp/terraform-provider-helm/pull/1422)] + +## 2.14.0 (June 13, 2024) + +ENHANCEMENT: + +* Add support for Terraform's experimental deferred actions [[GH-1377](https://github.com/hashicorp/terraform-provider-helm/issues/1377)] +* `helm_release`: add new attributes metadata.last_deployed, metadata.first_deployed, metadata.notes [[GH-1380](https://github.com/hashicorp/terraform-provider-helm/issues/1380)] + +## 2.13.2 (May 8, 2024) + +DEPENDENCIES: + +* Bump github.com/docker/docker from 24.0.7 to 24.0.9 +* Bump golang.org/x/net from 0.21.0 to 0.23.0 +* Bundle license file with TF provider release artifacts + +## 2.13.1 (Apr 15, 2024) + +HOTFIX: + +* `helm_release`: Fix regression causing errors at plan time. + +## 2.13.0 (Apr 4, 2024) + +BUG FIXES: + +* `provider`: Fix manifest diff rendering for OCI charts. [[GH-1326](https://github.com/hashicorp/terraform-provider-helm/issues/1326)] + +DOCS: + +* `docs`: Use templatefile() instead of "template_file" provider in GKE example. [[GH-1329](https://github.com/hashicorp/terraform-provider-helm/issues/1329)] + +## 2.12.1 (Nov 30, 2023) + +DEPENDENCIES: + +* Bump Golang from `1.20` to `1.21`. [[GH-1300](https://github.com/hashicorp/terraform-provider-helm/issues/1300)] +* Bump github.com/hashicorp/go-cty from `v1.4.1-0.20200414143053-d3edf31b6320` to `v1.4.1-0.20200723130312-85980079f637`. [[GH-1300](https://github.com/hashicorp/terraform-provider-helm/issues/1300)] +* Bump github.com/hashicorp/terraform-plugin-docs from `v0.14.1` to `v0.16.0`. [[GH-1300](https://github.com/hashicorp/terraform-provider-helm/issues/1300)] +* Bump github.com/hashicorp/terraform-plugin-sdk/v2 from `v2.26.1` to `v2.30.0`. [[GH-1300](https://github.com/hashicorp/terraform-provider-helm/issues/1300)] +* Bump golang.org/x/crypto from `v0.14.0` to `v0.16.0`. [[GH-1300](https://github.com/hashicorp/terraform-provider-helm/issues/1300)] +* Bump helm.sh/helm/v3 from `v3.13.1` to `v3.13.2`. [[GH-1300](https://github.com/hashicorp/terraform-provider-helm/issues/1300)] +* Bump k8s.io/api from `v0.28.3` to `v0.28.4`. [[GH-1300](https://github.com/hashicorp/terraform-provider-helm/issues/1300)] +* Bump k8s.io/apimachinery from `v0.28.3` to `v0.28.4`. [[GH-1300](https://github.com/hashicorp/terraform-provider-helm/issues/1300)] +* Bump k8s.io/client-go from `v0.28.3` to `v0.28.4`. [[GH-1300](https://github.com/hashicorp/terraform-provider-helm/issues/1300)] +* Bump sigs.k8s.io/yaml from `v1.3.0` to `v1.4.0`. [[GH-1300](https://github.com/hashicorp/terraform-provider-helm/issues/1300)] + +## 2.12.0 (Nov 27, 2023) + +BUG FIXES: + +* `helm_release`: Fix perpetual diff when version attribute is an empty string [[GH-1246](https://github.com/hashicorp/terraform-provider-helm/issues/1246)] + +DEPENDENCIES: + +* Bump `helm.sh/helm/v3` from `3.12.0` to `3.13.1` + +## 2.11.0 (Aug 24, 2023) + +ENHANCEMENT: + +* `kubernetes/provider.go`: Add `tls_server_name` kubernetes provider options. [[GH-839](https://github.com/hashicorp/terraform-provider-helm/issues/839)] +* `resource/helm_release`: add `name` field validation to be limited to 53 characters. [[GH-1228](https://github.com/hashicorp/terraform-provider-helm/issues/1228)] + +BUG FIXES: + +* `helm/resource_release.go`: Fix: version conflicts when using local chart [[GH-1176](https://github.com/hashicorp/terraform-provider-helm/issues/1176)] +* `resource/helm_release`: Add nil check for `set_list.value` to prevent provider ChartPathOptions [[GH-1231](https://github.com/hashicorp/terraform-provider-helm/issues/1231)] + +## 2.10.1 (Jun 5, 2023) + +HOTFIX: + +* `helm_release`: Fix: Only recompute metadata if version actually changes. [[GH-1150](https://github.com/hashicorp/terraform-provider-helm/issues/1150)] + +## 2.10.0 (May 30, 2023) + +FEATURES: + +* `helm_release`: Add `set_list` attribute [[GH-1071](https://github.com/hashicorp/terraform-provider-helm/issues/1071)] + +BUG FIXES: + +* `helm_release`: Always recompute metadata when a release is updated [[GH-1097](https://github.com/hashicorp/terraform-provider-helm/issues/1097)] + +DEPENDENCIES: + +* Bump `helm.sh/helm/v3` from `3.11.2` to `3.12.0` [[GH-1143](https://github.com/hashicorp/terraform-provider-helm/issues/1143)] + +## 2.9.0 (February 14, 2023) + +FEATURES: + +* `provider`: Add a new attribute `burst_limit` for client-side throttling limit configuration. [[GH-1012](https://github.com/hashicorp/terraform-provider-helm/issues/1012)] + +ENHANCEMENT: + +* `data_source/helm_template`: Add a new attribute `crds` which when `include_crds` is set to `true` will be populated with a list of the manifests from the `crds/` folder of the chart. [[GH-1050](https://github.com/hashicorp/terraform-provider-helm/issues/1050)] + +BUG FIXES: + +* `resource/helm_release`: Fix an issue when the provider crashes with the error message `Provider produced inconsistent final plan` after upgrading from `v2.5.1` to `v2.6.0` and higher. That happened due to changes in the provider schema and the introduction of a new attribute `pass_credentials` that was not properly handled. [[GH-982](https://github.com/hashicorp/terraform-provider-helm/issues/982)] + +DOCS: + +* `data_source/helm_template`: Add a new attribute `crds` [[GH-1050](https://github.com/hashicorp/terraform-provider-helm/issues/1050)] +* `data_source/helm_template`: Correct some errors in examples. [[GH-1027](https://github.com/hashicorp/terraform-provider-helm/issues/1027)] +* `provider`: Add a new attribute `burst_limit`. [[GH-1012](https://github.com/hashicorp/terraform-provider-helm/issues/1012)] +* `provider`: Add a note regarding the `KUBECONFIG` environment variable. [[GH-1051](https://github.com/hashicorp/terraform-provider-helm/issues/1051)] +* `resource/helm_release`: Add usage example for `OCI` repositories. [[GH-1030](https://github.com/hashicorp/terraform-provider-helm/issues/1030)] +* `resource/helm_release`: Add usage examples for `GCS` and `S3` plugins. [[GH-1026](https://github.com/hashicorp/terraform-provider-helm/issues/1026)] + +DEPENDENCIES: + +* Bump `github.com/containerd/containerd` from `1.6.6` to `1.6.12` [[GH-1029](https://github.com/hashicorp/terraform-provider-helm/issues/1029)] +* Bump `golang.org/x/crypto` from `0.5.0` to `0.6.0` [[GH-1055](https://github.com/hashicorp/terraform-provider-helm/issues/1055)] +* Bump `helm.sh/helm/v3` from `3.9.4` to `3.11.1` [[GH-1036](https://github.com/hashicorp/terraform-provider-helm/issues/1036)] [[GH-1054](https://github.com/hashicorp/terraform-provider-helm/issues/1054)] +* Bump `k8s.io/client-go` from `0.24.2` to `0.26.1` [[GH-1037](https://github.com/hashicorp/terraform-provider-helm/issues/1037)] + +NOTES: + +* `provider`: `kubernetes.exec.api_version` no longer supports `client.authentication.k8s.io/v1alpha1`. Please, switch to `client.authentication.k8s.io/v1beta1` or `client.authentication.k8s.io/v1`. [[GH-1037](https://github.com/hashicorp/terraform-provider-helm/issues/1037)] + +## Community Contributors :raised_hands: +- @loafoe made their contribution in https://github.com/hashicorp/terraform-provider-helm/pull/1012 + +## 2.8.0 (December 13, 2022) + +FEATURES: + +* Add support for configuring OCI registries inside provider block [[GH-862](https://github.com/hashicorp/terraform-provider-helm/issues/862)] +* Add support for setting kube version on helm_template data source [[GH-994](https://github.com/hashicorp/terraform-provider-helm/issues/994)] + +BUG FIXES: + +* Fix larger diff than expected when updating helm_release "set" block value [[GH-915](https://github.com/hashicorp/terraform-provider-helm/issues/915)] + +## 2.7.1 (October 12, 2022) + +BUG FIXES: + +* Crash Fix: Fix Unknown Value in Manifest Diff [[GH-966](https://github.com/hashicorp/terraform-provider-helm/issues/966)] + +## 2.7.0 (September 28, 2022) + +FEATURES: + +* Update helm package to 3.9.4 (#945) +* Show Manifest when creating release [[GH-903](https://github.com/hashicorp/terraform-provider-helm/issues/903)] + +BUG FIXES: + +* Do dependency update in resourceDiff #771 (#855) +* Crash: Fix `show_only` crash when string is empty [[GH-950](https://github.com/hashicorp/terraform-provider-helm/issues/950)] + +## 2.6.0 (June 17, 2022) + +IMPROVEMENTS: +* Upgrade helm dependency to 3.9.0 (#867) +* Add `args` attribute in `post_render` block in (#869) +* Add `pass_credentials` attribute (#841) +* Add `proxy_url` attribute to provider block (#843) + +BUG FIXES: +* Don't persist state when update causes an error (#857) + +## 2.5.1 (April 11, 2022) + +FIX: +* Only run OCI login on create and update (#846) +* OCI login concurrency issue (#848) + +## 2.5.0 (March 28, 2022) + +* Upgrade helm dependency to v3.8.1 +* Add support for OCI registries + +## 2.4.1 (November 09, 2021) + +HOTFIX: +* Fix exec plugin interactive mode regression (#798) + +## 2.4.0 (November 08, 2021) + +* Upgrade helm to 3.7.1 + +## 2.3.0 (August 27, 2021) + +* Support templates with multiple resources in helm_template data source (#772) +* Upgrade helm to 3.6.2 + +## 2.2.0 (June 10, 2021) + +* Add support for stand-alone debug mode (launch with -debug argument) (#748) +* Add helm_template data source to render chart templates locally (#483) +* Surface diagnostics when helm release creation fails (#727) + +## 2.1.2 (April 27, 2021) + +* Fix dependency download on resource update (#580) +* Add support for the --wait-for-jobs option (#720) + +## 2.1.1 (April 16, 2021) + +* Fix dry-run happening at plan when manifest is not enabled (#724) + +## 2.1.0 (April 01, 2021) + +IMPROVEMENTS: +* Add chart diff support by storing the rendered manifest (#702) +* Update to Helm 3.5.3 (#709) +* Docs: add link to Learn tutorial (#714) + +BUG FIXES: +* Remove kubeconfig file check (#708) + +## 2.0.3 (March 11, 2021) + +BUG FIXES: +* Fix documentation for KUBE_TOKEN env var name (#684) +* Fix destroy stage error for charts with "helm.sh/resource-policy:keep" annotation (#671) +* Fix read function to set resource id to null when not found (#674) + +IMPROVEMENTS: +* Update provider configuration docs (#673) + +## 2.0.2 (January 18, 2021) + +BUG FIXES: +* Remove check for empty kubernetes block + +## 2.0.1 (December 19, 2020) + +BUG FIXES: +* Move kubernetes config check out of providerConfigure (#648) + +## 2.0.0 (December 19, 2020) + +BREAKING CHANGES: +Please review our [upgrade guide](https://github.com/hashicorp/terraform-provider-helm/blob/master/website/docs/guides/v2-upgrade-guide.markdown). + +* Update Terraform SDK to v2 (#594). +* Remove deprecated helm_repository resource and data source (#600) +* Remove implicit support for KUBECONFIG (#604) +* Remove load_config_file attribute (#604) +* Remove set_string attribute from helm_release (#608) + +IMPROVEMENTS: +* Add support for multiple paths to kubeconfig files (#636) +* Remove remote dependencies from test-fixtures (#638) +* Set up matrix build to run acc tests against different tf versions (#637) + + +## 1.3.2 (October 07, 2020) + +BUG FIXES: +* Fix nil pointer crash when using Helm plugins (#598) + +## 1.3.1 (September 29, 2020) + +IMPROVEMENTS: +* Upgrade Helm to 3.3.4 (#572) + +## 1.3.0 (September 02, 2020) + +IMPROVEMENTS: +* Added app_version to metadata attribute block (#532) + +BUG FIXES: +* Fix nil path for `dependency_update` flag (#482) + +## 1.2.4 (July 22, 2020) + +BUG FIXES: + +* Update go-version for CVE-2020-14039 (#548) + +## 1.2.3 (June 16, 2020) + +BUG FIXES: + +* Fix concurrent read/write crash (#525) +* Fix for provider hang (#505) + +## 1.2.2 (June 01, 2020) + +BUG FIXES: + +* Add a lint attribute to helm_release (#514) + +## 1.2.1 (May 08, 2020) + +BUG FIXES: + +* Fix linter crash (#487) + +## 1.2.0 (May 06, 2020) + +IMPROVEMENTS: + +* Cloak sensitive values in metadata field (#480) +* Upgrade to Helm 3.2.0 +* Deprecate helm_repository data source +* Lint chart at plan time + +## 1.1.1 (March 26, 2020) + +BUG FIXES: + +* Fix chart path bug causing unwanted diff (#449) + +## 1.1.0 (March 19, 2020) + +IMPROVEMENTS: + +* Add import feature for helm_release (#394) +* Run acceptance tests in travis-ci using kind +* Upgrade helm to version v3.1.2 (#440) +* Add description attribute +* Add post-rendering support + +BUG FIXES: + +* Fix errors being swallowed when creating a helm_release (#406) +* Various documentation fixes + +## 1.0.0 (February 05, 2020) + +BREAKING CHANGES: + +* No longer supports helm v2 (#378) +* Provider no longer supports the following parameters + * host + * home + * namespace + * init_helm_home + * install_tiller + * tiller_image + * connection_timeout + * service_account + * automount_service_account_token + * override + * max_history (Moved to the release) + * plugins_disable + * insecure + * enable_tls + * client_key + * client_certificate + * ca_certificate +* Release no longer supports the following parameters + * disable_crd_hooks +* Release Parameters that were renamed + * reuse was renamed to replace to match the rename in helm v3 + +IMPROVEMENTS: + +* Upgrade Helm to v3.0 +* Adds the following parameters to the provider + * plugins_path - (Optional) The path to the plugins directory. Defaults to `HELM_PLUGINS` env if it is set, otherwise uses the default path set by helm. + * registry_config_path - (Optional) The path to the registry config file. Defaults to `HELM_REGISTRY_CONFIG` env if it is set, otherwise uses the default path set by helm. + * repository_config_path - (Optional) The path to the file containing repository names and URLs. Defaults to `HELM_REPOSITORY_CONFIG` env if it is set, otherwise uses the default path set by helm. + * repository_cache - (Optional) The path to the file containing cached repository indexes. Defaults to `HELM_REPOSITORY_CACHE` env if it is set, otherwise uses the default path set by helm. + * helm_driver - (Optional) "The backend storage driver. Valid values are: `configmap`, `secret`, `memory`. Defaults to `secret` +* Adds the following parameters to the release + * repository_key_file - (Optional) The repositories cert key file + * repository_cert_file - (Optional) The repositories cert file + * repository_ca_file - (Optional) The Repositories CA File. + * repository_username - (Optional) Username for HTTP basic authentication against the repository. + * repository_password - (Optional) Password for HTTP basic authentication against the reposotory. + * reset_values - (Optional) When upgrading, reset the values to the ones built into the chart. Defaults to `false`. + * cleanup_on_fail - (Optional) Allow deletion of new resources created in this upgrade when upgrade fails. Defaults to `false`. + * max_history - (Optional) Maximum number of release versions stored per release. Defaults to 0 (no limit). + * atomic - (Optional) If set, installation process purges chart on fail. The wait flag will be set automatically if atomic is used. Defaults to false. + * skip_crds - (Optional) If set, no CRDs will be installed. By default, CRDs are installed if not already present. Defaults to false. + * render_subchart_notes - (Optional) If set, render subchart notes along with the parent. Defaults to true. + * dependency_update - (Optional) Runs helm dependency update before installing the chart. Defaults to false + + +## 0.10.5 (Unreleased) +## 0.10.4 (October 28, 2019) + +BUG FIXES: + +* Tiller installed version should match helm client (#365) + +## 0.10.3 (October 27, 2019) + +IMPROVEMENTS: + +* Upgrade Helm to v2.15.1 and Kubernetes to v1.15.5 +* Migrate to terraform-plugin-sdk +* Allow for colon separated KUBECONFIG (#98) +* Modernise docs + +BUG FIXES: + +* Remove manual installation instructions +* Fix loading kubeconfig when disabled (#307) +* Don't enable TLS if `enable_tls` is false (#245) +* Remove ForceNew on repo and chart changes (#173) + +## 0.10.2 (August 07, 2019) + +BUG FIXES: + +* Revert "Escape commas in set_string" (#310) + +## 0.10.1 (July 30, 2019) + +IMPROVEMENTS: + +* Update helm and tiller to 2.14.1 (#294) +* Wait for tiller if it's not ready (#295) + +## 0.10.0 (June 18, 2019) + +FEATURES: + +* Automatically initialize the configured helm home directory (#185) + +IMPROVEMENTS: + +* Update helm and tiller to 2.14.0 (#277) +* Update terraform to 0.12.1 (#289 #290) + +BUG FIXES: + +* Fix concurrency issues reading multiple repos (#272) +* Documentation fixes (#262 #270 #276) +* helm/resource_release: typo fixes (#282) + +## 0.9.1 (April 24, 2019) + +FEATURES: + +IMPROVEMENTS: + +* Migrate to Terraform 0.12 SDK +* Move to Go modules for dep-management + +BUG FIXES: + +* Properly handle commas in attribute values +* Documentation fixes + +## 0.9.0 (March 07, 2019) +FEATURES: + +* `helm_repository` is now a data source. We retain backwards compatibility through `DataSourceResourceShim` (#221) +* Use configured helm home when reading default TLS settings (#210) +* Added `load_config_file` option to enable or disable the load of kubernetes config file (#231) + +IMPROVEMENTS: + +* CI and doc improvements + +## 0.8.0 (February 11, 2019) + +FEATURES: + +* Added the possibility to set sensitive values (#153) + +IMPROVEMENTS: + +* Multiple README, logs and docs improvements +* Go 1.11 and modules (#179, #200 and #201) +* Default tiller version v2.11.0 (#194) +* Suppress diff of "keyring" and "devel" attributes (#193) +* Add entries to .gitignore to roughly match the Google provider (#206) + +BUG FIXES: + +* Fix when Helm provider ignores FAILED release state (#161) +* Use `127.0.0.1` as default `localhost` (#207) + +## 0.7.0 (December 17, 2018) + +- Based on Helm 2.11 + +## 0.6.2 (October 26, 2018) + +- Bug fix: A recursion between the read and create methods as described in PR #137 + +## 0.6.1 (October 25, 2018) + +- Re-release after induction into 'terraform-providers'. This is to align to the de-facto repository version sequence. + +## 0.1.0 (October 10, 2018) + +- Initial Release by Hashicorp diff --git a/shuttles/terraform/terraform-provider-helm/CHANGELOG_GUIDE.md b/shuttles/terraform/terraform-provider-helm/CHANGELOG_GUIDE.md new file mode 100644 index 0000000..ba78bd8 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/CHANGELOG_GUIDE.md @@ -0,0 +1,111 @@ +# How To Use + +Helm Provider uses `go-changelog` to generate its changelog on release: + +* https://github.com/hashicorp/go-changelog + +To install, run the following commands: + +``` +go install github.com/hashicorp/go-changelog/cmd/changelog-build +go install github.com/hashicorp/go-changelog/cmd/changelog-entry +``` + +Either command can be ran with the following make command: + +``` +make changelog +make changelog-entry +``` + +## CHANGELOG entry examples + +CHANGELOG entries are expected to be txt files created inside this folder +`.changelog`. The file name is expected to be the same pull request number that will +be linked when the CHANGELOG is generated. So for example, if your pull request is +\#1234, your file name would be `.changelog/1234.txt`. + +While for git commit messages, we expect the leading subject to be more specific +as to the section it updates, for example a change with k8s might be: + +``` +builtin/k8s: Add support for feature Y + +This commit adds support for feature Y.... +``` + +The changelog entry should be more user facing friendly, so it would instead read: + +~~~ +```release-note:improvement +plugin/k8s: Add support for feature Y +``` +~~~ + +Below are some examples of how to generate a CHANGELOG entry with your pull +request. + +### Improvement + +~~~ +```release-note:improvement +server: Add new option for configs +``` +~~~ + +### Feature + +~~~ +```release-note:feature +plugin/nomad: New feature integration +``` +~~~ + +### Bug + +~~~ +```release-note:bug +plugin/docker: Fix broken code +``` +~~~ + +### Multiple Entries + +~~~ +```release-note:bug +plugin/docker: Fix broken code +``` + +```release-note:bug +plugin/nomad: Fix broken code +``` + +```release-note:bug +plugin/k8s: Fix broken code +``` +~~~ + +### Long Description with Markdown + +~~~ +```release-note:feature +cli: Lorem ipsum dolor `sit amet`, _consectetur_ adipiscing elit, **sed** do +eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim +veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo +consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse +cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non +proident, sunt in culpa qui officia deserunt mollit anim id est laborum. +``` +~~~ + +## How to generate CHANGELOG entries for release + +Below is an example for running `go-changelog` to generate a collection of +entries. It will generate output that can be inserted into CHANGELOG.md. + +For more information as to what each flag does, make sure to run `changelog-build -help`. + +``` +changelog-build -last-release v0.5.0 -entries-dir .changelog/ -changelog-template changelog.tmpl -note-template note.tmpl -this-release 86b6b38faa7c69f26f1d4c71e271cd4285daadf9 +``` + diff --git a/shuttles/terraform/terraform-provider-helm/GNUmakefile b/shuttles/terraform/terraform-provider-helm/GNUmakefile new file mode 100644 index 0000000..ec8cf76 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/GNUmakefile @@ -0,0 +1,130 @@ +TEST?="./helm" +GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor) +COVER_TEST?=$$(go list ./... |grep -v 'vendor') +WEBSITE_REPO=github.com/hashicorp/terraform-website +PKG_NAME=helm + +PKG_OS ?= darwin linux +PKG_ARCH ?= amd64 +BASE_PATH ?= $(shell pwd) +BUILD_PATH ?= $(BASE_PATH)/build +PROVIDER := $(shell basename $(BASE_PATH)) +BRANCH := $(shell git rev-parse --abbrev-ref HEAD) +VERSION ?= v0.0.0 +ifneq ($(origin TRAVIS_TAG), undefined) + BRANCH := $(TRAVIS_TAG) + VERSION := $(TRAVIS_TAG) +endif +# For changelog generation, default the last release to the last tag on +# any branch, and this release to just be the current branch we're on. +LAST_RELEASE?=$$(git describe --tags $$(git rev-list --tags --max-count=1)) +THIS_RELEASE?=$$(git rev-parse --abbrev-ref HEAD) + +default: build + +build: fmtcheck + go build -v . + +# expected to be invoked by make changelog LAST_RELEASE=gitref THIS_RELEASE=gitref +changelog: + @echo "Generating changelog for $(THIS_RELEASE) from $(LAST_RELEASE)..." + @echo + @changelog-build -last-release $(LAST_RELEASE) \ + -entries-dir .changelog/ \ + -changelog-template .changelog/changelog.tmpl \ + -note-template .changelog/note.tmpl \ + -this-release $(THIS_RELEASE) + +changelog-entry: + @changelog-entry -dir .changelog/ + + +test: fmtcheck + go test $(TEST) -v || exit 1 + echo $(TEST) | \ + xargs -t -n4 go test $(TESTARGS) -timeout=30s + +testacc: fmtcheck + TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 10m + +testrace: fmtcheck + TF_ACC= go test -race $(TEST) $(TESTARGS) + +cover: + @go tool cover 2>/dev/null; if [ $$? -eq 3 ]; then \ + go get -u golang.org/x/tools/cmd/cover; \ + fi + go test $(COVER_TEST) -coverprofile=coverage.out + go tool cover -html=coverage.out + rm coverage.out + +vet: + @echo "go vet ." + @go vet $$(go list ./... | grep -v vendor/) ; if [ $$? -eq 1 ]; then \ + echo ""; \ + echo "Vet found suspicious constructs. Please check the reported constructs"; \ + echo "and fix them if necessary before submitting the code for review."; \ + exit 1; \ + fi + +fmt: + gofmt -w $(GOFMT_FILES) + +fmtcheck: + @sh -c "'$(CURDIR)/scripts/gofmtcheck.sh'" + +errcheck: + @sh -c "'$(CURDIR)/scripts/errcheck.sh'" + +test-compile: fmtcheck + @if [ "$(TEST)" = "./..." ]; then \ + echo "ERROR: Set TEST to a specific package. For example,"; \ + echo " make test-compile TEST=./helm"; \ + exit 1; \ + fi + go test -c $(TEST) $(TESTARGS) + +packages: + @for os in $(PKG_OS); do \ + for arch in $(PKG_ARCH); do \ + mkdir -p $(BUILD_PATH)/$(PROVIDER)_$${os}_$${arch} && \ + cd $(BASE_PATH) && \ + CGO_ENABLED=0 GOOS=$${os} GOARCH=$${arch} go build -o $(BUILD_PATH)/$(PROVIDER)_$${os}_$${arch}/$(PROVIDER)_$(VERSION) . && \ + cd $(BUILD_PATH) && \ + tar -cvzf $(BUILD_PATH)/$(PROVIDER)_$(BRANCH)_$${os}_$${arch}.tar.gz $(PROVIDER)_$${os}_$${arch}/; \ + done; \ + done; + +clean: + @rm -rf $(BUILD_PATH) + +# The docker command and run options may be overridden using env variables DOCKER and DOCKER_RUN_OPTS. +# Example: +# DOCKER="podman --cgroup-manager=cgroupfs" make website-lint +# DOCKER_RUN_OPTS="--userns=keep-id" make website-lint +# This option is needed for systems using SELinux and rootless containers. +# DOCKER_VOLUME_OPTS="rw,Z" +# For more info, see https://docs.docker.com/storage/bind-mounts/#configure-the-selinux-label +DOCKER?=$(shell which docker) +ifeq ($(strip $(DOCKER)),) +$(error "Docker binary could not be found in PATH. Please install docker, or specify an alternative by setting DOCKER=/path/to/binary") +endif +DOCKER_VOLUME_OPTS?="rw" +DOCKER_SELINUX := $(shell which setenforce) +ifeq ($(.SHELLSTATUS),0) +DOCKER_VOLUME_OPTS="rw,Z" +endif +# PROVIDER_DIR_DOCKER is used instead of PWD since docker volume commands can be dangerous to run in $HOME. +# This ensures docker volumes are mounted from within provider directory instead. +PROVIDER_DIR_DOCKER := $(abspath $(lastword $(dir $(MAKEFILE_LIST)))) + +website-lint: + @echo "==> Checking website against linters..." + @echo "==> Running markdownlint-cli using DOCKER='$(DOCKER)', DOCKER_RUN_OPTS='$(DOCKER_RUN_OPTS)' and DOCKER_VOLUME_OPTS='$(DOCKER_VOLUME_OPTS)'" + @$(DOCKER) run --rm $(DOCKER_RUN_OPTS) -v $(PROVIDER_DIR_DOCKER):/workspace:$(DOCKER_VOLUME_OPTS) -w /workspace 06kellyjac/markdownlint-cli ./docs \ + && (echo; echo "PASS - website markdown files pass linting"; echo ) \ + || (echo; echo "FAIL - issues found in website markdown files"; echo ; exit 1) + @echo "==> Checking for broken links..." + @scripts/markdown-link-check.sh "$(DOCKER)" "$(DOCKER_RUN_OPTS)" "$(DOCKER_VOLUME_OPTS)" "$(PROVIDER_DIR_DOCKER)" + +.PHONY: build test testacc testrace cover vet fmt fmtcheck errcheck test-compile packages clean website-lint changelog changelog-entry diff --git a/shuttles/terraform/terraform-provider-helm/LICENSE b/shuttles/terraform/terraform-provider-helm/LICENSE new file mode 100644 index 0000000..b9ac071 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/LICENSE @@ -0,0 +1,375 @@ +Copyright (c) 2017 HashiCorp, Inc. + +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. diff --git a/shuttles/terraform/terraform-provider-helm/META.d/_summary.yaml b/shuttles/terraform/terraform-provider-helm/META.d/_summary.yaml new file mode 100644 index 0000000..080c718 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/META.d/_summary.yaml @@ -0,0 +1,15 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + +--- + +schema: 1.1 + +partition: tf-ecosystem + +summary: + owner: team-tf-hybrid-cloud + description: | + This Helm provider for Terraform allows you to install and manage Helm Charts in your Kubernetes cluster using Terraform. + + visibility: external \ No newline at end of file diff --git a/shuttles/terraform/terraform-provider-helm/META.d/links.yaml b/shuttles/terraform/terraform-provider-helm/META.d/links.yaml new file mode 100644 index 0000000..efd49fc --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/META.d/links.yaml @@ -0,0 +1,10 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + +runbooks: [] +#- name: +# link: + +other_links: [] +#- name: +# link: \ No newline at end of file diff --git a/shuttles/terraform/terraform-provider-helm/README.md b/shuttles/terraform/terraform-provider-helm/README.md new file mode 100644 index 0000000..a34fe6b --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/README.md @@ -0,0 +1,60 @@ + + Terraform logo + + +# Helm Provider for Terraform [![Actions Status](https://github.com/hashicorp/terraform-provider-helm/workflows/tests/badge.svg)](https://github.com/hashicorp/terraform-provider-helm/actions)[![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/hashicorp/terraform-provider-helm?label=release)](https://github.com/hashicorp/terraform-provider-helm/releases)[![license](https://img.shields.io/github/license/hashicorp/terraform-provider-helm.svg)]()[![Go Report Card](https://goreportcard.com/badge/github.com/hashicorp/terraform-provider-helm)](https://goreportcard.com/report/github.com/hashicorp/terraform-provider-helm) + + +- [Documentation](https://www.terraform.io/docs/providers/helm/index.html) +- [#terraform-providers in Kubernetes Slack](https://kubernetes.slack.com/messages/CJY6ATQH4) ([Sign up here](http://slack.k8s.io/)) + +This is the [Helm](https://github.com/kubernetes/helm) provider for [Terraform](https://www.terraform.io/). + +This provider allows you to install and manage [Helm Charts](https://artifacthub.io/packages/search?kind=0&sort=relevance&page=1) in your Kubernetes cluster using Terraform. + + +## Contents + +* [Requirements](#requirements) +* [Getting Started](#getting-started) +* [Contributing to the provider](#contributing) + +## Requirements + +- [Terraform](https://www.terraform.io/downloads.html) v1.x.x +- [Go](https://golang.org/doc/install) v1.22.x (to build the provider plugin) + +## Getting Started + +This is a small example of how to install the nginx ingress controller chart. Please read the [documentation](https://www.terraform.io/docs/providers/helm/index.html) for more +information. + +```hcl +provider "helm" { + kubernetes = { + config_path = "~/.kube/config" + } +} + +resource "helm_release" "nginx_ingress" { + name = "nginx-ingress-controller" + + repository = "oci://registry-1.docker.io/bitnamicharts" + chart = "nginx-ingress-controller" + + set = [ + { + name = "service.type" + value = "ClusterIP" + } + ] +} +``` + +## Contributing + +The Helm Provider for Terraform is the work of many contributors. We appreciate your help! + +To contribute, please read the [contribution guidelines](_about/CONTRIBUTING.md). You may also [report an issue](https://github.com/hashicorp/terraform-provider-helm/issues/new/choose). Once you've filed an issue, it will follow the [issue lifecycle](_about/ISSUES.md). + +Also available are some answers to [Frequently Asked Questions](_about/FAQ.md). diff --git a/shuttles/terraform/terraform-provider-helm/_about/CONTRIBUTING.md b/shuttles/terraform/terraform-provider-helm/_about/CONTRIBUTING.md new file mode 100644 index 0000000..40d1dfe --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/_about/CONTRIBUTING.md @@ -0,0 +1,37 @@ +Developing the Provider +------------ + +Thank you for your interest in contributing to the Helm provider. We welcome your contributions. Here you'll find information to help you get started with provider development. + +## Documentation + +Our [provider development documentation](https://www.terraform.io/docs/extend/) provides a good start into developing an understanding of provider development. It's the best entry point if you are new to contributing to this provider. + +To learn more about how to create issues and pull requests in this repository, and what happens after they are created, you may refer to the resources below: +- [Issue creation and lifecycle](ISSUES.md) +- [Pull Request creation and lifecycle](PULL_REQUESTS.md) + +### Installation from sources + +If you wish to compile the provider from source code, you'll first need [Go](http://www.golang.org) installed on your machine (version >=1.14 is *required*). You'll also need to correctly setup a [GOPATH](http://golang.org/doc/code.html#GOPATH), as well as adding `$GOPATH/bin` to your `$PATH`. + +Clone repository to: `$GOPATH/src/github.com/hashicorp/terraform-provider-helm` + +```sh +> mkdir -p $GOPATH/src/github.com/terraform-providers +> git clone https://github.com/hashicorp/terraform-provider-helm.git $GOPATH/src/github.com/hashicorp/terraform-provider-helm +``` + +Enter the provider directory and build the provider + +```sh +> cd $GOPATH/src/github.com/hashicorp/terraform-provider-helm +> make build +``` + +Now copy the compiled binary to the Terraform plugins folder. If this is your first plugin it may not be present. + +```sh +> mkdir -p ~/.terraform.d/plugins/ +> mv terraform-provider-helm ~/.terraform.d/plugins/ +``` diff --git a/shuttles/terraform/terraform-provider-helm/_about/FAQ.md b/shuttles/terraform/terraform-provider-helm/_about/FAQ.md new file mode 100644 index 0000000..99c758b --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/_about/FAQ.md @@ -0,0 +1,45 @@ +# Frequently Asked Questions + +### Who are the maintainers? + +The HashiCorp Terraform Kubernetes provider team is : + +* Vishnu Ravindra, Product Manager - [@vravind1](https://github.com/vravind1) +* Alex Somesan, Engineer - [@alexsomesan](https://github.com/alexsomesan) +* John Houston, Engineer - [@jrhouston](https://github.com/jrhouston) +* Sacha Rybolovlev, Engineer - [@arybolovlev](https://github.com/arybolovlev) +* Mauricio Alvarez Leon, Engineer - [@BBBmau](https://github.com/BBBmau) +* Sheneska Williams, Engineer - [@sheneska](https://github.com/sheneska) +* Brandy Jackson, Engineering Manager - [@ibrandyjackson](https://github.com/ibrandyjackson) + +Our collaborators are: +* Maximo Cuadros - [@mcuadros](https://github.com/mcuadros) + +### Why isn’t my PR merged yet? + +Unfortunately, due to the volume of issues and new pull requests we receive, we are unable to give each one the full attention that we would like. We do our best to focus on the contributions that provide the greatest value to the most community members. + +### How do you decide what gets merged for each release? + +The number one factor we look at when deciding what issues to look at are your 👍 [reactions](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue/PR description as these can be easily discovered. Comments that further explain desired use cases or poor user experience are also heavily factored. The items with the most support are always on our radar, and we do our best to keep the community updated on their status and potential timelines. + +We also are investing time to improve the contributing experience by improving documentation. + + +### Backward Compatibility Promise + +Our policy is described on the Terraform website [here](https://www.terraform.io/docs/extend/best-practices/versioning.html). While we do our best to prevent breaking changes until major version releases of the provider, it is generally recommended to [pin the provider version in your configuration](https://www.terraform.io/docs/configuration/providers.html#provider-versions). + +Due to the constant release pace of Kubernetes and the relatively infrequent major version releases of the provider, there can be cases where a minor version update may contain unexpected changes depending on your configuration or environment. + +### Where is the result of NOTES.txt? + +Helm charts often contain NOTES.txt output that provide helpful next steps and occasionally provide debug information on missing environment variables etc. At present, this provider will not output or log the result of NOTES.txt on any installed charts. Temporarily install the chart via helm directly to see the output of NOTES.txt + +### How can I help? + +Check out the [Contributing Guide](CONTRIBUTING.md) for additional information. + +### How can I become a maintainer? + +This is an area under active research. Stay tuned! diff --git a/shuttles/terraform/terraform-provider-helm/_about/ISSUES.md b/shuttles/terraform/terraform-provider-helm/_about/ISSUES.md new file mode 100644 index 0000000..f5ec444 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/_about/ISSUES.md @@ -0,0 +1,56 @@ +# Issue Reporting and Lifecycle + +## Issue Reporting Checklists + +We welcome your feature requests and bug reports. Below you'll find short checklists with guidelines for well-formed +issues of each type. + +### [Bug Reports](https://github.com/hashicorp/terraform-provider-helm/issues/new/choose) + + - [ ] __Test against the latest release__: Make sure you test against the latest + released version. It is possible we already fixed the bug you're experiencing. + + - [ ] __Search for possible duplicate reports__: It's helpful to keep bug + reports consolidated to one thread, so do a quick search on existing bug + reports to check if anybody else has reported the same thing. You can [scope + searches by the label "bug"](https://github.com/hashicorp/terraform-provider-helm/issues?q=is%3Aopen+is%3Aissue+label%3Abug) to help narrow things down. + + - [ ] __Include steps to reproduce__: Provide steps to reproduce the issue, + along with your `.tf` files, with secrets removed, so we can try to + reproduce it. Without this, it makes it much harder to fix the issue. + + - [ ] __For panics, include `crash.log`__: If you experienced a panic, please + create a [gist](https://gist.github.com) of the *entire* generated crash log + for us to look at. Double check no sensitive items were in the log. + +### [Feature Requests](https://github.com/hashicorp/terraform-provider-helm/issues/new/choose) + + - [ ] __Search for possible duplicate requests__: It's helpful to keep requests + consolidated to one thread, so do a quick search on existing requests to + check if anybody else has reported the same thing. You can [scope searches by + the label "enhancement"](https://github.com/hashicorp/terraform-provider-helm/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement) to help narrow things down. + + - [ ] __Include a use case description__: In addition to describing the + behavior of the feature you'd like to see added, it's helpful to also lay + out the reason why the feature would be important and how it would benefit + Terraform users. + + +## Issue Lifecycle + +1. The issue is reported on Github. + +2. The issue is verified and categorized by a Terraform collaborator. + Categorization is done via GitHub labels. We use + one of `bug`, `enhancement`, `documentation`, or `question` using some automated workflows. + +3. An initial triage process determines whether the issue is critical and must + be addressed immediately, or can be left open for community discussion. In this step, we typically assign a size estimate to the work involved for that issue for our reference. We'll label the issue `acknowledged` when we've run through this step. + +4. The issue queued in our backlog to be addressed in a pull request or commit. The issue number will be + referenced in the commit message so that the code that fixes it is clearly + linked. + +5. The issue is closed. Sometimes, valid issues will be closed because they are + tracked elsewhere or non-actionable. The issue is still indexed and + available for future viewers, or can be re-opened if necessary. diff --git a/shuttles/terraform/terraform-provider-helm/_about/PULL_REQUESTS.md b/shuttles/terraform/terraform-provider-helm/_about/PULL_REQUESTS.md new file mode 100644 index 0000000..94a3cb7 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/_about/PULL_REQUESTS.md @@ -0,0 +1,46 @@ +# Pull Request Submission and Lifecycle + +We appreciate direct contributions to the provider codebase. Here's what to +expect: + + * For pull requests that follow the guidelines, we will proceed to reviewing + and merging, following the provider team's review schedule. There may be some + internal or community discussion needed before we can complete this. + * Pull requests that don't follow the guidelines will be commented with what + they're missing. The person who submits the pull request or another community + member will need to address those requests before they move forward. + +## Pull Request Lifecycle + +1. [Fork the GitHub repository](https://help.github.com/en/articles/fork-a-repo), + modify the code, and [create a pull request](https://help.github.com/en/articles/creating-a-pull-request-from-a-fork). + You are welcome to submit your pull request for commentary or review before + it is fully completed by creating a [draft pull request](https://help.github.com/en/articles/about-pull-requests#draft-pull-requests). + Please include specific questions or items you'd like feedback on. + +1. Our documentation utilizes the [`tfplugindocs`](https://github.com/hashicorp/terraform-plugin-docs) tool. When making updates to documentation, please only edit the `.md.tmpl` files and execute the `tfplugindocs generate` command to ensure the changes are reflected in the `.md` files. + +1. Once you believe your pull request is ready to be reviewed, ensure the + pull request is not a draft pull request by [marking it ready for review](https://help.github.com/en/articles/changing-the-stage-of-a-pull-request) and a + maintainer will review it. + +1. One of Terraform's provider team members will look over your contribution and + either approve it or provide comments letting you know if there is anything + left to do. We do our best to keep up with the volume of PRs waiting for + review, but it will take some time for us to reach your PR based on the tasks we have in our backlog. Please do not leave LGTM comments or approvals on PRs unless you are a maintainer on the repository. + +1. Once all outstanding comments and checklist items have been addressed, your + contribution will be merged! Merged PRs will be included in the next + Terraform release. The provider team takes care of updating the CHANGELOG as + they merge. + +1. In some cases, we might decide that a PR should be closed without merging. + We'll make sure to provide clear reasoning when this happens. + + +### Go Coding Style + +The following Go language resources provide common coding preferences that may be referenced during review, if not automatically handled by the project's linting tools. + +- [Effective Go](https://golang.org/doc/effective_go.html) +- [Go Code Review Comments](https://github.com/golang/go/wiki/CodeReviewComments) diff --git a/shuttles/terraform/terraform-provider-helm/docs/data-sources/template.md b/shuttles/terraform/terraform-provider-helm/docs/data-sources/template.md new file mode 100644 index 0000000..8bdd71e --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/docs/data-sources/template.md @@ -0,0 +1,232 @@ +--- +page_title: "helm: helm_template" +sidebar_current: "docs-helm-template" +description: |- + +--- +# Data Source: helm_template + +Render chart templates locally. + +`helm_template` renders chart templates locally and exposes the rendered manifests in the data source attributes. `helm_template` mimics the functionality of the `helm template` command. + +The arguments aim to be identical to the `helm_release` resource. + +For further details on the `helm template` command, refer to the [Helm documentation](https://helm.sh/docs/helm/helm_template/). + + +## Schema + +### Required + +- `chart` (String) Chart name to be installed. A path may be used. +- `name` (String) Release name. + +### Optional + +- `api_versions` (List of String) Kubernetes api versions used for Capabilities.APIVersions +- `atomic` (Boolean) If set, installation process purges chart on fail. The wait flag will be set automatically if atomic is used. Defaults to `false`. +- `crds` (List of String) List of rendered CRDs from the chart. +- `create_namespace` (Boolean) Create the namespace if it does not exist. Defaults to `false`. +- `dependency_update` (Boolean) Run helm dependency update before installing the chart. Defaults to `false`. +- `description` (String) Add a custom description +- `devel` (Boolean) Use chart development versions, too. Equivalent to version '>0.0.0-0'. If `version` is set, this is ignored +- `disable_openapi_validation` (Boolean) If set, the installation process will not validate rendered templates against the Kubernetes OpenAPI Schema.Defaults to `false`. +- `disable_webhooks` (Boolean) Prevent hooks from running.Defaults to `300` seconds. +- `include_crds` (Boolean) Include CRDs in the templated output +- `is_upgrade` (Boolean) Set .Release.IsUpgrade instead of .Release.IsInstall +- `keyring` (String) Location of public keys used for verification. Used only if `verify` is true. Defaults to `/.gnupg/pubring.gpg` in the location set by `home`. +- `kube_version` (String) Kubernetes version used for Capabilities.KubeVersion +- `manifest` (String) Concatenated rendered chart templates. This corresponds to the output of the `helm template` command. +- `manifests` (Map of String) Map of rendered chart templates indexed by the template name. +- `namespace` (String) Namespace to install the release into. Defaults to `default`. +- `notes` (String) Rendered notes if the chart contains a `NOTES.txt`. +- `pass_credentials` (Boolean) Pass credentials to all domains. Defaults to `false`. +- `postrender` (Block List, Max: 1) Postrender command configuration. (see [below for nested schema](#nestedblock--postrender)) +- `render_subchart_notes` (Boolean) If set, render subchart notes along with the parent. Defaults to `true`. +- `replace` (Boolean) Re-use the given name, even if that name is already used. This is unsafe in production. Defaults to `false`. +- `repository` (String) Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository. +- `repository_ca_file` (String) The Repositories CA File +- `repository_cert_file` (String) The repositories cert file +- `repository_key_file` (String) The repositories cert key file +- `repository_password` (String, Sensitive) Password for HTTP basic authentication +- `repository_username` (String) Username for HTTP basic authentication +- `reset_values` (Boolean) When upgrading, reset the values to the ones built into the chart.Defaults to `false`. +- `reuse_values` (Boolean) When upgrading, reuse the last release's values and merge in any overrides. If 'reset_values' is specified, this is ignored. Defaults to `false`. +- `set` (Block Set) Custom values to be merged with the values. (see [below for nested schema](#nestedblock--set)) +- `set_list` (Block List) Custom list values to be merged with the values. (see [below for nested schema](#nestedblock--set_list)) +- `set_sensitive` (Block Set) Custom sensitive values to be merged with the values. (see [below for nested schema](#nestedblock--set_sensitive)) +- `set_string` (Block Set, Deprecated) Custom string values to be merged with the values. (see [below for nested schema](#nestedblock--set_string)) +- `show_only` (List of String) Only show manifests rendered from the given templates +- `skip_crds` (Boolean) If set, no CRDs will be installed. By default, CRDs are installed if not already present. Defaults to `false`. +- `skip_tests` (Boolean) If set, tests will not be rendered. By default, tests are rendered. Defaults to `false`. +- `timeout` (Number) Time in seconds to wait for any individual kubernetes operation. Defaults to `300` seconds. +- `validate` (Boolean) Validate your manifests against the Kubernetes cluster you are currently pointing at. This is the same validation performed on an install +- `values` (List of String) List of values in raw yaml format to pass to helm. +- `verify` (Boolean) Verify the package before installing it.Defaults to `false`. +- `version` (String) Specify the exact chart version to install. If this is not specified, the latest version is installed. +- `wait` (Boolean) Will wait until all resources are in a ready state before marking the release as successful.Defaults to `true`. + +### Read-Only + +- `id` (String) The ID of this resource. + + +### Nested Schema for `postrender` + +Required: + +- `binary_path` (String) The command binary path. + + + +### Nested Schema for `set` + +Required: + +- `name` (String) + +Optional: + +- `type` (String) +- `value` (String) + + + +### Nested Schema for `set_list` + +Required: + +- `name` (String) +- `value` (List of String) + + + +### Nested Schema for `set_sensitive` + +Required: + +- `name` (String) +- `value` (String, Sensitive) + +Optional: + +- `type` (String) + + + +### Nested Schema for `set_string` + +Required: + +- `name` (String) +- `value` (String) + + + + +## Example Usage + +### Render all chart templates + +The following example renders all templates of the `mariadb` chart of the official Helm stable repository. Concatenated manifests are exposed as output variable `mariadb_instance_manifest`. + +```terraform +data "helm_template" "mariadb_instance" { + name = "mariadb-instance" + namespace = "default" + repository = "https://charts.helm.sh/stable" + + chart = "mariadb" + version = "7.1.0" + + set = [ + { + name = "service.port" + value = "13306" + } + ] + + set_sensitive = [ + { + name = "rootUser.password" + value = "s3cr3t!" + } + ] +} + + +resource "local_file" "mariadb_manifests" { + for_each = data.helm_template.mariadb_instance.manifests + + filename = "./${each.key}" + content = each.value +} + +output "mariadb_instance_manifest" { + value = data.helm_template.mariadb_instance.manifest +} + +output "mariadb_instance_manifests" { + value = data.helm_template.mariadb_instance.manifests +} + +output "mariadb_instance_notes" { + value = data.helm_template.mariadb_instance.notes +} +``` + +### Render selected chart templates + +The following example renders only the templates `master-statefulset.yaml` and `master-svc.yaml` of the `mariadb` chart of the official Helm stable repository. + +```terraform +data "helm_template" "mariadb_instance" { + name = "mariadb-instance" + namespace = "default" + repository = "https://charts.helm.sh/stable" + + chart = "mariadb" + version = "7.1.0" + + show_only = [ + "templates/master-statefulset.yaml", + "templates/master-svc.yaml", + ] + + set = [ + { + name = "service.port" + value = "13306" + } + ] + + set_sensitive = [ + { + name = "rootUser.password" + value = "s3cr3t!" + } + ] +} + + +resource "local_file" "mariadb_manifests" { + for_each = data.helm_template.mariadb_instance.manifests + + filename = "./${each.key}" + content = each.value +} + +output "mariadb_instance_manifest" { + value = data.helm_template.mariadb_instance.manifest +} + +output "mariadb_instance_manifests" { + value = data.helm_template.mariadb_instance.manifests +} + +output "mariadb_instance_notes" { + value = data.helm_template.mariadb_instance.notes +} +``` + diff --git a/shuttles/terraform/terraform-provider-helm/docs/guides/v2-upgrade-guide.md b/shuttles/terraform/terraform-provider-helm/docs/guides/v2-upgrade-guide.md new file mode 100644 index 0000000..2065c02 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/docs/guides/v2-upgrade-guide.md @@ -0,0 +1,72 @@ +--- +layout: "helm" +page_title: "Helm: Upgrade Guide for Helm Provider v2.0.0" +description: |- + This guide covers the changes introduced in v2.0.0 of the Helm provider and what you may need to do to upgrade your configuration. +--- + +# Upgrading to v2.0.0 of the Helm provider + +This guide covers the changes introduced in v2.0.0 of the Helm provider and what you may need to do to upgrade your configuration. + +## Changes in v2.0.0 + +### Changes to Kubernetes credentials supplied in the provider block + +We have made several changes to the way access to Kubernetes is configured in the provider block. + +1. The `load_config_file` attribute has been removed. +2. Support for the `KUBECONFIG` environment variable has been dropped and replaced with `KUBE_CONFIG_PATH`. +3. The `config_path` attribute will no longer default to `~/.kube/config` and must be set explicitly. + +The above changes have been made to encourage the best practise of configuring access to Kubernetes in the provider block explicitly, instead of relying upon default paths or `KUBECONFIG` being set. We have done this because allowing the provider to configure its access to Kubernetes implicitly caused confusion with a subset of our users. It also created risk for users who use Terraform to manage multiple clusters. Requiring explicit configuring for kubernetes in the provider block eliminates the possibility that the configuration will be applied to the wrong cluster. + +You will therefore need to explicity configure access to your Kubernetes cluster in the provider block going forward. For many users this will simply mean specifying the `config_path` attribute in the provider block. Users already explicitly configuring the provider should not be affected by this change, but will need to remove the `load_config_file` attribute if they are currently using it. + +When running Terraform inside a Kubernetes cluster no provider configuration is neccessary, as the provider will detect that is has access to a service account token. + +### Removal of the `helm_repository` data source + +This feature of the provider caused a fair bit of confusion and was a source of instability as data sources are not supposed to be stateful. This data source performed a stateful operation that modified the filesystem, mirroring similar functionality to the `helm repo add` command. It has been the recommendation for some time to configure repository information explicity at the `helm_resource` level and so the data source has been removed. See the example below. + +```hcl +resource "helm_release" "redis" { + name = "redis" + + repository = "https://charts.bitnami.com/bitnami" + chart = "redis" +} +``` + +The provider will continue to work with repositories that are configured with `helm repo add` before Terraform is run. + +### Removal of `set_string` in the `helm_release` resource + +The addition of a `type` attribute to the `set` block has rendered `set_string` superfluous so it has been removed. See the example below on how to set a string using the `set` block. This is used when the type of a value is an ambigious (e.g strings containing only numbers, true, false) and we want it to be explicitly parsed as a string. + +```hcl +resource "helm_release" "redis" { + name = "redis" + + repository = "https://charts.bitnami.com/bitnami" + chart = "redis" + + set { + name = "test.value" + value = "123456" + type = "string" + } +} +``` + +### Dropped support for Terraform 0.11 + +All builds of the Helm provider going forward will no longer work with Terraform 0.11. See [Upgrade Guides](https://www.terraform.io/upgrade-guides/index.html) for how to migrate your configurations to a newer version of Terraform. + +### Upgrade to v2 of the Terraform Plugin SDK + +Contributors to the provider will be interested to know this upgrade has brought the latest version of the [Terraform Plugin SDK](https://github.com/hashicorp/terraform-plugin-sdk) which introduced a number of enhancements to the developer experience. Details of the changes introduced can be found under [Extending Terraform](https://www.terraform.io/docs/extend/guides/v2-upgrade-guide.html). + +## Helm 2 + +We removed support in the provider for Helm 2 earlier this year. In accordance with the [Helm v2 deprecation timeline](https://helm.sh/blog/helm-v2-deprecation-timeline/) we will no longer be accepting PRs or handling issues that relate to Helm 2 going forward. diff --git a/shuttles/terraform/terraform-provider-helm/docs/guides/v3-upgrade-guide.md b/shuttles/terraform/terraform-provider-helm/docs/guides/v3-upgrade-guide.md new file mode 100644 index 0000000..0037051 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/docs/guides/v3-upgrade-guide.md @@ -0,0 +1,246 @@ +--- +layout: "helm" +page_title: "Helm: Upgrade Guide for Helm Provider v3.0.0" +description: |- + This guide covers the changes introduced in v3.0.0 of the Helm provider and what you may need to do to upgrade your configuration. +--- + +# Upgrading to v3.0.0 of the Helm provider + + +This guide covers the changes introduced in v3.0.0 of the Helm provider and what you may need to do to upgrade your configuration. + +## Changes in v3.0.0 + +### Adoption of the Terraform Plugin Framework + +The Helm provider has been migrated from the legacy [Terraform Plugin SDKv2](https://github.com/hashicorp/terraform-plugin-sdk) to the [Terraform Plugin Framework](https://github.com/hashicorp/terraform-plugin-framework). This migration introduces structural changes to the schema, affecting nested blocks, attribute names, and how configurations are represented. Users must update their configurations to align with the new framework. Key changes include: + +- **Blocks to Nested Objects**: Blocks like `kubernetes`, `registry`, and `experiments` are now represented as nested objects. +- **List Syntax for Nested Attributes**: Attributes like `set`, `set_list`, and `set_sensitive` in `helm_release` and `helm_template` are now lists of nested objects instead of blocks. + +### Terraform Version Compatability + +The new framework code uses [Terraform Plugin Protocol Version 6](https://developer.hashicorp.com/terraform/plugin/terraform-plugin-protocol#protocol-version-6) which is compatible with Terraform versions 1.0 and aboove. Users of earlier versions of Terraform can continue to use the Helm provider by pinning their configuration to the 2.x version. + +--- + +### Changes to Provider Attributes + +#### Kubernetes Configuration (`kubernetes`) + +The `kubernetes` block has been updated to a single nested object. + +**Old SDKv2 Configuration:** + +```hcl +provider "helm" { + kubernetes { + config_path = "~/.kube/config" + } + + registry { + url = "oci://localhost:5000" + username = "username" + password = "password" + } + + registry { + url = "oci://private.registry" + username = "username" + password = "password" + } +} +``` + +**New Plugin Framework Configuration:** + +```hcl +provider "helm" { + kubernetes = { + config_path = "~/.kube/config" + } + + registries = [ + { + url = "oci://localhost:5000" + username = "username" + password = "password" + }, + { + url = "oci://private.registry" + username = "username" + password = "password" + } + ] +} +``` + +**What Changed?** + +- `kubernetes` is now a single nested object attribute using `{ ... }`. +- `registry` blocks have been replaced by a `registries` list attribute. + +#### Experiments Configuration (experiments) + +The `experiments` block has been updated to a list of nested objects. + +**Old SDKv2 Configuration:** + +```hcl +provider "helm" { + experiments { + manifest = true + } +} +``` + +**New Plugin Framework Configuration:** + +```hcl +provider "helm" { + experiments = { + manifest = true + } +} +``` + +**What Changed?** + +- `experiments` is now a single nested object attribute using `{ ... }`. + +### Changes to helm_release Resource + +#### `set`, `set_list`, and `set_sensitive` Configuration + +Attributes `set`, `set_list`, and `set_sensitive` are now represented as lists of nested objects instead of individual blocks. + +**Old SDKv2 Configuration:** + +```hcl +resource "helm_release" "nginx_ingress" { + name = "nginx-ingress-controller" + + repository = "https://charts.bitnami.com/bitnami" + chart = "nginx-ingress-controller" + + set { + name = "service.type" + value = "ClusterIP" + } + + set_list { + name = "allowed.hosts" + value = ["host1", "host2"] + } + + set_sensitive { + name = "api.key" + value = "super-secret-key" + } +} +``` + +**New Plugin Framework Configuration:** + +```hcl +resource "helm_release" "nginx_ingress" { + name = "nginx-ingress-controller" + + repository = "https://charts.bitnami.com/bitnami" + chart = "nginx-ingress-controller" + + set = [ + { + name = "service.type" + value = "ClusterIP" + } + ] + + set_list = [ + { + name = "allowed.hosts" + value = ["host1", "host2"] + } + ] + + set_sensitive = [ + { + name = "api.key" + value = "super-secret-key" + } + ] +} +``` + +**What Changed?** + +- `set`, `set_list`, and `set_sensitive` is now a list of nested objects using `[ { ... } ]`. + +### Changes to helm_template Data Source + +#### `set`, `set_list`, and `set_sensitive` Configuration + +Attributes `set`, `set_list`, and `set_sensitive` are now represented as lists of nested objects instead of individual blocks. + +**Old SDKv2 Configuration:** + +```hcl +data "helm_template" "example" { + name = "my-release" + chart = "my-chart" + namespace = "my-namespace" + values = ["custom-values.yaml"] + + set { + name = "image.tag" + value = "1.2.3" + } + + set_list { + name = "allowed.hosts" + value = ["host1", "host2"] + } + + set_sensitive { + name = "api.key" + value = "super-secret-key" + } +} +``` + +**New Plugin Framework Configuration:** + +```hcl +data "helm_template" "example" { + name = "my-release" + chart = "my-chart" + namespace = "my-namespace" + values = ["custom-values.yaml"] + + set = [ + { + name = "image.tag" + value = "1.2.3" + } + ] + + set_list = [ + { + name = "allowed.hosts" + value = ["host1", "host2"] + } + ] + + set_sensitive = [ + { + name = "api.key" + value = "super-secret-key" + } + ] +} +``` + +**What Changed?** + +- `set`, `set_list`, and `set_sensitive` is now a list of nested objects using `[ { ... } ]`. diff --git a/shuttles/terraform/terraform-provider-helm/docs/index.md b/shuttles/terraform/terraform-provider-helm/docs/index.md new file mode 100644 index 0000000..8f094cb --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/docs/index.md @@ -0,0 +1,212 @@ +--- +page_title: "Provider: Helm" +sidebar_current: "docs-helm-index" +description: |- + The Helm provider is used to deploy software packages in Kubernetes. The provider needs to be configured with the proper credentials before it can be used. +--- + +# Helm Provider + +The Helm provider is used to deploy software packages in Kubernetes. The provider needs to be configured with the proper credentials before it can be used. + +Try the [hands-on tutorial](https://learn.hashicorp.com/tutorials/terraform/helm-provider?in=terraform/kubernetes) on the Helm provider on the HashiCorp Learn site. + +## Resources + +* [Resource: helm_release](r/release.md) + +## Data Sources + +* [Data Source: helm_template](d/template.html) + +## Example Usage + +```terraform +provider "helm" { + kubernetes = { + config_path = "~/.kube/config" + } + + registries = [ + { + url = "oci://localhost:5000" + username = "username" + password = "password" + }, + { + url = "oci://private.registry" + username = "username" + password = "password" + } + ] +} + +resource "helm_release" "nginx_ingress" { + name = "nginx-ingress-controller" + repository = "https://charts.bitnami.com/bitnami" + chart = "nginx-ingress-controller" + + set = [ + { + name = "service.type" + value = "ClusterIP" + } + ] +} +``` + +## Requirements + +~> NOTE: The provider does not use the `KUBECONFIG` environment variable by default. See the attribute reference below for the environment variables that map to provider block attributes. + +- You must have a Kubernetes cluster available. We support version 1.14.0 or higher. + +## Authentication + +The Helm provider can get its configuration in two ways: + +1. *Explicitly* by supplying attributes to the provider block. This includes: + * [Using a kubeconfig file](#file-config) + * [Supplying credentials](#credentials-config) + * [Exec plugins](#exec-plugins) +2. *Implicitly* through environment variables. This includes: + * [Using the in-cluster config](#in-cluster-config) + +For a full list of supported provider authentication arguments and their corresponding environment variables, see the [argument reference](#argument-reference) below. + +### File config + +The easiest way is to supply a path to your kubeconfig file using the `config_path` attribute or using the `KUBE_CONFIG_PATH` environment variable. A kubeconfig file may have multiple contexts. If `config_context` is not specified, the provider will use the `default` context. + +```terraform +provider "helm" { + kubernetes = { + config_path = "~/.kube/config" + } +} +``` + +The provider also supports multiple paths in the same way that kubectl does using the `config_paths` attribute or `KUBE_CONFIG_PATHS` environment variable. + +```terraform +provider "helm" { + kubernetes = { + config_paths = [ + "/path/to/config_a.yaml", + "/path/to/config_b.yaml" + ] + } +} +``` + +### Credentials config + +You can also configure the host, basic auth credentials, and client certificate authentication explicitly or through environment variables. + +```terraform +provider "helm" = { + kubernetes { + host = "https://cluster_endpoint:port" + + client_certificate = file("~/.kube/client-cert.pem") + client_key = file("~/.kube/client-key.pem") + cluster_ca_certificate = file("~/.kube/cluster-ca-cert.pem") + } +} +``` + +### In-cluster Config + +The provider uses the `KUBERNETES_SERVICE_HOST` and `KUBERNETES_SERVICE_PORT` environment variables to detect when it is running inside a cluster, so in this case you do not need to specify any attributes in the provider block if you want to connect to the local kubernetes cluster. + +If you want to connect to a different cluster than the one terraform is running inside, configure the provider as [above](#credentials-config). + +## Exec plugins + +Some cloud providers have short-lived authentication tokens that can expire relatively quickly. To ensure the Kubernetes provider is receiving valid credentials, an exec-based plugin can be used to fetch a new token before initializing the provider. For example, on EKS, the command `eks get-token` can be used: + +```terraform +provider "helm" { + kubernetes = { + host = var.cluster_endpoint + cluster_ca_certificate = base64decode(var.cluster_ca_cert) + exec = { + api_version = "client.authentication.k8s.io/v1beta1" + args = ["eks", "get-token", "--cluster-name", var.cluster_name] + command = "aws" + } + } +} +``` + +For example, to [authenticate with GKE](https://registry.terraform.io/providers/hashicorp/google/latest/docs/guides/using_gke_with_terraform#using-the-kubernetes-and-helm-providers), the `gke-cloud-auth-plugin` can be used: + +```terraform +provider "helm" { + kubernetes = { + host = "https://${data.google_container_cluster.my_cluster.endpoint}" + token = data.google_client_config.provider.access_token + cluster_ca_certificate = base64decode( + data.google_container_cluster.my_cluster.master_auth[0].cluster_ca_certificate,) + exec = { + api_version = "client.authentication.k8s.io/v1beta1" + command = "gke-gcloud-auth-plugin" + } + } +} +``` + +## Argument Reference + +The following arguments are supported: + +* `debug` - (Optional) - Debug indicates whether or not Helm is running in Debug mode. Defaults to `false`. +* `plugins_path` - (Optional) The path to the plugins directory. Defaults to `HELM_PLUGINS` env if it is set, otherwise uses the default path set by helm. +* `registry_config_path` - (Optional) The path to the registry config file. Defaults to `HELM_REGISTRY_CONFIG` env if it is set, otherwise uses the default path set by helm. +* `repository_config_path` - (Optional) The path to the file containing repository names and URLs. Defaults to `HELM_REPOSITORY_CONFIG` env if it is set, otherwise uses the default path set by helm. +* `repository_cache` - (Optional) The path to the file containing cached repository indexes. Defaults to `HELM_REPOSITORY_CACHE` env if it is set, otherwise uses the default path set by helm. +* `helm_driver` - (Optional) "The backend storage driver. Valid values are: `configmap`, `secret`, `memory`, `sql`. Defaults to `secret`. Note: Regarding the sql driver, as of helm v3.2.0 SQL support exists only for the postgres dialect. The connection string can be configured by setting the `HELM_DRIVER_SQL_CONNECTION_STRING` environment variable e.g. `HELM_DRIVER_SQL_CONNECTION_STRING=postgres://username:password@host/dbname` more info [here](https://pkg.go.dev/github.com/lib/pq). +* `burst_limit` - (Optional) The helm burst limit to use. Set this value higher if your cluster has many CRDs. Default: `100` +* `kubernetes` - Kubernetes configuration block. +* `registries` - Private OCI registry configuration block. Can be specified multiple times. + +The `kubernetes` block supports: + +* `config_path` - (Optional) Path to the kube config file. Can be sourced from `KUBE_CONFIG_PATH`. +* `config_paths` - (Optional) A list of paths to the kube config files. Can be sourced from `KUBE_CONFIG_PATHS`. +* `host` - (Optional) The hostname (in form of URI) of the Kubernetes API. Can be sourced from `KUBE_HOST`. +* `username` - (Optional) The username to use for HTTP basic authentication when accessing the Kubernetes API. Can be sourced from `KUBE_USER`. +* `password` - (Optional) The password to use for HTTP basic authentication when accessing the Kubernetes API. Can be sourced from `KUBE_PASSWORD`. +* `token` - (Optional) The bearer token to use for authentication when accessing the Kubernetes API. Can be sourced from `KUBE_TOKEN`. +* `insecure` - (Optional) Whether server should be accessed without verifying the TLS certificate. Can be sourced from `KUBE_INSECURE`. +* `tls_server_name` - (Optional) Server name passed to the server for SNI and is used in the client to check server certificates against. Can be sourced from `KUBE_TLS_SERVER_NAME`. +* `client_certificate` - (Optional) PEM-encoded client certificate for TLS authentication. Can be sourced from `KUBE_CLIENT_CERT_DATA`. +* `client_key` - (Optional) PEM-encoded client certificate key for TLS authentication. Can be sourced from `KUBE_CLIENT_KEY_DATA`. +* `cluster_ca_certificate` - (Optional) PEM-encoded root certificates bundle for TLS authentication. Can be sourced from `KUBE_CLUSTER_CA_CERT_DATA`. +* `config_context` - (Optional) Context to choose from the config file. Can be sourced from `KUBE_CTX`. +* `proxy_url` - (Optional) URL to the proxy to be used for all API requests. URLs with "http", "https", and "socks5" schemes are supported. Can be sourced from `KUBE_PROXY_URL`. +* `exec` - (Optional) Configuration block to use an [exec-based credential plugin](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#client-go-credential-plugins), e.g. call an external command to receive user credentials. +* `api_version` - (Required) API version to use when decoding the ExecCredentials resource, e.g. `client.authentication.k8s.io/v1beta1`. +* `command` - (Required) Command to execute. +* `args` - (Optional) List of arguments to pass when executing the plugin. +* `env` - (Optional) Map of environment variables to set when executing the plugin. + +The `registries` block has options: + +* `url` - (Required) url to the registry in format `oci://host:port` +* `username` - (Required) username to registry +* `password` - (Required) password to registry + +## Experiments + +The provider takes an `experiments` block that allows you enable experimental features by setting them to `true`. + +* `manifest` - Enable storing of the rendered manifest for `helm_release` so the full diff of what is changing can been seen in the plan. + +```terraform +provider "helm" { + experiments = { + manifest = true + } +} +``` diff --git a/shuttles/terraform/terraform-provider-helm/docs/resources/release.md b/shuttles/terraform/terraform-provider-helm/docs/resources/release.md new file mode 100644 index 0000000..1f7242e --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/docs/resources/release.md @@ -0,0 +1,386 @@ +--- +page_title: "helm: helm_release" +sidebar_current: "docs-helm-release" +description: |- + +--- +# Resource: helm_release + +A Release is an instance of a chart running in a Kubernetes cluster. + +A Chart is a Helm package. It contains all of the resource definitions necessary to run an application, tool, or service inside of a Kubernetes cluster. + +`helm_release` describes the desired status of a chart in a kubernetes cluster. + + +## Schema + +### Required + +- `chart` (String) Chart name to be installed. A path may be used. +- `name` (String) Release name. The length must not be longer than 53 characters. + +### Optional + +- `atomic` (Boolean) If set, installation process purges chart on fail. The wait flag will be set automatically if atomic is used. Defaults to `false`. +- `cleanup_on_fail` (Boolean) Allow deletion of new resources created in this upgrade when upgrade fails. Defaults to `false`. +- `create_namespace` (Boolean) Create the namespace if it does not exist. Defaults to `false`. +- `dependency_update` (Boolean) Run helm dependency update before installing the chart. Defaults to `false`. +- `description` (String) Add a custom description +- `devel` (Boolean) Use chart development versions, too. Equivalent to version '>0.0.0-0'. If `version` is set, this is ignored +- `disable_crd_hooks` (Boolean) Prevent CRD hooks from, running, but run other hooks. See helm install --no-crd-hook +- `disable_openapi_validation` (Boolean) If set, the installation process will not validate rendered templates against the Kubernetes OpenAPI Schema. Defaults to `false`. +- `disable_webhooks` (Boolean) Prevent hooks from running.Defaults to `false`. +- `force_update` (Boolean) Force resource update through delete/recreate if needed. Defaults to `false`. +- `keyring` (String) Location of public keys used for verification. Used only if `verify` is true. Defaults to `/.gnupg/pubring.gpg` in the location set by `home`. +- `lint` (Boolean) Run helm lint when planning. Defaults to `false`. +- `max_history` (Number) Limit the maximum number of revisions saved per release. Use 0 for no limit. Defaults to 0 (no limit). +- `namespace` (String) Namespace to install the release into. Defaults to `default`. +- `pass_credentials` (Boolean) Pass credentials to all domains. Defaults to `false`. +- `postrender` (Block List, Max: 1) Postrender command configuration. (see [below for nested schema](#nestedblock--postrender)) +- `recreate_pods` (Boolean) Perform pods restart during upgrade/rollback. Defaults to `false`. +- `render_subchart_notes` (Boolean) If set, render subchart notes along with the parent. Defaults to `true`. +- `replace` (Boolean) Re-use the given name, even if that name is already used. This is unsafe in production. Defaults to `false`. +- `repository` (String) Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository. +- `repository_ca_file` (String) The Repositories CA File +- `repository_cert_file` (String) The repositories cert file +- `repository_key_file` (String) The repositories cert key file +- `repository_password` (String, Sensitive) Password for HTTP basic authentication +- `repository_username` (String) Username for HTTP basic authentication +- `reset_values` (Boolean) When upgrading, reset the values to the ones built into the chart. Defaults to `false`. +- `reuse_values` (Boolean) When upgrading, reuse the last release's values and merge in any overrides. If 'reset_values' is specified, this is ignored. Defaults to `false`. +- `set` (Block Set) Custom values to be merged with the values. (see [below for nested schema](#nestedblock--set)) +- `set_wo` (Attribute List) Custom values to be merged with the values. This is the same as "set" but write-only. (see [below for nested schema](#nestedblock--set)) +- `set_wo_revision` (Number) The current revision of the write-only "set_wo" attribute. Incrementing this integer value will cause Terraform to update the write-only value.` +- `set_list` (Block List) Custom list values to be merged with the values. (see [below for nested schema](#nestedblock--set_list)) +- `set_sensitive` (Block Set) Custom sensitive values to be merged with the values. (see [below for nested schema](#nestedblock--set_sensitive)) +- `skip_crds` (Boolean) If set, no CRDs will be installed. By default, CRDs are installed if not already present. Defaults to `false`. +- `timeout` (Number) Time in seconds to wait for any individual kubernetes operation. Defaults to 300 seconds. +- `upgrade_install` (Boolean) If true, the provider will install the release at the specified version even if a release not controlled by the provider is present: this is equivalent to running 'helm upgrade --install' with the Helm CLI. WARNING: this may not be suitable for production use -- see the 'Upgrade Mode' note in the provider documentation. Defaults to `false`. +- `values` (List of String) List of values in raw yaml format to pass to helm. +- `verify` (Boolean) Verify the package before installing it.Defaults to `false`. +- `version` (String) Specify the exact chart version to install. If this is not specified, the latest version is installed. +- `wait` (Boolean) Will wait until all resources are in a ready state before marking the release as successful. Defaults to `true`. +- `wait_for_jobs` (Boolean) If wait is enabled, will wait until all Jobs have been completed before marking the release as successful. Defaults to `false``. + +### Read-Only + +- `id` (String) The ID of this resource. +- `manifest` (String) The rendered manifest as JSON. +- `metadata` (List of Object) Status of the deployed release. (see [below for nested schema](#nestedatt--metadata)) +- `status` (String) Status of the release. + + +### Nested Schema for `postrender` + +Required: + +- `binary_path` (String) The command binary path. + +Optional: + +- `args` (List of String) an argument to the post-renderer (can specify multiple) + + + +### Nested Schema for `set` + +Required: + +- `name` (String) + +Optional: + +- `type` (String) +- `value` (String) + + +### Nested Schema for `set_list` + +Required: + +- `name` (String) +- `value` (List of String) + + + +### Nested Schema for `set_sensitive` + +Required: + +- `name` (String) +- `value` (String, Sensitive) + +Optional: + +- `type` (String) + + + +### Nested Schema for `metadata` + +Read-Only: + +- `app_version` (String) +- `chart` (String) +- `first_deployed` (Number) +- `last_deployed` (Number) +- `name` (String) +- `namespace` (String) +- `notes` (String) +- `revision` (Number) +- `values` (String) +- `version` (String) + + + + + +## Example Usage - Chart Repository + +```terraform +resource "helm_release" "example" { + name = "my-redis-release" + repository = "https://charts.bitnami.com/bitnami" + chart = "redis" + version = "6.0.1" + + set = [ + { + name = "cluster.enabled" + value = "true" + }, + { + name = "metrics.enabled" + value = "true" + } + ] + + set = [ + { + name = "service.annotations.prometheus\\.io/port" + value = "9127" + type = "string" + } + ] +} +``` + +## Example Usage - Local Chart + +In case a Chart is not available from a repository, a path may be used: + +```terraform +resource "helm_release" "example" { + name = "my-local-chart" + chart = "./charts/example" +} +``` + +## Example Usage - Chart URL + +An absolute URL to the .tgz of the Chart may also be used: + +```terraform +resource "helm_release" "example" { + name = "redis" + chart = "https://charts.bitnami.com/bitnami/redis-10.7.16.tgz" +} +``` + +## Example Usage - Chart Repository configured from OCI Registry + +Provider supports grabbing charts from an OCI repository: + +```terraform +provider "helm" { + kubernetes = { + config_path = "~/.kube/config" + } + + registries = [ + { + url = "oci://localhost:5000" + username = "username" + password = "password" + } + ] +} + +resource "helm_release" "example" { + name = "testchart" + namespace = "helm_registry" + repository = "oci://localhost:5000/helm-charts" + version = "1.2.3" + chart = "test-chart" +} +``` + +## Example Usage - Chart Repository configured using GCS/S3 + +The provider also supports helm plugins such as GCS and S3 that add S3/GCS helm repositories by using `helm plugin install` + +```terraform +# Install GCS plugin +`helm plugin install https://github.com/hayorov/helm-gcs.git` + +# Run follow commands to setup GCS repository + +# Init a new repository: +# helm gcs init gs://bucket/path + +# Add your repository to Helm: +# helm repo add repo-name gs://bucket/path + +# Push a chart to your repository: +# helm gcs push chart.tar.gz repo-name + +# Update Helm cache: +# helm repo update + +# Get your chart: + +resource "helm_release" "GCS" { + name = "GCS" + repository = "gs://tf-test-helm-repo/charts" + chart = "chart" +} +``` + +```terraform +# Install AWS S3 plugin +`helm plugin install https://github.com/hypnoglow/helm-s3.git` + +# Run follow commands to setup S3 repository + +# Init a new repository: +# helm s3 init s3://my-helm-charts/stable/myapp + +# Add your repository to Helm: +# helm repo add stable-myapp s3://my-helm-charts/stable/myapp/ + +# Push a chart to your repository: +# helm s3 push chart.tar.gz repo-name + +# Update Helm cache: +# helm repo update + +# Get your chart: + +resource "helm_release" "S3" { + name = "S3" + repository = "s3://tf-test-helm-repo/charts" + chart = "chart" +} +``` + +## Example Usage - Chart Repository configured outside of Terraform + +The provider also supports repositories that are added to the local machine outside of Terraform by running `helm repo add` + +```terraform +# run this first: `helm repo add bitnami https://charts.bitnami.com/bitnami` + +resource "helm_release" "example" { + name = "redis" + chart = "bitnami/redis" +} +``` + +The `set`, `set_list`, and `set_sensitive` blocks support: + +* `name` - (Required) full name of the variable to be set. +* `value` - (Required; Optional for `set`) value of the variable to be set. +* `type` - (Optional) type of the variable to be set. Valid options are `auto` and `string`. + +Since Terraform Utilizes HCL as well as Helm using the Helm Template Language, it's necessary to escape the `{}`, `[]`, `.`, and `,` characters twice in order for it to be parsed. `name` should also be set to the `value path`, and `value` is the desired value that will be set. + +```terraform +set = [ + { + name = "grafana.ingress.annotations.alb\\.ingress\\.kubernetes\\.io/group\\.name" + value = "shared-ingress" + } +] +``` + +```terraform +set_list = [ + { + name = "hashicorp" + value = ["terraform", "nomad", "vault"] + } +] +``` + +```terraform +controller: + pod: + annotations: + status.kubernetes.io/restart-on-failure: {"timeout": "30s"} +``` + +```terraform +set = [ + { + name = "controller.pod.annotations.status\\.kubernetes\\.io/restart-on-failure" + value = "\\{\"timeout\": \"30s\"\\}" + } +] + +``` + +The `postrender` block supports two attributes: + +* `binary_path` - (Required) relative or full path to command binary. +* `args` - (Optional) a list of arguments to supply to the post-renderer. + +## Upgrade Mode Notes + +When using the Helm CLI directly, it is possible to use `helm upgrade --install` to +_idempotently_ install a release. For example, `helm upgrade --install mariadb charts/mariadb --verson 7.1.0` +will check to see if there is already a release called `mariadb`: if there is, ensure that it is set to version +7.1.0, and if there is not, install that version from scratch. (See the documentation for the +[helm upgrade](https://helm.sh/docs/helm/helm_upgrade) command for more details.) + + **NOTE:** The mechanics of this approach are subtly different from the defaults and you can easily produce unexpected or undesirable results if you are not careful: +using this approach in production is not necessarily recommended! + +If upgrade mode is enabled by setting the `upgrade_install` attribute to `true`, the provider will first check to see +if a release with the given name already exists. If the release does not already exist, the provider will perform a +from-scratch installation of the chart. In this case, all resource attributes are honored. + +However, if the release _does_ already exist, the provider will attempt to upgrade the release to +the state defined in the resource, using the same strategy as the [helm upgrade](https://helm.sh/docs/helm/helm_upgrade) +command. + +When using `upgrade_install`, the `version` attribute is used to determine the version of the chart to install or +upgrade to. If the `version` attribute is not set, the provider will attempt to determine the version of the chart +from the existing release and will use that version for the upgrade: this is to ensure that using `upgrade_install` +does not inadvertently change the version of the chart being used. + +**CRITICAL**: The user-supplied values passed to the chart in the new revision will be the ones specified in the +`helm_release` resource, not the values used in the original installation of the chart. This means that if +you are using `upgrade_install` to manage a release that was originally installed with a different set of values, +you must ensure that the values in the `helm_release` resource are correct, or you may inadvertently change the +configuration of the release. Additionally, since there is no existing terraform state to compare against, you +must manually inspect the installed release's values with the `helm get values` CLI command. + +**IMPORTANT**: Even if you are "upgrading" to the same version of the chart that is already present in the cluster, +the `helm_release` resource will still show as "changed" in the terraform plan output, because there is no existing +state for it to compare against. This also means that in the apply stage, the provider will in fact reinstall the +chart, which means that if there are any +[deployment](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/), +[daemonset](https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/) or +[statefulset](https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/) resources in the chart, they will +be replaced, which will cause a rolling update of the pods. + +## Import + +A Helm Release resource can be imported using its namespace and name e.g. + +```shell +$ terraform import helm_release.example default/example-name +``` + +~> **NOTE:** Since the `repository` attribute is not being persisted as metadata by helm, it will not be set to any value by default. All other provider specific attributes will be set to their default values and they can be overriden after running `apply` using the resource definition configuration. diff --git a/shuttles/terraform/terraform-provider-helm/examples/data-sources/template/example_1.tf b/shuttles/terraform/terraform-provider-helm/examples/data-sources/template/example_1.tf new file mode 100644 index 0000000..bf95762 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/examples/data-sources/template/example_1.tf @@ -0,0 +1,41 @@ +data "helm_template" "mariadb_instance" { + name = "mariadb-instance" + namespace = "default" + repository = "https://charts.helm.sh/stable" + + chart = "mariadb" + version = "7.1.0" + + set = [ + { + name = "service.port" + value = "13306" + } + ] + + set_sensitive = [ + { + name = "rootUser.password" + value = "s3cr3t!" + } + ] +} + +resource "local_file" "mariadb_manifests" { + for_each = data.helm_template.mariadb_instance.manifests + + filename = "./${each.key}" + content = each.value +} + +output "mariadb_instance_manifest" { + value = data.helm_template.mariadb_instance.manifest +} + +output "mariadb_instance_manifests" { + value = data.helm_template.mariadb_instance.manifests +} + +output "mariadb_instance_notes" { + value = data.helm_template.mariadb_instance.notes +} diff --git a/shuttles/terraform/terraform-provider-helm/examples/data-sources/template/example_2.tf b/shuttles/terraform/terraform-provider-helm/examples/data-sources/template/example_2.tf new file mode 100644 index 0000000..237a421 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/examples/data-sources/template/example_2.tf @@ -0,0 +1,46 @@ +data "helm_template" "mariadb_instance" { + name = "mariadb-instance" + namespace = "default" + repository = "https://charts.helm.sh/stable" + + chart = "mariadb" + version = "7.1.0" + + show_only = [ + "templates/master-statefulset.yaml", + "templates/master-svc.yaml", + ] + + set = [ + { + name = "service.port" + value = "13306" + } + ] + + set_sensitive = [ + { + name = "rootUser.password" + value = "s3cr3t!" + } + ] +} + +resource "local_file" "mariadb_manifests" { + for_each = data.helm_template.mariadb_instance.manifests + + filename = "./${each.key}" + content = each.value +} + +output "mariadb_instance_manifest" { + value = data.helm_template.mariadb_instance.manifest +} + +output "mariadb_instance_manifests" { + value = data.helm_template.mariadb_instance.manifests +} + +output "mariadb_instance_notes" { + value = data.helm_template.mariadb_instance.notes +} diff --git a/shuttles/terraform/terraform-provider-helm/examples/example_1.tf b/shuttles/terraform/terraform-provider-helm/examples/example_1.tf new file mode 100644 index 0000000..cb40620 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/examples/example_1.tf @@ -0,0 +1,31 @@ +provider "helm" { + kubernetes = { + config_path = "~/.kube/config" + } + + registries = [ + { + url = "oci://localhost:5000" + username = "username" + password = "password" + }, + { + url = "oci://private.registry" + username = "username" + password = "password" + } + ] +} + +resource "helm_release" "nginx_ingress" { + name = "nginx-ingress-controller" + repository = "https://charts.bitnami.com/bitnami" + chart = "nginx-ingress-controller" + + set = [ + { + name = "service.type" + value = "ClusterIP" + } + ] +} diff --git a/shuttles/terraform/terraform-provider-helm/examples/example_2.tf b/shuttles/terraform/terraform-provider-helm/examples/example_2.tf new file mode 100644 index 0000000..29cd45b --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/examples/example_2.tf @@ -0,0 +1,5 @@ +provider "helm" { + kubernetes = { + config_path = "~/.kube/config" + } +} diff --git a/shuttles/terraform/terraform-provider-helm/examples/example_3.tf b/shuttles/terraform/terraform-provider-helm/examples/example_3.tf new file mode 100644 index 0000000..59e1b5a --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/examples/example_3.tf @@ -0,0 +1,8 @@ +provider "helm" { + kubernetes = { + config_paths = [ + "/path/to/config_a.yaml", + "/path/to/config_b.yaml" + ] + } +} diff --git a/shuttles/terraform/terraform-provider-helm/examples/example_4.tf b/shuttles/terraform/terraform-provider-helm/examples/example_4.tf new file mode 100644 index 0000000..26cdf49 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/examples/example_4.tf @@ -0,0 +1,9 @@ +provider "helm" { + kubernetes = { + host = "https://cluster_endpoint:port" + + client_certificate = file("~/.kube/client-cert.pem") + client_key = file("~/.kube/client-key.pem") + cluster_ca_certificate = file("~/.kube/cluster-ca-cert.pem") + } +} diff --git a/shuttles/terraform/terraform-provider-helm/examples/example_5.tf b/shuttles/terraform/terraform-provider-helm/examples/example_5.tf new file mode 100644 index 0000000..bd4d57e --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/examples/example_5.tf @@ -0,0 +1,11 @@ +provider "helm" { + kubernetes = { + host = var.cluster_endpoint + cluster_ca_certificate = base64decode(var.cluster_ca_cert) + exec = { + api_version = "client.authentication.k8s.io/v1beta1" + args = ["eks", "get-token", "--cluster-name", var.cluster_name] + command = "aws" + } + } +} \ No newline at end of file diff --git a/shuttles/terraform/terraform-provider-helm/examples/example_6.tf b/shuttles/terraform/terraform-provider-helm/examples/example_6.tf new file mode 100644 index 0000000..02a4b33 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/examples/example_6.tf @@ -0,0 +1,12 @@ +provider "helm" { + kubernetes = { + host = "https://${data.google_container_cluster.my_cluster.endpoint}" + token = data.google_client_config.provider.access_token + cluster_ca_certificate = base64decode( + data.google_container_cluster.my_cluster.master_auth[0].cluster_ca_certificate,) + exec = { + api_version = "client.authentication.k8s.io/v1beta1" + command = "gke-gcloud-auth-plugin" + } + } +} diff --git a/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_1.tf b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_1.tf new file mode 100644 index 0000000..16eaf45 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_1.tf @@ -0,0 +1,29 @@ +resource "helm_release" "example" { + name = "my-redis-release" + repository = "https://charts.bitnami.com/bitnami" + chart = "redis" + version = "6.0.1" + + values = [ + "${file("values.yaml")}" + ] + + set = [ + { + name = "cluster.enabled" + value = "true" + }, + { + name = "metrics.enabled" + value = "true" + } + ] + + set = [ + { + name = "service.annotations.prometheus\\.io/port" + value = "9127" + type = "string" + } + ] +} diff --git a/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_10.tf b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_10.tf new file mode 100644 index 0000000..a4a122e --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_10.tf @@ -0,0 +1,4 @@ +controller: + pod: + annotations: + status.kubernetes.io/restart-on-failure: {"timeout": "30s"} diff --git a/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_11.tf b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_11.tf new file mode 100644 index 0000000..01f38ee --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_11.tf @@ -0,0 +1,6 @@ +set = [ + { + name = "controller.pod.annotations.status\\.kubernetes\\.io/restart-on-failure" + value = "\\{\"timeout\": \"30s\"\\}" + } +] diff --git a/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_2.tf b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_2.tf new file mode 100644 index 0000000..2158a87 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_2.tf @@ -0,0 +1,4 @@ +resource "helm_release" "example" { + name = "my-local-chart" + chart = "./charts/example" +} diff --git a/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_3.tf b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_3.tf new file mode 100644 index 0000000..dcebc08 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_3.tf @@ -0,0 +1,4 @@ +resource "helm_release" "example" { + name = "redis" + chart = "https://charts.bitnami.com/bitnami/redis-10.7.16.tgz" +} diff --git a/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_4.tf b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_4.tf new file mode 100644 index 0000000..0ce20e7 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_4.tf @@ -0,0 +1,22 @@ + +provider "helm" { + kubernetes = { + config_path = "~/.kube/config" + } + # localhost registry with password protection + registries = [ + { + url = "oci://localhost:5000" + username = "username" + password = "password" + } + ] +} + +resource "helm_release" "example" { + name = "testchart" + namespace = "helm_registry" + repository = "oci://localhost:5000/helm-charts" + version = "1.2.3" + chart = "test-chart" +} diff --git a/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_5.tf b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_5.tf new file mode 100644 index 0000000..6f4d600 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_5.tf @@ -0,0 +1,25 @@ + +# Install GCS plugin +`helm plugin install https://github.com/hayorov/helm-gcs.git` + +# Run follow commands to setup GCS repository + +# Init a new repository: +# helm gcs init gs://bucket/path + +# Add your repository to Helm: +# helm repo add repo-name gs://bucket/path + +# Push a chart to your repository: +# helm gcs push chart.tar.gz repo-name + +# Update Helm cache: +# helm repo update + +# Get your chart: + +resource "helm_release" "GCS" { + name = "GCS" + repository = "gs://tf-test-helm-repo/charts" + chart = "chart" +} diff --git a/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_6.tf b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_6.tf new file mode 100644 index 0000000..5364672 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_6.tf @@ -0,0 +1,25 @@ + +# Install AWS S3 plugin +`helm plugin install https://github.com/hypnoglow/helm-s3.git` + +# Run follow commands to setup S3 repository + +# Init a new repository: +# helm s3 init s3://my-helm-charts/stable/myapp + +# Add your repository to Helm: +# helm repo add stable-myapp s3://my-helm-charts/stable/myapp/ + +# Push a chart to your repository: +# helm s3 push chart.tar.gz repo-name + +# Update Helm cache: +# helm repo update + +# Get your chart: + +resource "helm_release" "S3" { + name = "S3" + repository = "s3://tf-test-helm-repo/charts" + chart = "chart" +} diff --git a/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_7.tf b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_7.tf new file mode 100644 index 0000000..58a9400 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_7.tf @@ -0,0 +1,7 @@ + +# run this first: `helm repo add bitnami https://charts.bitnami.com/bitnami` + +resource "helm_release" "example" { + name = "redis" + chart = "bitnami/redis" +} diff --git a/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_8.tf b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_8.tf new file mode 100644 index 0000000..04558c2 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_8.tf @@ -0,0 +1,6 @@ +set = [ + { + name = "grafana.ingress.annotations.alb\\.ingress\\.kubernetes\\.io/group\\.name" + value = "shared-ingress" + } +] diff --git a/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_9.tf b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_9.tf new file mode 100644 index 0000000..ac56598 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/examples/resources/release/example_9.tf @@ -0,0 +1,6 @@ +set_list = [ + { + name = "hashicorp" + value = ["terraform", "nomad", "vault"] + } +] \ No newline at end of file diff --git a/shuttles/terraform/terraform-provider-helm/go.mod b/shuttles/terraform/terraform-provider-helm/go.mod new file mode 100644 index 0000000..d041f44 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/go.mod @@ -0,0 +1,206 @@ +module github.com/hashicorp/terraform-provider-helm + +go 1.23.0 + +toolchain go1.24.0 + +require ( + github.com/hashicorp/go-version v1.7.0 + github.com/hashicorp/terraform-plugin-docs v0.20.1 + github.com/hashicorp/terraform-plugin-framework v1.15.0 + github.com/hashicorp/terraform-plugin-framework-validators v0.13.0 + github.com/hashicorp/terraform-plugin-go v0.27.0 + github.com/hashicorp/terraform-plugin-log v0.9.0 + github.com/hashicorp/terraform-plugin-testing v1.13.0 + github.com/mitchellh/go-homedir v1.1.0 + github.com/pkg/errors v0.9.1 + github.com/stretchr/testify v1.10.0 + golang.org/x/crypto v0.38.0 + helm.sh/helm/v3 v3.17.2 + k8s.io/api v0.32.2 + k8s.io/apimachinery v0.32.2 + k8s.io/client-go v0.32.2 + k8s.io/helm v2.17.0+incompatible + k8s.io/klog v1.0.0 + sigs.k8s.io/yaml v1.4.0 +) + +require ( + github.com/Kunde21/markdownfmt/v3 v3.1.0 // indirect + github.com/bmatcuk/doublestar/v4 v4.7.1 // indirect + github.com/hashicorp/cli v1.1.7 // indirect + github.com/rivo/uniseg v0.2.0 // indirect +) + +require ( + dario.cat/mergo v1.0.1 // indirect + github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect + github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect + github.com/BurntSushi/toml v1.4.0 // indirect + github.com/MakeNowJust/heredoc v1.0.0 // indirect + github.com/Masterminds/goutils v1.1.1 // indirect + github.com/Masterminds/semver/v3 v3.3.0 // indirect + github.com/Masterminds/sprig/v3 v3.3.0 // indirect + github.com/Masterminds/squirrel v1.5.4 // indirect + github.com/ProtonMail/go-crypto v1.1.6 // indirect + github.com/agext/levenshtein v1.2.3 // indirect + github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect + github.com/armon/go-radix v1.0.0 // indirect + github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect + github.com/beorn7/perks v1.0.1 // indirect + github.com/bgentry/speakeasy v0.1.0 // indirect + github.com/blang/semver/v4 v4.0.0 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect + github.com/chai2010/gettext-go v1.0.2 // indirect + github.com/cloudflare/circl v1.6.0 // indirect + github.com/containerd/containerd v1.7.24 // indirect + github.com/containerd/errdefs v0.3.0 // indirect + github.com/containerd/log v0.1.0 // indirect + github.com/containerd/platforms v0.2.1 // indirect + github.com/cyphar/filepath-securejoin v0.4.1 // indirect + github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect + github.com/distribution/reference v0.6.0 // indirect + github.com/docker/cli v25.0.1+incompatible // indirect + github.com/docker/distribution v2.8.3+incompatible // indirect + github.com/docker/docker v25.0.6+incompatible // indirect + github.com/docker/docker-credential-helpers v0.7.0 // indirect + github.com/docker/go-connections v0.5.0 // indirect + github.com/docker/go-metrics v0.0.1 // indirect + github.com/emicklei/go-restful/v3 v3.11.0 // indirect + github.com/evanphx/json-patch v5.9.0+incompatible // indirect + github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect + github.com/fatih/color v1.16.0 // indirect + github.com/felixge/httpsnoop v1.0.4 // indirect + github.com/fxamacker/cbor/v2 v2.7.0 // indirect + github.com/ghodss/yaml v1.0.0 // indirect + github.com/go-errors/errors v1.4.2 // indirect + github.com/go-gorp/gorp/v3 v3.1.0 // indirect + github.com/go-logr/logr v1.4.2 // indirect + github.com/go-logr/stdr v1.2.2 // indirect + github.com/go-openapi/jsonpointer v0.21.0 // indirect + github.com/go-openapi/jsonreference v0.20.2 // indirect + github.com/go-openapi/swag v0.23.0 // indirect + github.com/gobwas/glob v0.2.3 // indirect + github.com/gogo/protobuf v1.3.2 // indirect + github.com/golang/protobuf v1.5.4 // indirect + github.com/google/btree v1.0.1 // indirect + github.com/google/gnostic-models v0.6.8 // indirect + github.com/google/go-cmp v0.7.0 // indirect + github.com/google/gofuzz v1.2.0 // indirect + github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect + github.com/google/uuid v1.6.0 // indirect + github.com/gorilla/mux v1.8.0 // indirect + github.com/gorilla/websocket v1.5.0 // indirect + github.com/gosuri/uitable v0.0.4 // indirect + github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect + github.com/hashicorp/errwrap v1.1.0 // indirect + github.com/hashicorp/go-checkpoint v0.5.0 // indirect + github.com/hashicorp/go-cleanhttp v0.5.2 // indirect + github.com/hashicorp/go-cty v1.5.0 // indirect + github.com/hashicorp/go-hclog v1.6.3 // indirect + github.com/hashicorp/go-multierror v1.1.1 // indirect + github.com/hashicorp/go-plugin v1.6.3 // indirect + github.com/hashicorp/go-retryablehttp v0.7.7 // indirect + github.com/hashicorp/go-uuid v1.0.3 // indirect + github.com/hashicorp/hc-install v0.9.2 // indirect + github.com/hashicorp/hcl/v2 v2.23.0 // indirect + github.com/hashicorp/logutils v1.0.0 // indirect + github.com/hashicorp/terraform-exec v0.23.0 // indirect + github.com/hashicorp/terraform-json v0.25.0 // indirect + github.com/hashicorp/terraform-plugin-sdk/v2 v2.37.0 // indirect + github.com/hashicorp/terraform-registry-address v0.2.5 // indirect + github.com/hashicorp/terraform-svchost v0.1.1 // indirect + github.com/hashicorp/yamux v0.1.1 // indirect + github.com/huandu/xstrings v1.5.0 // indirect + github.com/inconshreveable/mousetrap v1.1.0 // indirect + github.com/jmoiron/sqlx v1.4.0 // indirect + github.com/josharian/intern v1.0.0 // indirect + github.com/json-iterator/go v1.1.12 // indirect + github.com/klauspost/compress v1.16.7 // indirect + github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect + github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect + github.com/lib/pq v1.10.9 // indirect + github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect + github.com/mailru/easyjson v0.7.7 // indirect + github.com/mattn/go-colorable v0.1.13 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect + github.com/mattn/go-runewidth v0.0.13 // indirect + github.com/mitchellh/copystructure v1.2.0 // indirect + github.com/mitchellh/go-testing-interface v1.14.1 // indirect + github.com/mitchellh/go-wordwrap v1.0.1 // indirect + github.com/mitchellh/mapstructure v1.5.0 // indirect + github.com/mitchellh/reflectwalk v1.0.2 // indirect + github.com/moby/locker v1.0.1 // indirect + github.com/moby/spdystream v0.5.0 // indirect + github.com/moby/term v0.5.0 // indirect + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect + github.com/modern-go/reflect2 v1.0.2 // indirect + github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect + github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect + github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect + github.com/oklog/run v1.0.0 // indirect + github.com/opencontainers/go-digest v1.0.0 // indirect + github.com/opencontainers/image-spec v1.1.0 // indirect + github.com/peterbourgon/diskv v2.0.1+incompatible // indirect + github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect + github.com/posener/complete v1.2.3 // indirect + github.com/prometheus/client_golang v1.19.1 // indirect + github.com/prometheus/client_model v0.6.1 // indirect + github.com/prometheus/common v0.55.0 // indirect + github.com/prometheus/procfs v0.15.1 // indirect + github.com/rubenv/sql-migrate v1.7.1 // indirect + github.com/russross/blackfriday/v2 v2.1.0 // indirect + github.com/shopspring/decimal v1.4.0 // indirect + github.com/sirupsen/logrus v1.9.3 // indirect + github.com/spf13/cast v1.7.0 // indirect + github.com/spf13/cobra v1.8.1 // indirect + github.com/spf13/pflag v1.0.5 // indirect + github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect + github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect + github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect + github.com/x448/float16 v0.8.4 // indirect + github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect + github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect + github.com/xeipuuv/gojsonschema v1.2.0 // indirect + github.com/xlab/treeprint v1.2.0 // indirect + github.com/yuin/goldmark v1.7.7 // indirect + github.com/yuin/goldmark-meta v1.1.0 // indirect + github.com/zclconf/go-cty v1.16.2 // indirect + go.abhg.dev/goldmark/frontmatter v0.2.0 // indirect + go.opentelemetry.io/auto/sdk v1.1.0 // indirect + go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect + go.opentelemetry.io/otel v1.34.0 // indirect + go.opentelemetry.io/otel/metric v1.34.0 // indirect + go.opentelemetry.io/otel/trace v1.34.0 // indirect + golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect + golang.org/x/mod v0.24.0 // indirect + golang.org/x/net v0.39.0 // indirect + golang.org/x/oauth2 v0.26.0 // indirect + golang.org/x/sync v0.14.0 // indirect + golang.org/x/sys v0.33.0 // indirect + golang.org/x/term v0.32.0 // indirect + golang.org/x/text v0.25.0 // indirect + golang.org/x/time v0.7.0 // indirect + golang.org/x/tools v0.26.0 // indirect + google.golang.org/appengine v1.6.8 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a // indirect + google.golang.org/grpc v1.72.1 // indirect + google.golang.org/protobuf v1.36.6 // indirect + gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect + gopkg.in/inf.v0 v0.9.1 // indirect + gopkg.in/yaml.v2 v2.4.0 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect + k8s.io/apiextensions-apiserver v0.32.2 // indirect + k8s.io/apiserver v0.32.2 // indirect + k8s.io/cli-runtime v0.32.2 // indirect + k8s.io/component-base v0.32.2 // indirect + k8s.io/klog/v2 v2.130.1 // indirect + k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect + k8s.io/kubectl v0.32.2 // indirect + k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect + oras.land/oras-go v1.2.5 // indirect + sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect + sigs.k8s.io/kustomize/api v0.18.0 // indirect + sigs.k8s.io/kustomize/kyaml v0.18.1 // indirect + sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect +) diff --git a/shuttles/terraform/terraform-provider-helm/go.sum b/shuttles/terraform/terraform-provider-helm/go.sum new file mode 100644 index 0000000..b99cba0 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/go.sum @@ -0,0 +1,658 @@ +dario.cat/mergo v1.0.1 h1:Ra4+bf83h2ztPIQYNP99R6m+Y7KfnARDfID+a+vLl4s= +dario.cat/mergo v1.0.1/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk= +filippo.io/edwards25519 v1.1.0 h1:FNf4tywRC1HmFuKW5xopWpigGjJKiJSV0Cqo0cJWDaA= +filippo.io/edwards25519 v1.1.0/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4= +github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 h1:bvDV9vkmnHYOMsOr4WLk+Vo07yKIzd94sVoIqshQ4bU= +github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24/go.mod h1:8o94RPi1/7XTJvwPpRSzSUedZrtlirdB3r9Z20bi2f8= +github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 h1:L/gRVlceqvL25UVaW/CKtUDjefjrs0SPonmDGUVOYP0= +github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E= +github.com/BurntSushi/toml v1.4.0 h1:kuoIxZQy2WRRk1pttg9asf+WVv6tWQuBNVmK8+nqPr0= +github.com/BurntSushi/toml v1.4.0/go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho= +github.com/DATA-DOG/go-sqlmock v1.5.2 h1:OcvFkGmslmlZibjAjaHm3L//6LiuBgolP7OputlJIzU= +github.com/DATA-DOG/go-sqlmock v1.5.2/go.mod h1:88MAG/4G7SMwSE3CeA0ZKzrT5CiOU3OJ+JlNzwDqpNU= +github.com/Kunde21/markdownfmt/v3 v3.1.0 h1:KiZu9LKs+wFFBQKhrZJrFZwtLnCCWJahL+S+E/3VnM0= +github.com/Kunde21/markdownfmt/v3 v3.1.0/go.mod h1:tPXN1RTyOzJwhfHoon9wUr4HGYmWgVxSQN6VBJDkrVc= +github.com/MakeNowJust/heredoc v1.0.0 h1:cXCdzVdstXyiTqTvfqk9SDHpKNjxuom+DOlyEeQ4pzQ= +github.com/MakeNowJust/heredoc v1.0.0/go.mod h1:mG5amYoWBHf8vpLOuehzbGGw0EHxpZZ6lCpQ4fNJ8LE= +github.com/Masterminds/goutils v1.1.1 h1:5nUrii3FMTL5diU80unEVvNevw1nH4+ZV4DSLVJLSYI= +github.com/Masterminds/goutils v1.1.1/go.mod h1:8cTjp+g8YejhMuvIA5y2vz3BpJxksy863GQaJW2MFNU= +github.com/Masterminds/semver/v3 v3.3.0 h1:B8LGeaivUe71a5qox1ICM/JLl0NqZSW5CHyL+hmvYS0= +github.com/Masterminds/semver/v3 v3.3.0/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM= +github.com/Masterminds/sprig/v3 v3.3.0 h1:mQh0Yrg1XPo6vjYXgtf5OtijNAKJRNcTdOOGZe3tPhs= +github.com/Masterminds/sprig/v3 v3.3.0/go.mod h1:Zy1iXRYNqNLUolqCpL4uhk6SHUMAOSCzdgBfDb35Lz0= +github.com/Masterminds/squirrel v1.5.4 h1:uUcX/aBc8O7Fg9kaISIUsHXdKuqehiXAMQTYX8afzqM= +github.com/Masterminds/squirrel v1.5.4/go.mod h1:NNaOrjSoIDfDA40n7sr2tPNZRfjzjA400rg+riTZj10= +github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY= +github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU= +github.com/Microsoft/hcsshim v0.11.7 h1:vl/nj3Bar/CvJSYo7gIQPyRWc9f3c6IeSNavBTSZNZQ= +github.com/Microsoft/hcsshim v0.11.7/go.mod h1:MV8xMfmECjl5HdO7U/3/hFVnkmSBjAjmA09d4bExKcU= +github.com/ProtonMail/go-crypto v1.1.6 h1:ZcV+Ropw6Qn0AX9brlQLAUXfqLBc7Bl+f/DmNxpLfdw= +github.com/ProtonMail/go-crypto v1.1.6/go.mod h1:rA3QumHc/FZ8pAHreoekgiAbzpNsfQAosU5td4SnOrE= +github.com/Shopify/logrus-bugsnag v0.0.0-20171204204709-577dee27f20d h1:UrqY+r/OJnIp5u0s1SbQ8dVfLCZJsnvazdBP5hS4iRs= +github.com/Shopify/logrus-bugsnag v0.0.0-20171204204709-577dee27f20d/go.mod h1:HI8ITrYtUY+O+ZhtlqUnD8+KwNPOyugEhfP9fdUIaEQ= +github.com/agext/levenshtein v1.2.3 h1:YB2fHEn0UJagG8T1rrWknE3ZQzWM06O8AMAatNn7lmo= +github.com/agext/levenshtein v1.2.3/go.mod h1:JEDfjyjHDjOF/1e4FlBE/PkbqA9OfWu2ki2W0IB5558= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/apparentlymart/go-textseg/v12 v12.0.0/go.mod h1:S/4uRK2UtaQttw1GenVJEynmyUenKwP++x/+DdGV/Ec= +github.com/apparentlymart/go-textseg/v15 v15.0.0 h1:uYvfpb3DyLSCGWnctWKGj857c6ew1u1fNQOlOtuGxQY= +github.com/apparentlymart/go-textseg/v15 v15.0.0/go.mod h1:K8XmNZdhEBkdlyDdvbmmsvpAG721bKi0joRfFdHIWJ4= +github.com/armon/go-radix v1.0.0 h1:F4z6KzEeeQIMeLFa97iZU6vupzoecKdU5TX24SNppXI= +github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= +github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= +github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= +github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 h1:DklsrG3dyBCFEj5IhUbnKptjxatkF07cF2ak3yi77so= +github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= +github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= +github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= +github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= +github.com/bgentry/speakeasy v0.1.0 h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY= +github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= +github.com/blang/semver/v4 v4.0.0 h1:1PFHFE6yCCTv8C1TeyNNarDzntLi7wMI5i/pzqYIsAM= +github.com/blang/semver/v4 v4.0.0/go.mod h1:IbckMUScFkM3pff0VJDNKRiT6TG/YpiHIM2yvyW5YoQ= +github.com/bmatcuk/doublestar/v4 v4.7.1 h1:fdDeAqgT47acgwd9bd9HxJRDmc9UAmPpc+2m0CXv75Q= +github.com/bmatcuk/doublestar/v4 v4.7.1/go.mod h1:xBQ8jztBU6kakFMg+8WGxn0c6z1fTSPVIjEY1Wr7jzc= +github.com/bshuster-repo/logrus-logstash-hook v1.0.0 h1:e+C0SB5R1pu//O4MQ3f9cFuPGoOVeF2fE4Og9otCc70= +github.com/bshuster-repo/logrus-logstash-hook v1.0.0/go.mod h1:zsTqEiSzDgAa/8GZR7E1qaXrhYNDKBYy5/dWPTIflbk= +github.com/bufbuild/protocompile v0.4.0 h1:LbFKd2XowZvQ/kajzguUp2DC9UEIQhIq77fZZlaQsNA= +github.com/bufbuild/protocompile v0.4.0/go.mod h1:3v93+mbWn/v3xzN+31nwkJfrEpAUwp+BagBSZWx+TP8= +github.com/bugsnag/bugsnag-go v0.0.0-20141110184014-b1d153021fcd h1:rFt+Y/IK1aEZkEHchZRSq9OQbsSzIT/OrI8YFFmRIng= +github.com/bugsnag/bugsnag-go v0.0.0-20141110184014-b1d153021fcd/go.mod h1:2oa8nejYd4cQ/b0hMIopN0lCRxU0bueqREvZLWFrtK8= +github.com/bugsnag/osext v0.0.0-20130617224835-0dd3f918b21b h1:otBG+dV+YK+Soembjv71DPz3uX/V/6MMlSyD9JBQ6kQ= +github.com/bugsnag/osext v0.0.0-20130617224835-0dd3f918b21b/go.mod h1:obH5gd0BsqsP2LwDJ9aOkm/6J86V6lyAXCoQWGw3K50= +github.com/bugsnag/panicwrap v0.0.0-20151223152923-e2c28503fcd0 h1:nvj0OLI3YqYXer/kZD8Ri1aaunCxIEsOst1BVJswV0o= +github.com/bugsnag/panicwrap v0.0.0-20151223152923-e2c28503fcd0/go.mod h1:D/8v3kj0zr8ZAKg1AQ6crr+5VwKN5eIywRkfhyM/+dE= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/chai2010/gettext-go v1.0.2 h1:1Lwwip6Q2QGsAdl/ZKPCwTe9fe0CjlUbqj5bFNSjIRk= +github.com/chai2010/gettext-go v1.0.2/go.mod h1:y+wnP2cHYaVj19NZhYKAwEMH2CI1gNHeQQ+5AjwawxA= +github.com/cloudflare/circl v1.6.0 h1:cr5JKic4HI+LkINy2lg3W2jF8sHCVTBncJr5gIIq7qk= +github.com/cloudflare/circl v1.6.0/go.mod h1:uddAzsPgqdMAYatqJ0lsjX1oECcQLIlRpzZh3pJrofs= +github.com/containerd/cgroups v1.1.0 h1:v8rEWFl6EoqHB+swVNjVoCJE8o3jX7e8nqBGPLaDFBM= +github.com/containerd/cgroups v1.1.0/go.mod h1:6ppBcbh/NOOUU+dMKrykgaBnK9lCIBxHqJDGwsa1mIw= +github.com/containerd/containerd v1.7.24 h1:zxszGrGjrra1yYJW/6rhm9cJ1ZQ8rkKBR48brqsa7nA= +github.com/containerd/containerd v1.7.24/go.mod h1:7QUzfURqZWCZV7RLNEn1XjUCQLEf0bkaK4GjUaZehxw= +github.com/containerd/continuity v0.4.2 h1:v3y/4Yz5jwnvqPKJJ+7Wf93fyWoCB3F5EclWG023MDM= +github.com/containerd/continuity v0.4.2/go.mod h1:F6PTNCKepoxEaXLQp3wDAjygEnImnZ/7o4JzpodfroQ= +github.com/containerd/errdefs v0.3.0 h1:FSZgGOeK4yuT/+DnF07/Olde/q4KBoMsaamhXxIMDp4= +github.com/containerd/errdefs v0.3.0/go.mod h1:+YBYIdtsnF4Iw6nWZhJcqGSg/dwvV7tyJ/kCkyJ2k+M= +github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= +github.com/containerd/log v0.1.0/go.mod h1:VRRf09a7mHDIRezVKTRCrOq78v577GXq3bSa3EhrzVo= +github.com/containerd/platforms v0.2.1 h1:zvwtM3rz2YHPQsF2CHYM8+KtB5dvhISiXh5ZpSBQv6A= +github.com/containerd/platforms v0.2.1/go.mod h1:XHCb+2/hzowdiut9rkudds9bE5yJ7npe7dG/wG+uFPw= +github.com/cpuguy83/go-md2man/v2 v2.0.4/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= +github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= +github.com/creack/pty v1.1.18 h1:n56/Zwd5o6whRC5PMGretI4IdRLlmBXYNjScPaBgsbY= +github.com/creack/pty v1.1.18/go.mod h1:MOBLtS5ELjhRRrroQr9kyvTxUAFNvYEK993ew/Vr4O4= +github.com/cyphar/filepath-securejoin v0.4.1 h1:JyxxyPEaktOD+GAnqIqTf9A8tHyAG22rowi7HkoSU1s= +github.com/cyphar/filepath-securejoin v0.4.1/go.mod h1:Sdj7gXlvMcPZsbhwhQ33GguGLDGQL7h7bg04C/+u9jI= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/distribution/distribution/v3 v3.0.0-20221208165359-362910506bc2 h1:aBfCb7iqHmDEIp6fBvC/hQUddQfg+3qdYjwzaiP9Hnc= +github.com/distribution/distribution/v3 v3.0.0-20221208165359-362910506bc2/go.mod h1:WHNsWjnIn2V1LYOrME7e8KxSeKunYHsxEm4am0BUtcI= +github.com/distribution/reference v0.6.0 h1:0IXCQ5g4/QMHHkarYzh5l+u8T3t73zM5QvfrDyIgxBk= +github.com/distribution/reference v0.6.0/go.mod h1:BbU0aIcezP1/5jX/8MP0YiH4SdvB5Y4f/wlDRiLyi3E= +github.com/docker/cli v25.0.1+incompatible h1:mFpqnrS6Hsm3v1k7Wa/BO23oz0k121MTbTO1lpcGSkU= +github.com/docker/cli v25.0.1+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8= +github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk= +github.com/docker/distribution v2.8.3+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= +github.com/docker/docker v25.0.6+incompatible h1:5cPwbwriIcsua2REJe8HqQV+6WlWc1byg2QSXzBxBGg= +github.com/docker/docker v25.0.6+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/docker/docker-credential-helpers v0.7.0 h1:xtCHsjxogADNZcdv1pKUHXryefjlVRqWqIhk/uXJp0A= +github.com/docker/docker-credential-helpers v0.7.0/go.mod h1:rETQfLdHNT3foU5kuNkFR1R1V12OJRRO5lzt2D1b5X0= +github.com/docker/go-connections v0.5.0 h1:USnMq7hx7gwdVZq1L49hLXaFtUdTADjXGp+uj1Br63c= +github.com/docker/go-connections v0.5.0/go.mod h1:ov60Kzw0kKElRwhNs9UlUHAE/F9Fe6GLaXnqyDdmEXc= +github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c h1:+pKlWGMw7gf6bQ+oDZB4KHQFypsfjYlq/C4rfL7D3g8= +github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c/go.mod h1:Uw6UezgYA44ePAFQYUehOuCzmy5zmg/+nl2ZfMWGkpA= +github.com/docker/go-metrics v0.0.1 h1:AgB/0SvBxihN0X8OR4SjsblXkbMvalQ8cjmtKQ2rQV8= +github.com/docker/go-metrics v0.0.1/go.mod h1:cG1hvH2utMXtqgqqYE9plW6lDxS3/5ayHzueweSI3Vw= +github.com/docker/libtrust v0.0.0-20150114040149-fa567046d9b1 h1:ZClxb8laGDf5arXfYcAtECDFgAgHklGI8CxgjHnXKJ4= +github.com/docker/libtrust v0.0.0-20150114040149-fa567046d9b1/go.mod h1:cyGadeNEkKy96OOhEzfZl+yxihPEzKnqJwvfuSUqbZE= +github.com/emicklei/go-restful/v3 v3.11.0 h1:rAQeMHw1c7zTmncogyy8VvRZwtkmkZ4FxERmMY4rD+g= +github.com/emicklei/go-restful/v3 v3.11.0/go.mod h1:6n3XBCmQQb25CM2LCACGz8ukIrRry+4bhvbpWn3mrbc= +github.com/emirpasic/gods v1.18.1 h1:FXtiHYKDGKCW2KzwZKx0iC0PQmdlorYgdFG9jPXJ1Bc= +github.com/emirpasic/gods v1.18.1/go.mod h1:8tpGGwCnJ5H4r6BWwaV6OrWmMoPhUl5jm/FMNAnJvWQ= +github.com/evanphx/json-patch v5.9.0+incompatible h1:fBXyNpNMuTTDdquAq/uisOr2lShz4oaXpDTX2bLe7ls= +github.com/evanphx/json-patch v5.9.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= +github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f h1:Wl78ApPPB2Wvf/TIe2xdyJxTlb6obmF18d8QdkxNDu4= +github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f/go.mod h1:OSYXu++VVOHnXeitef/D8n/6y4QV8uLHSFXX4NeXMGc= +github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= +github.com/fatih/color v1.16.0 h1:zmkK9Ngbjj+K0yRhTVONQh1p/HknKYSlNT+vZCzyokM= +github.com/fatih/color v1.16.0/go.mod h1:fL2Sau1YI5c0pdGEVCbKQbLXB6edEj1ZgiY4NijnWvE= +github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg= +github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= +github.com/foxcpp/go-mockdns v1.1.0 h1:jI0rD8M0wuYAxL7r/ynTrCQQq0BVqfB99Vgk7DlmewI= +github.com/foxcpp/go-mockdns v1.1.0/go.mod h1:IhLeSFGed3mJIAXPH2aiRQB+kqz7oqu8ld2qVbOu7Wk= +github.com/frankban/quicktest v1.14.6 h1:7Xjx+VpznH+oBnejlPUj8oUpdxnVs4f8XU8WnHkI4W8= +github.com/frankban/quicktest v1.14.6/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0= +github.com/fxamacker/cbor/v2 v2.7.0 h1:iM5WgngdRBanHcxugY4JySA0nk1wZorNOpTgCMedv5E= +github.com/fxamacker/cbor/v2 v2.7.0/go.mod h1:pxXPTn3joSm21Gbwsv0w9OSA2y1HFR9qXEeXQVeNoDQ= +github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk= +github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= +github.com/go-errors/errors v1.4.2 h1:J6MZopCL4uSllY1OfXM374weqZFFItUbrImctkmUxIA= +github.com/go-errors/errors v1.4.2/go.mod h1:sIVyrIiJhuEF+Pj9Ebtd6P/rEYROXFi3BopGUQ5a5Og= +github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 h1:+zs/tPmkDkHx3U66DAb0lQFJrpS6731Oaa12ikc+DiI= +github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376/go.mod h1:an3vInlBmSxCcxctByoQdvwPiA7DTK7jaaFDBTtu0ic= +github.com/go-git/go-billy/v5 v5.6.2 h1:6Q86EsPXMa7c3YZ3aLAQsMA0VlWmy43r6FHqa/UNbRM= +github.com/go-git/go-billy/v5 v5.6.2/go.mod h1:rcFC2rAsp/erv7CMz9GczHcuD0D32fWzH+MJAU+jaUU= +github.com/go-git/go-git/v5 v5.14.0 h1:/MD3lCrGjCen5WfEAzKg00MJJffKhC8gzS80ycmCi60= +github.com/go-git/go-git/v5 v5.14.0/go.mod h1:Z5Xhoia5PcWA3NF8vRLURn9E5FRhSl7dGj9ItW3Wk5k= +github.com/go-gorp/gorp/v3 v3.1.0 h1:ItKF/Vbuj31dmV4jxA1qblpSwkl9g1typ24xoe70IGs= +github.com/go-gorp/gorp/v3 v3.1.0/go.mod h1:dLEjIyyRNiXvNZ8PSmzpt1GsWAUK8kjVhEpjH8TixEw= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= +github.com/go-logr/logr v0.1.0/go.mod h1:ixOQHD9gLJUVQQ2ZOR7zLEifBX6tGkNJF4QyIY7sIas= +github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= +github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY= +github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= +github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= +github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= +github.com/go-openapi/jsonpointer v0.19.6/go.mod h1:osyAmYz/mB/C3I+WsTTSgw1ONzaLJoLCyoi6/zppojs= +github.com/go-openapi/jsonpointer v0.21.0 h1:YgdVicSA9vH5RiHs9TZW5oyafXZFc6+2Vc1rr/O9oNQ= +github.com/go-openapi/jsonpointer v0.21.0/go.mod h1:IUyH9l/+uyhIYQ/PXVA41Rexl+kOkAPDdXEYns6fzUY= +github.com/go-openapi/jsonreference v0.20.2 h1:3sVjiK66+uXK/6oQ8xgcRKcFgQ5KXa2KvnJRumpMGbE= +github.com/go-openapi/jsonreference v0.20.2/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k= +github.com/go-openapi/swag v0.22.3/go.mod h1:UzaqsxGiab7freDnrUUra0MwWfN/q7tE4j+VcZ0yl14= +github.com/go-openapi/swag v0.23.0 h1:vsEVJDUo2hPJ2tu0/Xc+4noaxyEffXNIs3cOULZ+GrE= +github.com/go-openapi/swag v0.23.0/go.mod h1:esZ8ITTYEsH1V2trKHjAN8Ai7xHb8RV+YSZ577vPjgQ= +github.com/go-sql-driver/mysql v1.8.1 h1:LedoTUt/eveggdHS9qUFC1EFSa8bU2+1pZjSRpvNJ1Y= +github.com/go-sql-driver/mysql v1.8.1/go.mod h1:wEBSXgmK//2ZFJyE+qWnIsVGmvmEKlqwuVSjsCm7DZg= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/go-task/slim-sprig/v3 v3.0.0 h1:sUs3vkvUymDpBKi3qH1YSqBQk9+9D/8M2mN1vB6EwHI= +github.com/go-task/slim-sprig/v3 v3.0.0/go.mod h1:W848ghGpv3Qj3dhTPRyJypKRiqCdHZiAzKg9hl15HA8= +github.com/go-test/deep v1.0.3 h1:ZrJSEWsXzPOxaZnFteGEfooLba+ju3FYIbOrS+rQd68= +github.com/go-test/deep v1.0.3/go.mod h1:wGDj63lr65AM2AQyKZd/NYHGb0R+1RLqB8NKt3aSFNA= +github.com/gobwas/glob v0.2.3 h1:A4xDbljILXROh+kObIiy5kIaPYD8e96x1tgBhUI5J+Y= +github.com/gobwas/glob v0.2.3/go.mod h1:d3Ez4x06l9bZtSvzIay5+Yzi0fmZzPgnTbPcKjJAkT8= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= +github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= +github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 h1:f+oWsMOmNPc8JmEHVZIycC7hBoQxHH9pNKQORJNozsQ= +github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8/go.mod h1:wcDNUvekVysuuOpQKo3191zZyTpiI6se1N1ULghS0sw= +github.com/golang/protobuf v1.1.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= +github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= +github.com/gomodule/redigo v1.8.2 h1:H5XSIre1MB5NbPYFp+i1NBbb5qN1W8Y8YAQoAYbkm8k= +github.com/gomodule/redigo v1.8.2/go.mod h1:P9dn9mFrCBvWhGE1wpxx6fgq7BAeLBk+UUUzlpkBYO0= +github.com/google/btree v1.0.1 h1:gK4Kx5IaGY9CD5sPJ36FHiBJ6ZXl0kilRiiCj+jdYp4= +github.com/google/btree v1.0.1/go.mod h1:xXMiIv4Fb/0kKde4SpL7qlzvu5cMJDRkFDxJfI9uaxA= +github.com/google/gnostic-models v0.6.8 h1:yo/ABAfM5IMRsS1VnXjTBvUb61tFIHozhlYvRgGre9I= +github.com/google/gnostic-models v0.6.8/go.mod h1:5n7qKqH0f5wFt+aWF8CW6pZLLNOfYuF5OpfBSENuI8U= +github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= +github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= +github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/gofuzz v1.2.0 h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0= +github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/pprof v0.0.0-20241029153458-d1b30febd7db h1:097atOisP2aRj7vFgYQBbFN4U4JNXUNYpxael3UzMyo= +github.com/google/pprof v0.0.0-20241029153458-d1b30febd7db/go.mod h1:vavhavw2zAxS5dIdcRluK6cSGGPlZynqzFM8NdvU144= +github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 h1:El6M4kTTCOh6aBiKaUGG7oYTSPP8MxqL4YI3kZKwcP4= +github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ= +github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/gorilla/handlers v1.5.1 h1:9lRY6j8DEeeBT10CvO9hGW0gmky0BprnvDI5vfhUHH4= +github.com/gorilla/handlers v1.5.1/go.mod h1:t8XrUpc4KVXb7HGyJ4/cEnwQiaxrX/hz1Zv/4g96P1Q= +github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI= +github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= +github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc= +github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= +github.com/gosuri/uitable v0.0.4 h1:IG2xLKRvErL3uhY6e1BylFzG+aJiwQviDDTfOKeKTpY= +github.com/gosuri/uitable v0.0.4/go.mod h1:tKR86bXuXPZazfOTG1FIzvjIdXzd0mo4Vtn16vt0PJo= +github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 h1:+ngKgrYPPJrOjhax5N+uePQ0Fh1Z7PheYoUI/0nzkPA= +github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= +github.com/hashicorp/cli v1.1.7 h1:/fZJ+hNdwfTSfsxMBa9WWMlfjUZbX8/LnUxgAd7lCVU= +github.com/hashicorp/cli v1.1.7/go.mod h1:e6Mfpga9OCT1vqzFuoGZiiF/KaG9CbUfO5s3ghU3YgU= +github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= +github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= +github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= +github.com/hashicorp/go-checkpoint v0.5.0 h1:MFYpPZCnQqQTE18jFwSII6eUQrD/oxMFp3mlgcqk5mU= +github.com/hashicorp/go-checkpoint v0.5.0/go.mod h1:7nfLNL10NsxqO4iWuW6tWW0HjZuDrwkBuEQsVcpCOgg= +github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= +github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ= +github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= +github.com/hashicorp/go-cty v1.5.0 h1:EkQ/v+dDNUqnuVpmS5fPqyY71NXVgT5gf32+57xY8g0= +github.com/hashicorp/go-cty v1.5.0/go.mod h1:lFUCG5kd8exDobgSfyj4ONE/dc822kiYMguVKdHGMLM= +github.com/hashicorp/go-hclog v1.6.3 h1:Qr2kF+eVWjTiYmU7Y31tYlP1h0q/X3Nl3tPGdaB11/k= +github.com/hashicorp/go-hclog v1.6.3/go.mod h1:W4Qnvbt70Wk/zYJryRzDRU/4r0kIg0PVHBcfoyhpF5M= +github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= +github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo= +github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM= +github.com/hashicorp/go-plugin v1.6.3 h1:xgHB+ZUSYeuJi96WtxEjzi23uh7YQpznjGh0U0UUrwg= +github.com/hashicorp/go-plugin v1.6.3/go.mod h1:MRobyh+Wc/nYy1V4KAXUiYfzxoYhs7V1mlH1Z7iY2h0= +github.com/hashicorp/go-retryablehttp v0.7.7 h1:C8hUCYzor8PIfXHa4UrZkU4VvK8o9ISHxT2Q8+VepXU= +github.com/hashicorp/go-retryablehttp v0.7.7/go.mod h1:pkQpWZeYWskR+D1tR2O5OcBFOxfA7DoAO6xtkuQnHTk= +github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= +github.com/hashicorp/go-uuid v1.0.3 h1:2gKiV6YVmrJ1i2CKKa9obLvRieoRGviZFL26PcT/Co8= +github.com/hashicorp/go-uuid v1.0.3/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= +github.com/hashicorp/go-version v1.7.0 h1:5tqGy27NaOTB8yJKUZELlFAS/LTKJkrmONwQKeRZfjY= +github.com/hashicorp/go-version v1.7.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= +github.com/hashicorp/golang-lru v0.5.4 h1:YDjusn29QI/Das2iO9M0BHnIbxPeyuCHsjMW+lJfyTc= +github.com/hashicorp/golang-lru v0.5.4/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= +github.com/hashicorp/hc-install v0.9.2 h1:v80EtNX4fCVHqzL9Lg/2xkp62bbvQMnvPQ0G+OmtO24= +github.com/hashicorp/hc-install v0.9.2/go.mod h1:XUqBQNnuT4RsxoxiM9ZaUk0NX8hi2h+Lb6/c0OZnC/I= +github.com/hashicorp/hcl/v2 v2.23.0 h1:Fphj1/gCylPxHutVSEOf2fBOh1VE4AuLV7+kbJf3qos= +github.com/hashicorp/hcl/v2 v2.23.0/go.mod h1:62ZYHrXgPoX8xBnzl8QzbWq4dyDsDtfCRgIq1rbJEvA= +github.com/hashicorp/logutils v1.0.0 h1:dLEQVugN8vlakKOUE3ihGLTZJRB4j+M2cdTm/ORI65Y= +github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64= +github.com/hashicorp/terraform-exec v0.23.0 h1:MUiBM1s0CNlRFsCLJuM5wXZrzA3MnPYEsiXmzATMW/I= +github.com/hashicorp/terraform-exec v0.23.0/go.mod h1:mA+qnx1R8eePycfwKkCRk3Wy65mwInvlpAeOwmA7vlY= +github.com/hashicorp/terraform-json v0.25.0 h1:rmNqc/CIfcWawGiwXmRuiXJKEiJu1ntGoxseG1hLhoQ= +github.com/hashicorp/terraform-json v0.25.0/go.mod h1:sMKS8fiRDX4rVlR6EJUMudg1WcanxCMoWwTLkgZP/vc= +github.com/hashicorp/terraform-plugin-docs v0.20.1 h1:Fq7E/HrU8kuZu3hNliZGwloFWSYfWEOWnylFhYQIoys= +github.com/hashicorp/terraform-plugin-docs v0.20.1/go.mod h1:Yz6HoK7/EgzSrHPB9J/lWFzwl9/xep2OPnc5jaJDV90= +github.com/hashicorp/terraform-plugin-framework v1.15.0 h1:LQ2rsOfmDLxcn5EeIwdXFtr03FVsNktbbBci8cOKdb4= +github.com/hashicorp/terraform-plugin-framework v1.15.0/go.mod h1:hxrNI/GY32KPISpWqlCoTLM9JZsGH3CyYlir09bD/fI= +github.com/hashicorp/terraform-plugin-framework-validators v0.13.0 h1:bxZfGo9DIUoLLtHMElsu+zwqI4IsMZQBRRy4iLzZJ8E= +github.com/hashicorp/terraform-plugin-framework-validators v0.13.0/go.mod h1:wGeI02gEhj9nPANU62F2jCaHjXulejm/X+af4PdZaNo= +github.com/hashicorp/terraform-plugin-go v0.27.0 h1:ujykws/fWIdsi6oTUT5Or4ukvEan4aN9lY+LOxVP8EE= +github.com/hashicorp/terraform-plugin-go v0.27.0/go.mod h1:FDa2Bb3uumkTGSkTFpWSOwWJDwA7bf3vdP3ltLDTH6o= +github.com/hashicorp/terraform-plugin-log v0.9.0 h1:i7hOA+vdAItN1/7UrfBqBwvYPQ9TFvymaRGZED3FCV0= +github.com/hashicorp/terraform-plugin-log v0.9.0/go.mod h1:rKL8egZQ/eXSyDqzLUuwUYLVdlYeamldAHSxjUFADow= +github.com/hashicorp/terraform-plugin-sdk/v2 v2.37.0 h1:NFPMacTrY/IdcIcnUB+7hsore1ZaRWU9cnB6jFoBnIM= +github.com/hashicorp/terraform-plugin-sdk/v2 v2.37.0/go.mod h1:QYmYnLfsosrxjCnGY1p9c7Zj6n9thnEE+7RObeYs3fA= +github.com/hashicorp/terraform-plugin-testing v1.13.0 h1:vTELm6x3Z4H9VO3fbz71wbJhbs/5dr5DXfIwi3GMmPY= +github.com/hashicorp/terraform-plugin-testing v1.13.0/go.mod h1:b/hl6YZLm9fjeud/3goqh/gdqhZXbRfbHMkEiY9dZwc= +github.com/hashicorp/terraform-registry-address v0.2.5 h1:2GTftHqmUhVOeuu9CW3kwDkRe4pcBDq0uuK5VJngU1M= +github.com/hashicorp/terraform-registry-address v0.2.5/go.mod h1:PpzXWINwB5kuVS5CA7m1+eO2f1jKb5ZDIxrOPfpnGkg= +github.com/hashicorp/terraform-svchost v0.1.1 h1:EZZimZ1GxdqFRinZ1tpJwVxxt49xc/S52uzrw4x0jKQ= +github.com/hashicorp/terraform-svchost v0.1.1/go.mod h1:mNsjQfZyf/Jhz35v6/0LWcv26+X7JPS+buii2c9/ctc= +github.com/hashicorp/yamux v0.1.1 h1:yrQxtgseBDrq9Y652vSRDvsKCJKOUD+GzTS4Y0Y8pvE= +github.com/hashicorp/yamux v0.1.1/go.mod h1:CtWFDAQgb7dxtzFs4tWbplKIe2jSi3+5vKbgIO0SLnQ= +github.com/huandu/xstrings v1.5.0 h1:2ag3IFq9ZDANvthTwTiqSSZLjDc+BedvHPAp5tJy2TI= +github.com/huandu/xstrings v1.5.0/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE= +github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= +github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= +github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A= +github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i6rXxKeerYnT8Nvf0QmHCRC1n8sfWVwXF2Frvo= +github.com/jhump/protoreflect v1.15.1 h1:HUMERORf3I3ZdX05WaQ6MIpd/NJ434hTp5YiKgfCL6c= +github.com/jhump/protoreflect v1.15.1/go.mod h1:jD/2GMKKE6OqX8qTjhADU1e6DShO+gavG9e0Q693nKo= +github.com/jmoiron/sqlx v1.4.0 h1:1PLqN7S1UYp5t4SrVVnt4nUVNemrDAtxlulVe+Qgm3o= +github.com/jmoiron/sqlx v1.4.0/go.mod h1:ZrZ7UsYB/weZdl2Bxg6jCRO9c3YHl8r3ahlKmRT4JLY= +github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY= +github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= +github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= +github.com/kevinburke/ssh_config v1.2.0 h1:x584FjTGwHzMwvHx18PXxbBVzfnxogHaAReU4gf13a4= +github.com/kevinburke/ssh_config v1.2.0/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM= +github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= +github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/klauspost/compress v1.16.7 h1:2mk3MPGNzKyxErAw8YaohYh69+pa4sIQSC0fPGCFR9I= +github.com/klauspost/compress v1.16.7/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= +github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= +github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 h1:SOEGU9fKiNWd/HOJuq6+3iTQz8KNCLtVX6idSoTLdUw= +github.com/lann/builder v0.0.0-20180802200727-47ae307949d0/go.mod h1:dXGbAdH5GtBTC4WfIxhKZfyBF/HBFgRZSWwZ9g/He9o= +github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 h1:P6pPBnrTSX3DEVR4fDembhRWSsG5rVo6hYhAB/ADZrk= +github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0/go.mod h1:vmVJ0l/dxyfGW6FmdpVm2joNMFikkuWg0EoCKLGUMNw= +github.com/lib/pq v1.10.9 h1:YXG7RB+JIjhP29X+OtkiDnYaXQwpS4JEWq7dtCCRUEw= +github.com/lib/pq v1.10.9/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= +github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de h1:9TO3cAIGXtEhnIaL+V+BEER86oLrvS+kWobKpbJuye0= +github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de/go.mod h1:zAbeS9B/r2mtpb6U+EI2rYA5OAXxsYw6wTamcNW+zcE= +github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0= +github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= +github.com/mattn/go-colorable v0.1.9/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= +github.com/mattn/go-colorable v0.1.12/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4= +github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= +github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= +github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= +github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= +github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= +github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= +github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= +github.com/mattn/go-runewidth v0.0.13 h1:lTGmDsbAYt5DmK6OnoV7EuIF1wEIFAcxld6ypU4OSgU= +github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= +github.com/mattn/go-sqlite3 v1.14.22 h1:2gZY6PC6kBnID23Tichd1K+Z0oS6nE/XwU+Vz/5o4kU= +github.com/mattn/go-sqlite3 v1.14.22/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y= +github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= +github.com/miekg/dns v1.1.57 h1:Jzi7ApEIzwEPLHWRcafCN9LZSBbqQpxjt/wpgvg7wcM= +github.com/miekg/dns v1.1.57/go.mod h1:uqRjCRUuEAA6qsOiJvDd+CFo/vW+y5WR6SNmHE55hZk= +github.com/mitchellh/copystructure v1.2.0 h1:vpKXTN4ewci03Vljg/q9QvCGUDttBOGBIa15WveJJGw= +github.com/mitchellh/copystructure v1.2.0/go.mod h1:qLl+cE2AmVv+CoeAwDPye/v+N2HKCj9FbZEVFJRxO9s= +github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= +github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= +github.com/mitchellh/go-testing-interface v1.14.1 h1:jrgshOhYAUVNMAJiKbEu7EqAwgJJ2JqpQmpLJOu07cU= +github.com/mitchellh/go-testing-interface v1.14.1/go.mod h1:gfgS7OtZj6MA4U1UrDRp04twqAjfvlZyCfX3sDjEym8= +github.com/mitchellh/go-wordwrap v1.0.1 h1:TLuKupo69TCn6TQSyGxwI1EblZZEsQ0vMlAFQflz0v0= +github.com/mitchellh/go-wordwrap v1.0.1/go.mod h1:R62XHJLzvMFRBbcrT7m7WgmE1eOyTSsCt+hzestvNj0= +github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY= +github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/mitchellh/reflectwalk v1.0.2 h1:G2LzWKi524PWgd3mLHV8Y5k7s6XUvT0Gef6zxSIeXaQ= +github.com/mitchellh/reflectwalk v1.0.2/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw= +github.com/moby/locker v1.0.1 h1:fOXqR41zeveg4fFODix+1Ch4mj/gT0NE1XJbp/epuBg= +github.com/moby/locker v1.0.1/go.mod h1:S7SDdo5zpBK84bzzVlKr2V0hz+7x9hWbYC/kq7oQppc= +github.com/moby/spdystream v0.5.0 h1:7r0J1Si3QO/kjRitvSLVVFUjxMEb/YLj6S9FF62JBCU= +github.com/moby/spdystream v0.5.0/go.mod h1:xBAYlnt/ay+11ShkdFKNAG7LsyK/tmNBVvVOwrfMgdI= +github.com/moby/sys/mountinfo v0.6.2 h1:BzJjoreD5BMFNmD9Rus6gdd1pLuecOFPt8wC+Vygl78= +github.com/moby/sys/mountinfo v0.6.2/go.mod h1:IJb6JQeOklcdMU9F5xQ8ZALD+CUr5VlGpwtX+VE0rpI= +github.com/moby/sys/userns v0.1.0 h1:tVLXkFOxVu9A64/yh59slHVv9ahO9UIev4JZusOLG/g= +github.com/moby/sys/userns v0.1.0/go.mod h1:IHUYgu/kao6N8YZlp9Cf444ySSvCmDlmzUcYfDHOl28= +github.com/moby/term v0.5.0 h1:xt8Q1nalod/v7BqbG21f8mQPqH+xAaC9C3N3wfWbVP0= +github.com/moby/term v0.5.0/go.mod h1:8FzsFHVUBGZdbDsJw/ot+X+d5HLUbvklYLJ9uGfcI3Y= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= +github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 h1:n6/2gBQ3RWajuToeY6ZtZTIKv2v7ThUy5KKusIT0yc0= +github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00/go.mod h1:Pm3mSP3c5uWn86xMLZ5Sa7JB9GsEZySvHYXCTK4E9q4= +github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA= +github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus= +github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= +github.com/oklog/run v1.0.0 h1:Ru7dDtJNOyC66gQ5dQmaCa0qIsAUFY3sFpK1Xk8igrw= +github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA= +github.com/onsi/ginkgo/v2 v2.21.0 h1:7rg/4f3rB88pb5obDgNZrNHrQ4e6WpjonchcpuBRnZM= +github.com/onsi/ginkgo/v2 v2.21.0/go.mod h1:7Du3c42kxCUegi0IImZ1wUQzMBVecgIHjR1C+NkhLQo= +github.com/onsi/gomega v1.35.1 h1:Cwbd75ZBPxFSuZ6T+rN/WCb/gOc6YgFBXLlZLhC7Ds4= +github.com/onsi/gomega v1.35.1/go.mod h1:PvZbdDc8J6XJEpDK4HCuRBm8a6Fzp9/DmhC9C7yFlog= +github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U= +github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM= +github.com/opencontainers/image-spec v1.1.0 h1:8SG7/vwALn54lVB/0yZ/MMwhFrPYtpEHQb2IpWsCzug= +github.com/opencontainers/image-spec v1.1.0/go.mod h1:W4s4sFTMaBeK1BQLXbG4AdM2szdn85PY75RI83NrTrM= +github.com/peterbourgon/diskv v2.0.1+incompatible h1:UBdAOUP5p4RWqPBg048CAvpKN+vxiaj6gdUUzhl4XmI= +github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU= +github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5 h1:Ii+DKncOVM8Cu1Hc+ETb5K+23HdAMvESYE3ZJ5b5cMI= +github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5/go.mod h1:iIss55rKnNBTvrwdmkUpLnDpZoAHvWaiq5+iMmen4AE= +github.com/pjbgf/sha1cd v0.3.2 h1:a9wb0bp1oC2TGwStyn0Umc/IGKQnEgF0vVaZ8QF8eo4= +github.com/pjbgf/sha1cd v0.3.2/go.mod h1:zQWigSxVmsHEZow5qaLtPYxpcKMMQpa09ixqBxuCS6A= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= +github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/posener/complete v1.2.3 h1:NP0eAhjcjImqslEwo/1hq7gpajME0fTLTezBKDqfXqo= +github.com/posener/complete v1.2.3/go.mod h1:WZIdtGGp+qx0sLrYKtIRAruyNpv6hFCicSgv7Sy7s/s= +github.com/poy/onpar v1.1.2 h1:QaNrNiZx0+Nar5dLgTVp5mXkyoVFIbepjyEoGSnhbAY= +github.com/poy/onpar v1.1.2/go.mod h1:6X8FLNoxyr9kkmnlqpK6LSoiOtrO6MICtWwEuWkLjzg= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= +github.com/prometheus/client_golang v1.1.0/go.mod h1:I1FGZT9+L76gKKOs5djB6ezCbFQP1xR9D75/vuwEF3g= +github.com/prometheus/client_golang v1.19.1 h1:wZWJDwK+NameRJuPGDhlnFgx8e8HN3XHQeLaYJFJBOE= +github.com/prometheus/client_golang v1.19.1/go.mod h1:mP78NwGzrVks5S2H6ab8+ZZGJLZUq1hoULYBAYBw1Ho= +github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/common v0.6.0/go.mod h1:eBmuwkDJBwy6iBfxCBob6t6dR6ENT/y+J+Zk0j9GMYc= +github.com/prometheus/common v0.55.0 h1:KEi6DK7lXW/m7Ig5i47x0vRzuBsHuvJdi5ee6Y3G1dc= +github.com/prometheus/common v0.55.0/go.mod h1:2SECS4xJG1kd8XF9IcM1gMX6510RAEL65zxzNImwdc8= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= +github.com/prometheus/procfs v0.0.3/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ= +github.com/prometheus/procfs v0.15.1 h1:YagwOFzUgYfKKHX6Dr+sHT7km/hxC76UB0learggepc= +github.com/prometheus/procfs v0.15.1/go.mod h1:fB45yRUv8NstnjriLhBQLuOUt+WW4BsoGhij/e3PBqk= +github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY= +github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= +github.com/rogpeppe/go-internal v1.13.1 h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR38lUII= +github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o= +github.com/rubenv/sql-migrate v1.7.1 h1:f/o0WgfO/GqNuVg+6801K/KW3WdDSupzSjDYODmiUq4= +github.com/rubenv/sql-migrate v1.7.1/go.mod h1:Ob2Psprc0/3ggbM6wCzyYVFFuc6FyZrb2AS+ezLDFb4= +github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk= +github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= +github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 h1:n661drycOFuPLCN3Uc8sB6B/s6Z4t2xvBgU1htSHuq8= +github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3/go.mod h1:A0bzQcvG0E7Rwjx0REVgAGH58e96+X0MeOfepqsbeW4= +github.com/shopspring/decimal v1.4.0 h1:bxl37RwXBklmTi0C79JfXCEBD1cqqHt0bbgBAGFp81k= +github.com/shopspring/decimal v1.4.0/go.mod h1:gawqmDU56v4yIKSwfBSFip1HdCCXN8/+DMd9qYNcwME= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= +github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ= +github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= +github.com/skeema/knownhosts v1.3.1 h1:X2osQ+RAjK76shCbvhHHHVl3ZlgDm8apHEHFqRjnBY8= +github.com/skeema/knownhosts v1.3.1/go.mod h1:r7KTdC8l4uxWRyK2TpQZ/1o5HaSzh06ePQNxPwTcfiY= +github.com/spf13/cast v1.7.0 h1:ntdiHjuueXFgm5nzDRdOS4yfT43P5Fnud6DH50rz/7w= +github.com/spf13/cast v1.7.0/go.mod h1:ancEpBxwJDODSW/UG4rDrAqiKolqNNh2DX3mk86cAdo= +github.com/spf13/cobra v1.8.1 h1:e5/vxKd/rZsfSJMUX1agtjeTDf+qv1/JdBF8gg5k9ZM= +github.com/spf13/cobra v1.8.1/go.mod h1:wHxEcudfqmLYa8iTfL+OuZPbBZkmvliBWKIezN3kD9Y= +github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= +github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= +github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= +github.com/stretchr/objx v0.5.2 h1:xuMeJ0Sdp5ZMRXx/aWO6RZxdr3beISkG5/G/aIRr3pY= +github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= +github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1FQKckRals= +github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA= +github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/vmihailenco/msgpack v3.3.3+incompatible/go.mod h1:fy3FlTQTDXWkZ7Bh6AcGMlsjHatGryHQYUTf1ShIgkk= +github.com/vmihailenco/msgpack v4.0.4+incompatible h1:dSLoQfGFAo3F6OoNhwUmLwVgaUXK79GlxNBwueZn0xI= +github.com/vmihailenco/msgpack v4.0.4+incompatible/go.mod h1:fy3FlTQTDXWkZ7Bh6AcGMlsjHatGryHQYUTf1ShIgkk= +github.com/vmihailenco/msgpack/v5 v5.4.1 h1:cQriyiUvjTwOHg8QZaPihLWeRAAVoCpE00IUPn0Bjt8= +github.com/vmihailenco/msgpack/v5 v5.4.1/go.mod h1:GaZTsDaehaPpQVyxrf5mtQlH+pc21PIudVV/E3rRQok= +github.com/vmihailenco/tagparser/v2 v2.0.0 h1:y09buUbR+b5aycVFQs/g70pqKVZNBmxwAhO7/IwNM9g= +github.com/vmihailenco/tagparser/v2 v2.0.0/go.mod h1:Wri+At7QHww0WTrCBeu4J6bNtoV6mEfg5OIWRZA9qds= +github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM= +github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg= +github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM= +github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= +github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= +github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb h1:zGWFAtiMcyryUHoUjUJX0/lt1H2+i2Ka2n+D3DImSNo= +github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= +github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0= +github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= +github.com/xeipuuv/gojsonschema v1.2.0 h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17UxZ74= +github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y= +github.com/xlab/treeprint v1.2.0 h1:HzHnuAF1plUN2zGlAFHbSQP2qJ0ZAD3XF5XD7OesXRQ= +github.com/xlab/treeprint v1.2.0/go.mod h1:gj5Gd3gPdKtR1ikdDK6fnFLdmIS0X30kTTuNd/WEJu0= +github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= +github.com/yuin/goldmark v1.7.7 h1:5m9rrB1sW3JUMToKFQfb+FGt1U7r57IHu5GrYrG2nqU= +github.com/yuin/goldmark v1.7.7/go.mod h1:uzxRWxtg69N339t3louHJ7+O03ezfj6PlliRlaOzY1E= +github.com/yuin/goldmark-meta v1.1.0 h1:pWw+JLHGZe8Rk0EGsMVssiNb/AaPMHfSRszZeUeiOUc= +github.com/yuin/goldmark-meta v1.1.0/go.mod h1:U4spWENafuA7Zyg+Lj5RqK/MF+ovMYtBvXi1lBb2VP0= +github.com/yvasiyarov/go-metrics v0.0.0-20140926110328-57bccd1ccd43 h1:+lm10QQTNSBd8DVTNGHx7o/IKu9HYDvLMffDhbyLccI= +github.com/yvasiyarov/go-metrics v0.0.0-20140926110328-57bccd1ccd43/go.mod h1:aX5oPXxHm3bOH+xeAttToC8pqch2ScQN/JoXYupl6xs= +github.com/yvasiyarov/gorelic v0.0.0-20141212073537-a9bba5b9ab50 h1:hlE8//ciYMztlGpl/VA+Zm1AcTPHYkHJPbHqE6WJUXE= +github.com/yvasiyarov/gorelic v0.0.0-20141212073537-a9bba5b9ab50/go.mod h1:NUSPSUX/bi6SeDMUh6brw0nXpxHnc96TguQh0+r/ssA= +github.com/yvasiyarov/newrelic_platform_go v0.0.0-20140908184405-b21fdbd4370f h1:ERexzlUfuTvpE74urLSbIQW0Z/6hF9t8U4NsJLaioAY= +github.com/yvasiyarov/newrelic_platform_go v0.0.0-20140908184405-b21fdbd4370f/go.mod h1:GlGEuHIJweS1mbCqG+7vt2nvWLzLLnRHbXz5JKd/Qbg= +github.com/zclconf/go-cty v1.16.2 h1:LAJSwc3v81IRBZyUVQDUdZ7hs3SYs9jv0eZJDWHD/70= +github.com/zclconf/go-cty v1.16.2/go.mod h1:VvMs5i0vgZdhYawQNq5kePSpLAoz8u1xvZgrPIxfnZE= +github.com/zclconf/go-cty-debug v0.0.0-20240509010212-0d6042c53940 h1:4r45xpDWB6ZMSMNJFMOjqrGHynW3DIBuR2H9j0ug+Mo= +github.com/zclconf/go-cty-debug v0.0.0-20240509010212-0d6042c53940/go.mod h1:CmBdvvj3nqzfzJ6nTCIwDTPZ56aVGvDrmztiO5g3qrM= +go.abhg.dev/goldmark/frontmatter v0.2.0 h1:P8kPG0YkL12+aYk2yU3xHv4tcXzeVnN+gU0tJ5JnxRw= +go.abhg.dev/goldmark/frontmatter v0.2.0/go.mod h1:XqrEkZuM57djk7zrlRUB02x8I5J0px76YjkOzhB4YlU= +go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= +go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= +go.opentelemetry.io/auto/sdk v1.1.0 h1:cH53jehLUN6UFLY71z+NDOiNJqDdPRaXzTel0sJySYA= +go.opentelemetry.io/auto/sdk v1.1.0/go.mod h1:3wSPjt5PWp2RhlCcmmOial7AvC4DQqZb7a7wCow3W8A= +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 h1:4K4tsIXefpVJtvA/8srF4V4y0akAoPHkIslgAkjixJA= +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0/go.mod h1:jjdQuTGVsXV4vSs+CJ2qYDeDPf9yIJV23qlIzBm73Vg= +go.opentelemetry.io/otel v1.34.0 h1:zRLXxLCgL1WyKsPVrgbSdMN4c0FMkDAskSTQP+0hdUY= +go.opentelemetry.io/otel v1.34.0/go.mod h1:OWFPOQ+h4G8xpyjgqo4SxJYdDQ/qmRH+wivy7zzx9oI= +go.opentelemetry.io/otel/metric v1.34.0 h1:+eTR3U0MyfWjRDhmFMxe2SsW64QrZ84AOhvqS7Y+PoQ= +go.opentelemetry.io/otel/metric v1.34.0/go.mod h1:CEDrp0fy2D0MvkXE+dPV7cMi8tWZwX3dmaIhwPOaqHE= +go.opentelemetry.io/otel/sdk v1.34.0 h1:95zS4k/2GOy069d321O8jWgYsW3MzVV+KuSPKp7Wr1A= +go.opentelemetry.io/otel/sdk v1.34.0/go.mod h1:0e/pNiaMAqaykJGKbi+tSjWfNNHMTxoC9qANsCzbyxU= +go.opentelemetry.io/otel/sdk/metric v1.34.0 h1:5CeK9ujjbFVL5c1PhLuStg1wxA7vQv7ce1EK0Gyvahk= +go.opentelemetry.io/otel/sdk/metric v1.34.0/go.mod h1:jQ/r8Ze28zRKoNRdkjCZxfs6YvBTG1+YIqyFVFYec5w= +go.opentelemetry.io/otel/trace v1.34.0 h1:+ouXS2V8Rd4hp4580a8q23bg0azF2nI8cqLYnC8mh/k= +go.opentelemetry.io/otel/trace v1.34.0/go.mod h1:Svm7lSjQD7kG7KJ/MUHPVXSDGz2OX4h0M2jHBhmSfRE= +go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= +go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.38.0 h1:jt+WWG8IZlBnVbomuhg2Mdq0+BBQaHbtqHEFEigjUV8= +golang.org/x/crypto v0.38.0/go.mod h1:MvrbAqul58NNYPKnOra203SB9vpuZW0e+RRZV+Ggqjw= +golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 h1:2dVuKD2vS7b0QIHQbpyTISPd0LeHDbnYEryqj5Q1ug8= +golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56/go.mod h1:M4RDyNAINzryxdtnbRXRL/OHtkFuWGRjvuhBJpk2IlY= +golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= +golang.org/x/mod v0.24.0 h1:ZfthKaKaT4NrhGVZHO1/WDTwGES4De8KtWO0SIbNJMU= +golang.org/x/mod v0.24.0/go.mod h1:IXM97Txy2VM4PJ3gI61r1YEk/gAj6zAHN3AdZt6S9Ww= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.39.0 h1:ZCu7HMWDxpXpaiKdhzIfaltL9Lp31x/3fCP11bc6/fY= +golang.org/x/net v0.39.0/go.mod h1:X7NRbYVEA+ewNkCNyJ513WmMdQ3BineSwVtN2zD/d+E= +golang.org/x/oauth2 v0.26.0 h1:afQXWNNaeC4nvZ0Ed9XvCCzXM6UHJG7iCg0W4fPqSBE= +golang.org/x/oauth2 v0.26.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= +golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.14.0 h1:woo0S4Yywslg6hp4eUFjTVOyKt0RookbpAHG4c1HmhQ= +golang.org/x/sync v0.14.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190801041406-cbf593c0f2f3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.33.0 h1:q3i8TbbEz+JRD9ywIRlyRAQbM0qF7hu24q3teo2hbuw= +golang.org/x/sys v0.33.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= +golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.32.0 h1:DR4lr0TjUs3epypdhTOkMmuF5CDFJ/8pOnbzMZPQ7bg= +golang.org/x/term v0.32.0/go.mod h1:uZG1FhGx848Sqfsq4/DlJr3xGGsYMu/L5GW4abiaEPQ= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= +golang.org/x/text v0.25.0 h1:qVyWApTSYLk/drJRO5mDlNYskwQznZmkpV2c8q9zls4= +golang.org/x/text v0.25.0/go.mod h1:WEdwpYrmk1qmdHvhkSTNPm3app7v4rsT8F2UD6+VHIA= +golang.org/x/time v0.7.0 h1:ntUhktv3OPE6TgYxXWv9vKvUSJyIFJlyohwbkEwPrKQ= +golang.org/x/time v0.7.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= +golang.org/x/tools v0.26.0 h1:v/60pFQmzmT9ExmjDv2gGIfi3OqfKoEP6I5+umXlbnQ= +golang.org/x/tools v0.26.0/go.mod h1:TPVVj70c7JJ3WCazhD8OdXcZg/og+b9+tH/KxylGwH0= +golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= +google.golang.org/appengine v1.6.8 h1:IhEN5q69dyKagZPYMSdIjS2HqprW324FRQZJcGqPAsM= +google.golang.org/appengine v1.6.8/go.mod h1:1jJ3jBArFh5pcgW8gCtRJnepW8FzD1V44FJffLiz/Ds= +google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a h1:51aaUVRocpvUOSQKM6Q7VuoaktNIaMCLuhZB6DKksq4= +google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a/go.mod h1:uRxBH1mhmO8PGhU89cMcHaXKZqO+OfakD8QQO0oYwlQ= +google.golang.org/grpc v1.72.1 h1:HR03wO6eyZ7lknl75XlxABNVLLFc2PAb6mHlYh756mA= +google.golang.org/grpc v1.72.1/go.mod h1:wH5Aktxcg25y1I3w7H69nHfXdOG3UiadoBtjh3izSDM= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.36.6 h1:z1NpPI8ku2WgiWnf+t9wTPsn6eP1L7ksHUlkfLvd9xY= +google.golang.org/protobuf v1.36.6/go.mod h1:jduwjTPXsFjZGTmRluh+L6NjiWu7pchiJ2/5YcXBHnY= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= +gopkg.in/evanphx/json-patch.v4 v4.12.0 h1:n6jtcsulIzXPJaxegRbvFNNrZDjbij7ny3gmSPG+6V4= +gopkg.in/evanphx/json-patch.v4 v4.12.0/go.mod h1:p8EYWUEYMpynmqDbY58zCKCFZw8pRWMG4EsWvDvM72M= +gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc= +gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= +gopkg.in/warnings.v0 v0.1.2 h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME= +gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= +gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gotest.tools/v3 v3.4.0 h1:ZazjZUfuVeZGLAmlKKuyv3IKP5orXcwtOwDQH6YVr6o= +gotest.tools/v3 v3.4.0/go.mod h1:CtbdzLSsqVhDgMtKsx03ird5YTGB3ar27v0u/yKBW5g= +helm.sh/helm/v3 v3.17.2 h1:agYQ5ew2jq5vdx2K7q5W44KyKQrnSubUMCQsjkiv3/o= +helm.sh/helm/v3 v3.17.2/go.mod h1:+uJKMH/UiMzZQOALR3XUf3BLIoczI2RKKD6bMhPh4G8= +k8s.io/api v0.32.2 h1:bZrMLEkgizC24G9eViHGOPbW+aRo9duEISRIJKfdJuw= +k8s.io/api v0.32.2/go.mod h1:hKlhk4x1sJyYnHENsrdCWw31FEmCijNGPJO5WzHiJ6Y= +k8s.io/apiextensions-apiserver v0.32.2 h1:2YMk285jWMk2188V2AERy5yDwBYrjgWYggscghPCvV4= +k8s.io/apiextensions-apiserver v0.32.2/go.mod h1:GPwf8sph7YlJT3H6aKUWtd0E+oyShk/YHWQHf/OOgCA= +k8s.io/apimachinery v0.32.2 h1:yoQBR9ZGkA6Rgmhbp/yuT9/g+4lxtsGYwW6dR6BDPLQ= +k8s.io/apimachinery v0.32.2/go.mod h1:GpHVgxoKlTxClKcteaeuF1Ul/lDVb74KpZcxcmLDElE= +k8s.io/apiserver v0.32.2 h1:WzyxAu4mvLkQxwD9hGa4ZfExo3yZZaYzoYvvVDlM6vw= +k8s.io/apiserver v0.32.2/go.mod h1:PEwREHiHNU2oFdte7BjzA1ZyjWjuckORLIK/wLV5goM= +k8s.io/cli-runtime v0.32.2 h1:aKQR4foh9qeyckKRkNXUccP9moxzffyndZAvr+IXMks= +k8s.io/cli-runtime v0.32.2/go.mod h1:a/JpeMztz3xDa7GCyyShcwe55p8pbcCVQxvqZnIwXN8= +k8s.io/client-go v0.32.2 h1:4dYCD4Nz+9RApM2b/3BtVvBHw54QjMFUl1OLcJG5yOA= +k8s.io/client-go v0.32.2/go.mod h1:fpZ4oJXclZ3r2nDOv+Ux3XcJutfrwjKTCHz2H3sww94= +k8s.io/component-base v0.32.2 h1:1aUL5Vdmu7qNo4ZsE+569PV5zFatM9hl+lb3dEea2zU= +k8s.io/component-base v0.32.2/go.mod h1:PXJ61Vx9Lg+P5mS8TLd7bCIr+eMJRQTyXe8KvkrvJq0= +k8s.io/helm v2.17.0+incompatible h1:Bpn6o1wKLYqKM3+Osh8e+1/K2g/GsQJ4F4yNF2+deao= +k8s.io/helm v2.17.0+incompatible/go.mod h1:LZzlS4LQBHfciFOurYBFkCMTaZ0D1l+p0teMg7TSULI= +k8s.io/klog v1.0.0 h1:Pt+yjF5aB1xDSVbau4VsWe+dQNzA0qv1LlXdC2dF6Q8= +k8s.io/klog v1.0.0/go.mod h1:4Bi6QPql/J/LkTDqv7R/cd3hPo4k2DG6Ptcz060Ez5I= +k8s.io/klog/v2 v2.130.1 h1:n9Xl7H1Xvksem4KFG4PYbdQCQxqc/tTUyrgXaOhHSzk= +k8s.io/klog/v2 v2.130.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE= +k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f h1:GA7//TjRY9yWGy1poLzYYJJ4JRdzg3+O6e8I+e+8T5Y= +k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f/go.mod h1:R/HEjbvWI0qdfb8viZUeVZm0X6IZnxAydC7YU42CMw4= +k8s.io/kubectl v0.32.2 h1:TAkag6+XfSBgkqK9I7ZvwtF0WVtUAvK8ZqTt+5zi1Us= +k8s.io/kubectl v0.32.2/go.mod h1:+h/NQFSPxiDZYX/WZaWw9fwYezGLISP0ud8nQKg+3g8= +k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 h1:M3sRQVHv7vB20Xc2ybTt7ODCeFj6JSWYFzOFnYeS6Ro= +k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= +oras.land/oras-go v1.2.5 h1:XpYuAwAb0DfQsunIyMfeET92emK8km3W4yEzZvUbsTo= +oras.land/oras-go v1.2.5/go.mod h1:PuAwRShRZCsZb7g8Ar3jKKQR/2A/qN+pkYxIOd/FAoo= +sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 h1:/Rv+M11QRah1itp8VhT6HoVx1Ray9eB4DBr+K+/sCJ8= +sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3/go.mod h1:18nIHnGi6636UCz6m8i4DhaJ65T6EruyzmoQqI2BVDo= +sigs.k8s.io/kustomize/api v0.18.0 h1:hTzp67k+3NEVInwz5BHyzc9rGxIauoXferXyjv5lWPo= +sigs.k8s.io/kustomize/api v0.18.0/go.mod h1:f8isXnX+8b+SGLHQ6yO4JG1rdkZlvhaCf/uZbLVMb0U= +sigs.k8s.io/kustomize/kyaml v0.18.1 h1:WvBo56Wzw3fjS+7vBjN6TeivvpbW9GmRaWZ9CIVmt4E= +sigs.k8s.io/kustomize/kyaml v0.18.1/go.mod h1:C3L2BFVU1jgcddNBE1TxuVLgS46TjObMwW5FT9FcjYo= +sigs.k8s.io/structured-merge-diff/v4 v4.4.2 h1:MdmvkGuXi/8io6ixD5wud3vOLwc1rj0aNqRlpuvjmwA= +sigs.k8s.io/structured-merge-diff/v4 v4.4.2/go.mod h1:N8f93tFZh9U6vpxwRArLiikrE5/2tiu1w1AGfACIGE4= +sigs.k8s.io/yaml v1.4.0 h1:Mk1wCc2gy/F0THH0TAp1QYyJNzRm2KCLy3o5ASXVI5E= +sigs.k8s.io/yaml v1.4.0/go.mod h1:Ejl7/uTz7PSA4eKMyQCUTnhZYNmLIl+5c2lQPGR2BPY= diff --git a/shuttles/terraform/terraform-provider-helm/helm/data_helm_template.go b/shuttles/terraform/terraform-provider-helm/helm/data_helm_template.go new file mode 100644 index 0000000..3e439d5 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/data_helm_template.go @@ -0,0 +1,1072 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + +package helm + +import ( + "bytes" + "context" + "encoding/json" + "fmt" + "net/url" + "os" + pathpkg "path" + "path/filepath" + "regexp" + "sort" + "strings" + "time" + + "github.com/hashicorp/terraform-plugin-framework-validators/stringvalidator" + "github.com/hashicorp/terraform-plugin-framework/attr" + "github.com/hashicorp/terraform-plugin-framework/datasource" + "github.com/hashicorp/terraform-plugin-framework/datasource/schema" + "github.com/hashicorp/terraform-plugin-framework/diag" + "github.com/hashicorp/terraform-plugin-framework/schema/validator" + "github.com/hashicorp/terraform-plugin-framework/types" + "github.com/hashicorp/terraform-plugin-log/tflog" + "helm.sh/helm/v3/pkg/action" + "helm.sh/helm/v3/pkg/chart" + "helm.sh/helm/v3/pkg/chart/loader" + "helm.sh/helm/v3/pkg/chartutil" + "helm.sh/helm/v3/pkg/downloader" + "helm.sh/helm/v3/pkg/getter" + "helm.sh/helm/v3/pkg/registry" + "helm.sh/helm/v3/pkg/release" + "helm.sh/helm/v3/pkg/releaseutil" + "k8s.io/helm/pkg/strvals" + "sigs.k8s.io/yaml" +) + +var ( + _ datasource.DataSource = &HelmTemplate{} + _ datasource.DataSourceWithConfigure = &HelmTemplate{} +) + +func NewHelmTemplate() datasource.DataSource { + return &HelmTemplate{} +} + +// HelmTemplate represents the data source for rendering Helm chart templates +type HelmTemplate struct { + meta *Meta +} + +// HelmTemplateModel holds the attributes for configuring the Helm chart templates +type HelmTemplateModel struct { + APIVersions types.List `tfsdk:"api_versions"` + Atomic types.Bool `tfsdk:"atomic"` + Chart types.String `tfsdk:"chart"` + CreateNamespace types.Bool `tfsdk:"create_namespace"` + CRDs types.List `tfsdk:"crds"` + DependencyUpdate types.Bool `tfsdk:"dependency_update"` + Description types.String `tfsdk:"description"` + Devel types.Bool `tfsdk:"devel"` + DisableOpenAPIValidation types.Bool `tfsdk:"disable_openapi_validation"` + DisableWebhooks types.Bool `tfsdk:"disable_webhooks"` + ID types.String `tfsdk:"id"` + IncludeCRDs types.Bool `tfsdk:"include_crds"` + IsUpgrade types.Bool `tfsdk:"is_upgrade"` + Keyring types.String `tfsdk:"keyring"` + KubeVersion types.String `tfsdk:"kube_version"` + Manifest types.String `tfsdk:"manifest"` + Manifests types.Map `tfsdk:"manifests"` + Name types.String `tfsdk:"name"` + Namespace types.String `tfsdk:"namespace"` + Notes types.String `tfsdk:"notes"` + PassCredentials types.Bool `tfsdk:"pass_credentials"` + PostRender *PostRenderModel `tfsdk:"postrender"` + RenderSubchartNotes types.Bool `tfsdk:"render_subchart_notes"` + Replace types.Bool `tfsdk:"replace"` + Repository types.String `tfsdk:"repository"` + RepositoryCaFile types.String `tfsdk:"repository_ca_file"` + RepositoryCertFile types.String `tfsdk:"repository_cert_file"` + RepositoryKeyFile types.String `tfsdk:"repository_key_file"` + RepositoryPassword types.String `tfsdk:"repository_password"` + RepositoryUsername types.String `tfsdk:"repository_username"` + ResetValues types.Bool `tfsdk:"reset_values"` + ReuseValues types.Bool `tfsdk:"reuse_values"` + Set types.Set `tfsdk:"set"` + SetList types.List `tfsdk:"set_list"` + SetSensitive types.Set `tfsdk:"set_sensitive"` + ShowOnly types.List `tfsdk:"show_only"` + SkipCrds types.Bool `tfsdk:"skip_crds"` + SkipTests types.Bool `tfsdk:"skip_tests"` + Timeout types.Int64 `tfsdk:"timeout"` + Validate types.Bool `tfsdk:"validate"` + Values types.List `tfsdk:"values"` + Version types.String `tfsdk:"version"` + Verify types.Bool `tfsdk:"verify"` + Wait types.Bool `tfsdk:"wait"` +} + +// SetValue represents the custom value to be merged with the Helm chart values +type SetValue struct { + Name types.String `tfsdk:"name"` + Type types.String `tfsdk:"type"` + Value types.String `tfsdk:"value"` +} + +// SetListValue represents a custom list value to be merged with the Helm chart values. +// This type is used to specify lists of values that should be passed to the Helm chart during deployment. +type SetListValue struct { + Name types.String `tfsdk:"name"` + Value types.List `tfsdk:"value"` +} + +// SetSensitiveValue represents a custom sensitive value to be merged with the Helm chart values. +type SetSensitiveValue struct { + Name types.String `tfsdk:"name"` + Type types.String `tfsdk:"type"` + Value types.String `tfsdk:"value"` +} +type Postrender struct { + BinaryPath types.String `tfsdk:"binary_path"` +} + +func (d *HelmTemplate) Configure(ctx context.Context, req datasource.ConfigureRequest, resp *datasource.ConfigureResponse) { + if req.ProviderData != nil { + d.meta = req.ProviderData.(*Meta) + } +} + +func (d *HelmTemplate) Metadata(ctx context.Context, req datasource.MetadataRequest, resp *datasource.MetadataResponse) { + resp.TypeName = req.ProviderTypeName + "_template" +} + +func (d *HelmTemplate) Schema(ctx context.Context, req datasource.SchemaRequest, resp *datasource.SchemaResponse) { + resp.Schema = schema.Schema{ + Description: "Data source to render Helm chart templates.", + Attributes: map[string]schema.Attribute{ + "api_versions": schema.ListAttribute{ + Optional: true, + ElementType: types.StringType, + Description: "Kubernetes api versions used for Capabilities.APIVersions.", + }, + "atomic": schema.BoolAttribute{ + Optional: true, + Description: "If set, the installation process purges the chart on fail. The 'wait' flag will be set automatically if 'atomic' is used.", + }, + "chart": schema.StringAttribute{ + Required: true, + Description: "Chart name to be installed. A path may be used.", + }, + "crds": schema.ListAttribute{ + Optional: true, + Computed: true, + ElementType: types.StringType, + Description: "List of rendered CRDs from the chart.", + }, + "create_namespace": schema.BoolAttribute{ + Optional: true, + Description: "Create the namespace if it does not exist.", + }, + "dependency_update": schema.BoolAttribute{ + Optional: true, + Description: "Run helm dependency update before installing the chart.", + }, + "description": schema.StringAttribute{ + Optional: true, + Description: "Add a custom description.", + }, + "devel": schema.BoolAttribute{ + Optional: true, + Description: "Use chart development versions, too. Equivalent to version '>0.0.0-0'. If `version` is set, this is ignored.", + }, + "disable_openapi_validation": schema.BoolAttribute{ + Optional: true, + Description: "If set, the installation process will not validate rendered templates against the Kubernetes OpenAPI Schema.", + }, + "disable_webhooks": schema.BoolAttribute{ + Optional: true, + Description: "Prevent hooks from running.", + }, + "id": schema.StringAttribute{ + Computed: true, + }, + "include_crds": schema.BoolAttribute{ + Optional: true, + Description: "Include CRDs in the templated output.", + }, + "is_upgrade": schema.BoolAttribute{ + Optional: true, + Description: "Set .Release.IsUpgrade instead of .Release.IsInstall.", + }, + "keyring": schema.StringAttribute{ + Optional: true, + Description: "Location of public keys used for verification. Used only if `verify` is true.", + }, + "kube_version": schema.StringAttribute{ + Optional: true, + Description: "Kubernetes version used for Capabilities.KubeVersion.", + }, + "manifest": schema.StringAttribute{ + Optional: true, + Computed: true, + Description: "Concatenated rendered chart templates. This corresponds to the output of the `helm template` command.", + }, + "manifests": schema.MapAttribute{ + Optional: true, + Computed: true, + ElementType: types.StringType, + Description: "Map of rendered chart templates indexed by the template name.", + }, + "name": schema.StringAttribute{ + Required: true, + Description: "Release name", + }, + "namespace": schema.StringAttribute{ + Optional: true, + Description: "Namespace to install the release into.", + }, + "notes": schema.StringAttribute{ + Optional: true, + Computed: true, + Description: "Rendered notes if the chart contains a `NOTES.txt`.", + }, + "pass_credentials": schema.BoolAttribute{ + Optional: true, + Description: "Pass credentials to all domains", + }, + "postrender": schema.SingleNestedAttribute{ + Description: "Postrender command config", + Optional: true, + Attributes: map[string]schema.Attribute{ + "args": schema.ListAttribute{ + Optional: true, + Description: "An argument to the post-renderer (can specify multiple)", + ElementType: types.StringType, + }, + "binary_path": schema.StringAttribute{ + Required: true, + Description: "The common binary path", + }, + }, + }, + "render_subchart_notes": schema.BoolAttribute{ + Optional: true, + Description: "If set, render subchart notes along with the parent.", + }, + "replace": schema.BoolAttribute{ + Optional: true, + Description: "Re-use the given name, even if that name is already used. This is unsafe in production.", + }, + "repository": schema.StringAttribute{ + Optional: true, + Description: "Repository where to locate the requested chart. If it is a URL the chart is installed without installing the repository.", + }, + "repository_ca_file": schema.StringAttribute{ + Optional: true, + Description: "The repository's CA file", + }, + "repository_cert_file": schema.StringAttribute{ + Optional: true, + Description: "The repository's cert file", + }, + "repository_key_file": schema.StringAttribute{ + Optional: true, + Description: "The repository's cert key file", + }, + "repository_password": schema.StringAttribute{ + Optional: true, + Sensitive: true, + Description: "Password for HTTP basic authentication", + }, + "repository_username": schema.StringAttribute{ + Optional: true, + Description: "Username for HTTP basic authentication", + }, + "reset_values": schema.BoolAttribute{ + Optional: true, + Description: "When upgrading, reset the values to the ones built into the chart.", + }, + "reuse_values": schema.BoolAttribute{ + Optional: true, + Description: "When upgrading, reuse the last release's values and merge in any overrides. If 'reset_values' is specified, this is ignored.", + }, + "set": schema.SetNestedAttribute{ + Description: "Custom values to be merged with the values", + Optional: true, + NestedObject: schema.NestedAttributeObject{ + Attributes: map[string]schema.Attribute{ + "name": schema.StringAttribute{ + Required: true, + }, + "value": schema.StringAttribute{ + Optional: true, + }, + "type": schema.StringAttribute{ + Optional: true, + Computed: true, + Validators: []validator.String{ + stringvalidator.OneOf("auto", "string", "literal"), + }, + }, + }, + }, + }, + "set_list": schema.ListNestedAttribute{ + Description: "Custom sensitive values to be merged with the values", + Optional: true, + NestedObject: schema.NestedAttributeObject{ + Attributes: map[string]schema.Attribute{ + "name": schema.StringAttribute{ + Optional: true, + }, + "value": schema.ListAttribute{ + Required: true, + ElementType: types.StringType, + }, + }, + }, + }, + "set_sensitive": schema.SetNestedAttribute{ + Description: "Custom sensitive values to be merged with the values", + Optional: true, + NestedObject: schema.NestedAttributeObject{ + Attributes: map[string]schema.Attribute{ + "name": schema.StringAttribute{ + Required: true, + }, + "value": schema.StringAttribute{ + Required: true, + Sensitive: true, + }, + "type": schema.StringAttribute{ + Optional: true, + Validators: []validator.String{ + stringvalidator.OneOf("auto", "string", "literal"), + }, + }, + }, + }, + }, + "show_only": schema.ListAttribute{ + Optional: true, + ElementType: types.StringType, + Description: "Only show manifests rendered from the given templates.", + }, + "skip_crds": schema.BoolAttribute{ + Optional: true, + Description: "If set, no CRDs will be installed. By default, CRDs are installed if not already present.", + }, + "skip_tests": schema.BoolAttribute{ + Optional: true, + Description: "If set, tests will not be rendered. By default, tests are rendered.", + }, + "timeout": schema.Int64Attribute{ + Optional: true, + Description: "Time in seconds to wait for any individual Kubernetes operation.", + }, + "validate": schema.BoolAttribute{ + Optional: true, + Description: "Validate your manifests against the Kubernetes cluster you are currently pointing at. This is the same validation performed on an install.", + }, + "values": schema.ListAttribute{ + Optional: true, + ElementType: types.StringType, + Description: "List of values in raw yaml format to pass to helm.", + }, + "verify": schema.BoolAttribute{ + Optional: true, + Description: "Verify the package before installing it.", + }, + "version": schema.StringAttribute{ + Optional: true, + Computed: true, + Description: "Specify the exact chart version to install. If this is not specified, the latest version is installed.", + }, + "wait": schema.BoolAttribute{ + Optional: true, + Description: "Will wait until all resources are in a ready state before marking the release as successful.", + }, + }, + } +} + +// Reads the current state of the data template and will update the state with the data fetched +func (d *HelmTemplate) Read(ctx context.Context, req datasource.ReadRequest, resp *datasource.ReadResponse) { + var state HelmTemplateModel + resp.Diagnostics.Append(req.Config.Get(ctx, &state)...) + if resp.Diagnostics.HasError() { + return + } + + // setting default values to false is attributes are not provided in the config + if state.Description.IsNull() || state.Description.ValueString() == "" { + state.Description = types.StringValue("") + } + if state.Devel.IsNull() || state.Devel.IsUnknown() { + if !state.Version.IsNull() && state.Version.ValueString() != "" { + // Version is set, suppress devel change + state.Devel = types.BoolValue(false) + } + } + if state.Keyring.IsNull() || state.Keyring.IsUnknown() { + if !state.Verify.IsNull() && state.Verify.ValueBool() { + state.Keyring = types.StringValue(os.ExpandEnv("$HOME/.gnupg/pubring.gpg")) + } else { + state.Keyring = types.StringValue("") + } + } + if state.IncludeCRDs.IsNull() || state.IncludeCRDs.IsUnknown() { + state.IncludeCRDs = types.BoolValue(false) + } + if state.IsUpgrade.IsNull() || state.IsUpgrade.IsUnknown() { + state.IsUpgrade = types.BoolValue(false) + } + if state.DisableWebhooks.IsNull() || state.DisableWebhooks.IsUnknown() { + state.DisableWebhooks = types.BoolValue(false) + } + if state.ReuseValues.IsNull() || state.ReuseValues.IsUnknown() { + state.ReuseValues = types.BoolValue(false) + } + if state.ResetValues.IsNull() || state.ResetValues.IsUnknown() { + state.ResetValues = types.BoolValue(false) + } + if state.Atomic.IsNull() || state.Atomic.IsUnknown() { + state.Atomic = types.BoolValue(false) + } + if state.SkipCrds.IsNull() || state.SkipCrds.IsUnknown() { + state.SkipCrds = types.BoolValue(false) + } + if state.SkipTests.IsNull() || state.SkipTests.IsUnknown() { + state.SkipTests = types.BoolValue(false) + } + if state.RenderSubchartNotes.IsNull() || state.RenderSubchartNotes.IsUnknown() { + state.RenderSubchartNotes = types.BoolValue(false) + } + if state.DisableOpenAPIValidation.IsNull() || state.DisableOpenAPIValidation.IsUnknown() { + state.DisableOpenAPIValidation = types.BoolValue(false) + } + if state.Wait.IsNull() || state.Wait.IsUnknown() { + state.Wait = types.BoolValue(false) + } + if state.DependencyUpdate.IsNull() || state.DependencyUpdate.IsUnknown() { + state.DependencyUpdate = types.BoolValue(false) + } + if state.Replace.IsNull() || state.Replace.IsUnknown() { + state.Replace = types.BoolValue(false) + } + if state.CreateNamespace.IsNull() || state.CreateNamespace.IsUnknown() { + state.CreateNamespace = types.BoolValue(false) + } + if state.Validate.IsNull() || state.Validate.IsUnknown() { + state.Validate = types.BoolValue(false) + } + if state.Verify.IsNull() || state.Verify.IsUnknown() { + state.Verify = types.BoolValue(false) + } + if state.Timeout.IsNull() || state.Timeout.IsUnknown() { + state.Timeout = types.Int64Value(300) + } + if state.Namespace.IsNull() || state.Namespace.IsUnknown() { + defaultNamespace := os.Getenv("HELM_NAMESPACE") + if defaultNamespace == "" { + defaultNamespace = "default" + } + state.Namespace = types.StringValue(defaultNamespace) + } + + meta := d.meta + + var apiVersions []string + if !state.APIVersions.IsNull() && !state.APIVersions.IsUnknown() { + var apiVersionElements []types.String + diags := state.APIVersions.ElementsAs(ctx, &apiVersionElements, false) + resp.Diagnostics.Append(diags...) + if diags.HasError() { + return + } + + for _, apiVersion := range apiVersionElements { + apiVersions = append(apiVersions, apiVersion.ValueString()) + } + } + + var showFiles []string + + if !state.ShowOnly.IsNull() && state.ShowOnly.Elements() != nil { + var showOnlyElements []types.String + diags := state.ShowOnly.ElementsAs(ctx, &showOnlyElements, false) + resp.Diagnostics.Append(diags...) + if diags.HasError() { + return + } + + for _, raw := range showOnlyElements { + if raw.IsNull() || raw.ValueString() == "" { + continue + } + showFiles = append(showFiles, raw.ValueString()) + } + } + + actionConfig, err := meta.GetHelmConfiguration(ctx, state.Namespace.ValueString()) + if err != nil { + resp.Diagnostics.AddError( + "Failed to get Helm configuration", + fmt.Sprintf("There was an error retrieving Helm configuration for namespace %q: %s", state.Namespace.ValueString(), err), + ) + return + } + diags := OCIRegistryLogin(ctx, meta, actionConfig, meta.RegistryClient, state.Repository.ValueString(), state.Chart.ValueString(), state.RepositoryUsername.ValueString(), state.RepositoryPassword.ValueString()) + if diags.HasError() { + resp.Diagnostics.Append(diags...) + return + } + client := action.NewInstall(actionConfig) + + cpo, chartName, cpoDiags := chartPathOptionsModel(&state, meta, &client.ChartPathOptions) + resp.Diagnostics.Append(cpoDiags...) + if resp.Diagnostics.HasError() { + return + } + + c, chartPath, chartDiags := getChartModel(ctx, &state, meta, chartName, cpo) + resp.Diagnostics.Append(chartDiags...) + if resp.Diagnostics.HasError() { + return + } + + updated, depDiags := checkChartDependenciesModel(ctx, &state, c, chartPath, meta) + resp.Diagnostics.Append(depDiags...) + if resp.Diagnostics.HasError() { + return + } else if updated { + c, err = loader.Load(chartPath) + if err != nil { + resp.Diagnostics.AddError("Error loading chart", fmt.Sprintf("Could not reload chart after updating dependencies: %s", err)) + return + } + } + + values, valuesDiags := getValuesModel(ctx, &state) + resp.Diagnostics.Append(valuesDiags...) + if resp.Diagnostics.HasError() { + return + } + + if err := isChartInstallable(c); err != nil { + resp.Diagnostics.AddError("Error checking if chart is installable", fmt.Sprintf("Chart is not installable: %s", err)) + return + } + client.ChartPathOptions = *cpo + client.ClientOnly = false + client.ReleaseName = state.Name.ValueString() + client.GenerateName = false + client.NameTemplate = "" + client.OutputDir = "" + client.Namespace = state.Namespace.ValueString() + client.Timeout = time.Duration(state.Timeout.ValueInt64()) * time.Second + client.Wait = state.Wait.ValueBool() + client.DependencyUpdate = state.DependencyUpdate.ValueBool() + client.DisableHooks = state.DisableWebhooks.ValueBool() + client.DisableOpenAPIValidation = state.DisableOpenAPIValidation.ValueBool() + client.Atomic = state.Atomic.ValueBool() + client.Replace = state.Replace.ValueBool() + client.SkipCRDs = state.SkipCrds.ValueBool() + client.SubNotes = state.RenderSubchartNotes.ValueBool() + client.Devel = state.Devel.ValueBool() + client.Description = state.Description.ValueString() + client.CreateNamespace = state.CreateNamespace.ValueBool() + + if state.KubeVersion.ValueString() != "" { + parsedVer, err := chartutil.ParseKubeVersion(state.KubeVersion.ValueString()) + if err != nil { + resp.Diagnostics.AddError( + "Failed to parse Kubernetes version", + fmt.Sprintf("couldn't parse string %q into kube-version: %s", state.KubeVersion.ValueString(), err), + ) + return + } + client.KubeVersion = parsedVer + } + + client.DryRun = true + client.Replace = true + client.ClientOnly = !state.Validate.ValueBool() + client.APIVersions = chartutil.VersionSet(apiVersions) + client.IncludeCRDs = state.IncludeCRDs.ValueBool() + + rel, err := client.Run(c, values) + if err != nil { + resp.Diagnostics.AddError( + "Error running Helm install", + fmt.Sprintf("Error running Helm install: %s", err), + ) + return + } + + var manifests bytes.Buffer + fmt.Fprintln(&manifests, strings.TrimSpace(rel.Manifest)) + if !client.DisableHooks { + for _, m := range rel.Hooks { + if state.SkipTests.ValueBool() && isTestHook(m) { + continue + } + fmt.Fprintf(&manifests, "---\n# Source: %s\n%s\n", m.Path, m.Manifest) + } + } + var manifestsToRender []string + + splitManifests := releaseutil.SplitManifests(manifests.String()) + manifestsKeys := make([]string, 0, len(splitManifests)) + for k := range splitManifests { + manifestsKeys = append(manifestsKeys, k) + } + sort.Sort(releaseutil.BySplitManifestsOrder(manifestsKeys)) + + var chartCRDs []string + for _, crd := range rel.Chart.CRDObjects() { + chartCRDs = append(chartCRDs, string(crd.File.Data)) + } + + // Mapping of manifest key to manifest template name + manifestNamesByKey := make(map[string]string, len(manifestsKeys)) + + manifestNameRegex := regexp.MustCompile("# Source: [^/]+/(.+)") + + for _, manifestKey := range manifestsKeys { + manifest := splitManifests[manifestKey] + submatch := manifestNameRegex.FindStringSubmatch(manifest) + if len(submatch) == 0 { + continue + } + manifestName := submatch[1] + manifestNamesByKey[manifestKey] = manifestName + } + + if len(showFiles) > 0 { + for _, f := range showFiles { + missing := true + f = filepath.ToSlash(f) + + for manifestKey, manifestName := range manifestNamesByKey { + manifestPathSplit := strings.Split(manifestName, "/") + manifestPath := strings.Join(manifestPathSplit, "/") + + if matched, _ := filepath.Match(f, manifestPath); !matched { + continue + } + + manifestsToRender = append(manifestsToRender, manifestKey) + missing = false + } + + if missing { + resp.Diagnostics.AddError( + "Template Not Found", + fmt.Sprintf("Could not find template %q in chart", f), + ) + } + } + } else { + manifestsToRender = manifestsKeys + } + + // We need to sort the manifests so the order stays stable when they are + // concatenated back together in the computedManifests map + sort.Strings(manifestsToRender) + + // Map from rendered manifests to data source output + computedManifests := make(map[string]string, 0) + computedManifest := &strings.Builder{} + + for _, manifestKey := range manifestsToRender { + manifest := splitManifests[manifestKey] + manifestName := manifestNamesByKey[manifestKey] + + // Manifests + computedManifests[manifestName] = fmt.Sprintf("%s---\n%s\n", computedManifests[manifestName], manifest) + + // Manifest bundle + fmt.Fprintf(computedManifest, "---\n%s\n", manifest) + } + + // Convert chartCRDs to types.List + listElements := make([]attr.Value, len(chartCRDs)) + for i, crd := range chartCRDs { + listElements[i] = types.StringValue(crd) + } + listValue, diags := types.ListValue(types.StringType, listElements) + if diags.HasError() { + resp.Diagnostics.Append(diags...) + return + } + state.CRDs = listValue + // Convert computedManifests to types.Map + elements := make(map[string]attr.Value, len(computedManifests)) + for k, v := range computedManifests { + elements[k] = types.StringValue(v) + } + mapValue, diags := types.MapValue(types.StringType, elements) + if diags.HasError() { + resp.Diagnostics.Append(diags...) + return + } + state.Manifests = mapValue + + state.Manifest = types.StringValue(computedManifest.String()) + state.Notes = types.StringValue(rel.Info.Notes) + state.ID = types.StringValue(state.Name.ValueString()) + + resp.Diagnostics.Append(resp.State.Set(ctx, &state)...) +} + +func getValuesModel(ctx context.Context, model *HelmTemplateModel) (map[string]interface{}, diag.Diagnostics) { + base := map[string]interface{}{} + var diags diag.Diagnostics + + // Process "values" attribute + for _, raw := range model.Values.Elements() { + if raw.IsNull() { + continue + } + + value, ok := raw.(types.String) + if !ok { + diags.AddError("Type Error", fmt.Sprintf("Expected types.String, got %T", raw)) + return nil, diags + } + + values := value.ValueString() + if values == "" { + continue + } + + currentMap := map[string]interface{}{} + if err := yaml.Unmarshal([]byte(values), ¤tMap); err != nil { + diags.AddError("Error unmarshaling values", fmt.Sprintf("---> %v %s", err, values)) + return nil, diags + } + + base = mergeMaps(base, currentMap) + } + + // Process "set" attribute + if !model.Set.IsNull() { + var setList []SetValue + setDiags := model.Set.ElementsAs(ctx, &setList, false) + diags.Append(setDiags...) + if diags.HasError() { + return nil, diags + } + + for _, set := range setList { + setDiags := applySetValue(base, set) + diags.Append(setDiags...) + if diags.HasError() { + return nil, diags + } + } + } + + // Process "set_list" attribute + if !model.SetList.IsUnknown() { + var setListSlice []SetListValue + setListDiags := model.SetList.ElementsAs(ctx, &setListSlice, false) + diags.Append(setListDiags...) + if diags.HasError() { + return nil, diags + } + + for _, setList := range setListSlice { + setListDiags := applySetListValue(ctx, base, setList) + diags.Append(setListDiags...) + if diags.HasError() { + return nil, diags + } + } + } + + // Process "set_sensitive" attribute + if !model.SetSensitive.IsNull() { + var setSensitiveList []SetSensitiveValue + setSensitiveDiags := model.SetSensitive.ElementsAs(ctx, &setSensitiveList, false) + diags.Append(setSensitiveDiags...) + if diags.HasError() { + return nil, diags + } + + for _, setSensitive := range setSensitiveList { + setSensitiveDiags := applySetSensitiveValue(base, setSensitive) + diags.Append(setSensitiveDiags...) + if diags.HasError() { + return nil, diags + } + } + } + + tflog.Debug(ctx, fmt.Sprintf("Final merged values: %v", base)) + logDiags := LogValuesModel(ctx, base, model) + diags.Append(logDiags...) + return base, diags +} + +func isTestHook(h *release.Hook) bool { + for _, e := range h.Events { + if e == release.HookTest { + return true + } + } + return false +} + +func chartPathOptionsModel(model *HelmTemplateModel, meta *Meta, cpo *action.ChartPathOptions) (*action.ChartPathOptions, string, diag.Diagnostics) { + var diags diag.Diagnostics + chartName := model.Chart.ValueString() + repository := model.Repository.ValueString() + + var repositoryURL string + if registry.IsOCI(repository) { + // LocateChart expects the chart name to contain the full OCI path + u, err := url.Parse(repository) + if err != nil { + diags.AddError("Invalid Repository URL", fmt.Sprintf("Failed to parse repository URL %s: %s", repository, err)) + return nil, "", diags + } + u.Path = pathpkg.Join(u.Path, chartName) + chartName = u.String() + } else { + var err error + repositoryURL, chartName, err = buildChartNameWithRepository(repository, strings.TrimSpace(chartName)) + if err != nil { + diags.AddError("Error building Chart Name With Repository", fmt.Sprintf("Could not build Chart Name With Repository %s and chart %s: %s", repository, chartName, err)) + return nil, "", diags + } + } + + version := getVersionModel(model) + + cpo.CaFile = model.RepositoryCaFile.ValueString() + cpo.CertFile = model.RepositoryCertFile.ValueString() + cpo.KeyFile = model.RepositoryKeyFile.ValueString() + cpo.Keyring = model.Keyring.ValueString() + cpo.RepoURL = repositoryURL + cpo.Verify = model.Verify.ValueBool() + if !useChartVersion(chartName, cpo.RepoURL) { + cpo.Version = version + } + cpo.Username = model.RepositoryUsername.ValueString() + cpo.Password = model.RepositoryPassword.ValueString() + cpo.PassCredentialsAll = model.PassCredentials.ValueBool() + + return cpo, chartName, diags +} + +func getVersionModel(model *HelmTemplateModel) string { + version := model.Version.ValueString() + if version == "" && model.Devel.ValueBool() { + return ">0.0.0-0" + } + return strings.TrimSpace(version) +} + +func getChartModel(ctx context.Context, model *HelmTemplateModel, meta *Meta, name string, cpo *action.ChartPathOptions) (*chart.Chart, string, diag.Diagnostics) { + var diags diag.Diagnostics + + tflog.Debug(ctx, fmt.Sprintf("Helm settings: %+v", meta.Settings)) + + path, err := cpo.LocateChart(name, meta.Settings) + if err != nil { + diags.AddError("Error locating chart", fmt.Sprintf("Unable to locate chart %s: %s", name, err)) + return nil, "", diags + } + + c, err := loader.Load(path) + if err != nil { + diags.AddError("Error loading chart", fmt.Sprintf("Unable to load chart %s: %s", path, err)) + return nil, "", diags + } + + return c, path, diags +} + +func checkChartDependenciesModel(ctx context.Context, model *HelmTemplateModel, c *chart.Chart, path string, meta *Meta) (bool, diag.Diagnostics) { + var diags diag.Diagnostics + p := getter.All(meta.Settings) + + if req := c.Metadata.Dependencies; req != nil { + err := action.CheckDependencies(c, req) + if err != nil { + if model.DependencyUpdate.ValueBool() { + man := &downloader.Manager{ + Out: os.Stdout, + ChartPath: path, + Keyring: model.Keyring.ValueString(), + SkipUpdate: false, + Getters: p, + RepositoryConfig: meta.Settings.RepositoryConfig, + RepositoryCache: meta.Settings.RepositoryCache, + Debug: meta.Settings.Debug, + } + tflog.Debug(ctx, "Downloading chart dependencies...") + if err := man.Update(); err != nil { + diags.AddError("Failed to update chart dependencies", fmt.Sprintf("Error: %s", err)) + return true, diags + } + return true, diags + } + diags.AddError("Missing chart dependencies", "Found in Chart.yaml, but missing in charts/ directory.") + return false, diags + } + } + tflog.Debug(ctx, "Chart dependencies are up to date.") + return false, diags +} + +func applySetValue(base map[string]interface{}, set SetValue) diag.Diagnostics { + var diags diag.Diagnostics + + name := set.Name.ValueString() + value := set.Value.ValueString() + valueType := set.Type.ValueString() + + switch valueType { + case "auto", "": + if err := strvals.ParseInto(fmt.Sprintf("%s=%s", name, value), base); err != nil { + diags.AddError("Failed parsing value", fmt.Sprintf("Key %q with value %s: %s", name, value, err)) + } + case "string": + if err := strvals.ParseIntoString(fmt.Sprintf("%s=%s", name, value), base); err != nil { + diags.AddError("Failed parsing string value", fmt.Sprintf("Key %q with value %s: %s", name, value, err)) + } + case "literal": + var literal interface{} + if err := yaml.Unmarshal([]byte(fmt.Sprintf("%s: %s", name, value)), &literal); err != nil { + diags.AddError("Failed parsing literal value", fmt.Sprintf("Key %q with literal value %s: %s", name, value, err)) + return diags + } + if m, ok := literal.(map[string]interface{}); ok { + base[name] = m[name] + } else { + base[name] = literal + } + default: + diags.AddError("Unexpected type", fmt.Sprintf("Unexpected type: %s", valueType)) + } + return diags +} + +func applySetListValue(ctx context.Context, base map[string]interface{}, setList SetListValue) diag.Diagnostics { + var diags diag.Diagnostics + + name := setList.Name.ValueString() + + if setList.Value.IsNull() { + diags.AddError("Null List Value", "The list value is null.") + return diags + } + + // Extract elements from the list value + elements := setList.Value.Elements() + + listStringArray := make([]string, 0, len(elements)) + for _, element := range elements { + if !element.IsNull() { + strValue := element.(types.String).ValueString() + listStringArray = append(listStringArray, strValue) + } + } + + listString := strings.Join(listStringArray, ",") + + // Parse the joined string into the base map + if err := strvals.ParseInto(fmt.Sprintf("%s={%s}", name, listString), base); err != nil { + diags.AddError("Error parsing list value", fmt.Sprintf("Failed parsing key %q with value %s: %s", name, listString, err)) + return diags + } + + return diags +} + +func applySetSensitiveValue(base map[string]interface{}, setSensitive SetSensitiveValue) diag.Diagnostics { + var diags diag.Diagnostics + + name := setSensitive.Name.ValueString() + value := setSensitive.Value.ValueString() + valueType := setSensitive.Type.ValueString() + + switch valueType { + case "auto", "": + if err := strvals.ParseInto(fmt.Sprintf("%s=%s", name, value), base); err != nil { + diags.AddError("Failed parsing sensitive value", fmt.Sprintf("Failed parsing key %q with value %s: %s", name, value, err)) + } + case "string": + if err := strvals.ParseIntoString(fmt.Sprintf("%s=%s", name, value), base); err != nil { + diags.AddError("Failed parsing sensitive string value", fmt.Sprintf("Failed parsing key %q with value %s: %s", name, value, err)) + } + default: + diags.AddError("Unexpected type", fmt.Sprintf("Unexpected type for sensitive value: %s", valueType)) + } + + return diags +} + +func LogValuesModel(ctx context.Context, values map[string]interface{}, state *HelmTemplateModel) diag.Diagnostics { + var diags diag.Diagnostics + + asJSON, err := json.Marshal(values) + if err != nil { + diags.AddError("Error marshaling values to JSON", fmt.Sprintf("Failed to marshal values to JSON: %s", err)) + return diags + } + + var clonedValues map[string]interface{} + err = json.Unmarshal(asJSON, &clonedValues) + if err != nil { + diags.AddError("Error unmarshaling JSON to map", fmt.Sprintf("Failed to unmarshal JSON to map: %s", err)) + return diags + } + + // Apply cloaking or masking for sensitive values + cloakSetValuesModel(clonedValues, state) + + // Convert the modified map to YAML for logging purposes + yamlData, err := yaml.Marshal(clonedValues) + if err != nil { + diags.AddError("Error marshaling map to YAML", fmt.Sprintf("Failed to marshal map to YAML: %s", err)) + return diags + } + + // Log the final YAML representation of the values + tflog.Debug(ctx, fmt.Sprintf("---[ values.yaml ]-----------------------------------\n%s\n", string(yamlData))) + + return diags +} + +func cloakSetValuesModel(config map[string]interface{}, state *HelmTemplateModel) { + if !state.SetSensitive.IsNull() { + var setSensitiveList []SetSensitiveValue + diags := state.SetSensitive.ElementsAs(context.Background(), &setSensitiveList, false) + if diags.HasError() { + tflog.Warn(context.Background(), "Error parsing SetSensitive elements", map[string]interface{}{ + "diagnostics": diags, + }) + return + } + + for _, set := range setSensitiveList { + cloakSetValueModel(config, set.Name.ValueString()) + } + } +} + +const sensitiveContentModelValue = "(sensitive value)" + +func cloakSetValueModel(values map[string]interface{}, valuePath string) { + pathKeys := strings.Split(valuePath, ".") + sensitiveKey := pathKeys[len(pathKeys)-1] + parentPathKeys := pathKeys[:len(pathKeys)-1] + + currentMap := values + for _, key := range parentPathKeys { + v, ok := currentMap[key].(map[string]interface{}) + if !ok { + return + } + currentMap = v + } + currentMap[sensitiveKey] = sensitiveContentModelValue +} diff --git a/shuttles/terraform/terraform-provider-helm/helm/data_helm_template_test.go b/shuttles/terraform/terraform-provider-helm/helm/data_helm_template_test.go new file mode 100644 index 0000000..c17d9f6 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/data_helm_template_test.go @@ -0,0 +1,379 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + +package helm + +import ( + "fmt" + "regexp" + "testing" + + "github.com/hashicorp/terraform-plugin-testing/helper/resource" +) + +func TestAccDataTemplate_basic(t *testing.T) { + name := randName("basic") + namespace := randName(testNamespacePrefix) + + datasourceAddress := fmt.Sprintf("data.helm_template.%s", testResourceName) + + resource.Test(t, resource.TestCase{ + ProtoV6ProviderFactories: protoV6ProviderFactories(), + Steps: []resource.TestStep{{ + Config: testAccDataHelmTemplateConfigBasic(testResourceName, namespace, name, "1.2.3"), + Check: resource.ComposeAggregateTestCheckFunc( + resource.TestCheckResourceAttr(datasourceAddress, "manifests.%", "6"), + resource.TestCheckResourceAttrSet(datasourceAddress, "manifests.templates/deployment.yaml"), + resource.TestCheckResourceAttrSet(datasourceAddress, "manifests.templates/service.yaml"), + resource.TestCheckResourceAttrSet(datasourceAddress, "manifests.templates/serviceaccount.yaml"), + resource.TestCheckResourceAttrSet(datasourceAddress, "manifests.templates/configmaps.yaml"), + resource.TestCheckResourceAttrSet(datasourceAddress, "manifests.templates/secrets.yaml"), + resource.TestCheckResourceAttrSet(datasourceAddress, "manifests.templates/tests/test-connection.yaml"), + resource.TestCheckResourceAttrSet(datasourceAddress, "manifest"), + resource.TestCheckResourceAttrSet(datasourceAddress, "notes"), + ), + }}, + }) +} + +func TestAccDataTemplate_crds(t *testing.T) { + name := randName("basic") + namespace := randName(testNamespacePrefix) + + datasourceAddress := fmt.Sprintf("data.helm_template.%s", testResourceName) + + resource.Test(t, resource.TestCase{ + ProtoV6ProviderFactories: protoV6ProviderFactories(), + Steps: []resource.TestStep{{ + Config: testAccDataHelmTemplateCRDs(testResourceName, namespace, name, "1.2.3"), + Check: resource.ComposeAggregateTestCheckFunc( + resource.TestCheckResourceAttr(datasourceAddress, "manifests.%", "8"), + resource.TestCheckResourceAttrSet(datasourceAddress, "manifests.templates/deployment.yaml"), + resource.TestCheckResourceAttrSet(datasourceAddress, "manifests.templates/service.yaml"), + resource.TestCheckResourceAttrSet(datasourceAddress, "manifests.templates/serviceaccount.yaml"), + resource.TestCheckResourceAttrSet(datasourceAddress, "manifests.templates/configmaps.yaml"), + resource.TestCheckResourceAttrSet(datasourceAddress, "manifests.templates/tests/test-connection.yaml"), + resource.TestCheckResourceAttrSet(datasourceAddress, "manifest"), + resource.TestCheckResourceAttrSet(datasourceAddress, "notes"), + resource.TestCheckResourceAttr(datasourceAddress, "crds.0", `--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + # name must match the spec fields below, and be in the form: . + name: apples.stable.example.com +spec: + # group name to use for REST API: /apis// + group: stable.example.com + # list of versions supported by this CustomResourceDefinition + versions: + - name: v1 + # Each version can be enabled/disabled by Served flag. + served: true + # One and only one version must be marked as the storage version. + storage: true + schema: + openAPIV3Schema: + type: object + properties: + spec: + type: object + properties: + cronSpec: + type: string + image: + type: string + replicas: + type: integer + # either Namespaced or Cluster + scope: Namespaced + names: + # plural name to be used in the URL: /apis/// + plural: apples + # singular name to be used as an alias on the CLI and for display + singular: apple + # kind is normally the CamelCased singular type. Your resource manifests use this. + kind: Apple + # shortNames allow shorter string to match your resource on the CLI + shortNames: + - ap +`), + resource.TestCheckResourceAttr(datasourceAddress, "crds.1", `--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + # name must match the spec fields below, and be in the form: . + name: oranges.stable.example.com +spec: + # group name to use for REST API: /apis// + group: stable.example.com + # list of versions supported by this CustomResourceDefinition + versions: + - name: v1 + # Each version can be enabled/disabled by Served flag. + served: true + # One and only one version must be marked as the storage version. + storage: true + schema: + openAPIV3Schema: + type: object + properties: + spec: + type: object + properties: + cronSpec: + type: string + image: + type: string + replicas: + type: integer + # either Namespaced or Cluster + scope: Namespaced + names: + # plural name to be used in the URL: /apis/// + plural: oranges + # singular name to be used as an alias on the CLI and for display + singular: orange + # kind is normally the CamelCased singular type. Your resource manifests use this. + kind: Orange + # shortNames allow shorter string to match your resource on the CLI + shortNames: + - or +`), + ), + }}, + }) +} + +func TestAccDataTemplate_templates(t *testing.T) { + name := randName("basic") + namespace := randName(testNamespacePrefix) + + datasourceAddress := fmt.Sprintf("data.helm_template.%s", testResourceName) + expectedTemplate := fmt.Sprintf(`--- +# Source: test-chart/templates/configmaps.yaml +apiVersion: v1 +kind: ConfigMap +metadata: + name: %[1]s-test-chart-one + labels: + helm.sh/chart: test-chart-1.2.3 + app.kubernetes.io/name: test-chart + app.kubernetes.io/instance: %[1]s + app.kubernetes.io/version: "1.19.5" + app.kubernetes.io/managed-by: Helm +data: + test: one +--- +# Source: test-chart/templates/configmaps.yaml +apiVersion: v1 +kind: ConfigMap +metadata: + name: %[1]s-test-chart-two + labels: + helm.sh/chart: test-chart-1.2.3 + app.kubernetes.io/name: test-chart + app.kubernetes.io/instance: %[1]s + app.kubernetes.io/version: "1.19.5" + app.kubernetes.io/managed-by: Helm +data: + test: two +`, name) + + resource.Test(t, resource.TestCase{ + ProtoV6ProviderFactories: protoV6ProviderFactories(), + Steps: []resource.TestStep{{ + Config: testAccDataHelmTemplateConfigTemplates(testResourceName, namespace, name, "1.2.3"), + Check: resource.ComposeAggregateTestCheckFunc( + resource.TestCheckResourceAttr(datasourceAddress, "manifests.%", "1"), + resource.TestCheckResourceAttrSet(datasourceAddress, "manifest"), + resource.TestCheckResourceAttrSet(datasourceAddress, "notes"), + resource.TestCheckResourceAttr(datasourceAddress, "manifests.templates/configmaps.yaml", expectedTemplate), + ), + }}, + }) +} + +func TestAccDataTemplate_kubeVersion(t *testing.T) { + name := randName("kube-version") + namespace := randName(testNamespacePrefix) + + datasourceAddress := fmt.Sprintf("data.helm_template.%s", testResourceName) + + resource.Test(t, resource.TestCase{ + ProtoV6ProviderFactories: protoV6ProviderFactories(), + Steps: []resource.TestStep{{ + Config: testAccDataHelmTemplateKubeVersionNoVersionSet(testResourceName, namespace, name, "1.2.3"), + ExpectError: regexp.MustCompile("chart requires kubeVersion.*"), + }}, + }) + + resource.Test(t, resource.TestCase{ + ProtoV6ProviderFactories: protoV6ProviderFactories(), + Steps: []resource.TestStep{{ + Config: testAccDataHelmTemplateKubeVersion(testResourceName, namespace, name, "1.2.3", "1.18.0"), + ExpectError: regexp.MustCompile("chart requires kubeVersion.*"), + }}, + }) + + resource.Test(t, resource.TestCase{ + ProtoV6ProviderFactories: protoV6ProviderFactories(), + Steps: []resource.TestStep{{ + Config: testAccDataHelmTemplateKubeVersion(testResourceName, namespace, name, "1.2.3", "abcdef"), + ExpectError: regexp.MustCompile(`couldn't parse string "abcdef" into kube-version`), + }}, + }) + + resource.Test(t, resource.TestCase{ + ProtoV6ProviderFactories: protoV6ProviderFactories(), + Steps: []resource.TestStep{{ + Config: testAccDataHelmTemplateKubeVersion(testResourceName, namespace, name, "1.2.3", "1.22.0"), + Check: resource.ComposeAggregateTestCheckFunc( + resource.TestCheckResourceAttr(datasourceAddress, "manifests.%", "1"), + resource.TestCheckResourceAttrSet(datasourceAddress, "manifests.templates/deployment.yaml"), + resource.TestCheckResourceAttrSet(datasourceAddress, "manifest"), + ), + }}, + }) +} + +func TestAccDataTemplate_configSetNull(t *testing.T) { + name := randName("basic") + namespace := randName(testNamespacePrefix) + + datasourceAddress := fmt.Sprintf("data.helm_template.%s", testResourceName) + + resource.Test(t, resource.TestCase{ + ProtoV6ProviderFactories: protoV6ProviderFactories(), + Steps: []resource.TestStep{{ + Config: testAccDataHelmTemplateConfigNullSet(testResourceName, namespace, name, "1.2.3"), + Check: resource.ComposeAggregateTestCheckFunc( + checkResourceAttrNotSet(datasourceAddress, "set.0.value"), + checkResourceAttrNotSet(datasourceAddress, "set.1.value"), + ), + }}, + }) +} + +func testAccDataHelmTemplateConfigBasic(resource, ns, name, version string) string { + return fmt.Sprintf(` + data "helm_template" "%s" { + show_only = [""] + + name = %q + namespace = %q + description = "Test" + repository = %q + chart = "test-chart" + version = %q + + set = [ + { + name = "foo" + value = "bar" + }, + { + name = "fizz" + value = 1337 + } + ] + } + `, resource, name, ns, testRepositoryURL, version) +} + +func testAccDataHelmTemplateConfigTemplates(resource, ns, name, version string) string { + return fmt.Sprintf(` + data "helm_template" "%s" { + name = %q + namespace = %q + description = "Test" + repository = %q + chart = "test-chart" + version = %q + + set = [ + { + name = "foo" + value = "bar" + }, + { + name = "fizz" + value = 1337 + } + ] + + show_only = [ + "templates/configmaps.yaml", + "" + ] + } + `, resource, name, ns, testRepositoryURL, version) +} + +func testAccDataHelmTemplateConfigNullSet(resource, ns, name, version string) string { + return fmt.Sprintf(` + data "helm_template" "%s" { + name = %q + namespace = %q + description = "Test" + repository = %q + chart = "test-chart" + version = %q + + set = [ + { + name = "foo" + }, + { + name = "fizz" + value = null + } + ] + + show_only = [ + "templates/configmaps.yaml", + "" + ] + } + `, resource, name, ns, testRepositoryURL, version) +} + +func testAccDataHelmTemplateKubeVersion(resource, ns, name, version, kubeVersion string) string { + return fmt.Sprintf(` + data "helm_template" "%s" { + name = %q + namespace = %q + description = "Test" + repository = %q + chart = "kube-version" + version = %q + kube_version = %q + } + `, resource, name, ns, testRepositoryURL, version, kubeVersion) +} + +func testAccDataHelmTemplateKubeVersionNoVersionSet(resource, ns, name, version string) string { + return fmt.Sprintf(` + data "helm_template" "%s" { + name = %q + namespace = %q + description = "Test" + repository = %q + chart = "kube-version" + version = %q + } + `, resource, name, ns, testRepositoryURL, version) +} + +func testAccDataHelmTemplateCRDs(resource, ns, name, version string) string { + return fmt.Sprintf(` + data "helm_template" "%s" { + name = %q + namespace = %q + description = "Test" + repository = %q + chart = "crds-chart" + include_crds = true + version = %q + } + `, resource, name, ns, testRepositoryURL, version) +} diff --git a/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go b/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go new file mode 100644 index 0000000..8e17293 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/kubeconfig.go @@ -0,0 +1,237 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + +package helm + +import ( + "context" + "fmt" + "os" + "path/filepath" + "sync" + + "github.com/hashicorp/terraform-plugin-framework/attr" + "github.com/hashicorp/terraform-plugin-framework/types" + "github.com/hashicorp/terraform-plugin-framework/types/basetypes" + + "github.com/hashicorp/terraform-plugin-log/tflog" + "github.com/mitchellh/go-homedir" + "k8s.io/apimachinery/pkg/api/meta" + "k8s.io/apimachinery/pkg/runtime/schema" + "k8s.io/client-go/discovery" + "k8s.io/client-go/discovery/cached/memory" + "k8s.io/client-go/rest" + "k8s.io/client-go/restmapper" + "k8s.io/client-go/tools/clientcmd" + clientcmdapi "k8s.io/client-go/tools/clientcmd/api" +) + +// Struct holding k8s client config, burst limit for api requests, and mutex for sync +type KubeConfig struct { + ClientConfig clientcmd.ClientConfig + Burst int + sync.Mutex +} + +// Converting KubeConfig to a REST config, which will be used to create k8s clients +func (k *KubeConfig) ToRESTConfig() (*rest.Config, error) { + config, err := k.ToRawKubeConfigLoader().ClientConfig() + return config, err +} + +// Converting KubeConfig to a discovery client, which will be used to find api resources +func (k *KubeConfig) ToDiscoveryClient() (discovery.CachedDiscoveryInterface, error) { + config, err := k.ToRESTConfig() + if err != nil { + return nil, err + } + + config.Burst = k.Burst + return memory.NewMemCacheClient(discovery.NewDiscoveryClientForConfigOrDie(config)), nil +} + +// Converting KubeConfig to a REST mapper, which will be used to map REST resources to their API obj +func (k *KubeConfig) ToRESTMapper() (meta.RESTMapper, error) { + discoveryClient, err := k.ToDiscoveryClient() + if err != nil { + return nil, err + } + + // Using the appropriate types for the arguments + mapper := restmapper.NewDeferredDiscoveryRESTMapper(discoveryClient) + + warningHandler := func(warning string) { + fmt.Printf("Warning: %s\n", warning) + } + + // Pass the warning handler to the NewShortcutExpander function + expander := restmapper.NewShortcutExpander(mapper, discoveryClient, warningHandler) + + return expander, nil +} + +// Function returning raw k8s client config +func (k *KubeConfig) ToRawKubeConfigLoader() clientcmd.ClientConfig { + return k.ClientConfig +} + +// Generates a k8s client config, based on providers settings and namespace, which this config will be used to interact with the k8s cluster +func (m *Meta) NewKubeConfig(ctx context.Context, namespace string) (*KubeConfig, error) { + overrides := &clientcmd.ConfigOverrides{} + loader := &clientcmd.ClientConfigLoadingRules{} + configPaths := []string{} + if m == nil || m.Data == nil || m.Data.Kubernetes.IsNull() || m.Data.Kubernetes.IsUnknown() { + return nil, fmt.Errorf("configuration error: missing required structural data") + } + + tflog.Debug(ctx, "Raw Kubernetes Data before conversion", map[string]interface{}{ + "KubernetesData": m.Data.Kubernetes, + }) + + // Needing to get the Kubernetes configuration as an obj + var kubernetesConfig KubernetesConfigModel + diags := m.Data.Kubernetes.As(ctx, &kubernetesConfig, basetypes.ObjectAsOptions{}) + if diags.HasError() { + for _, d := range diags { + tflog.Error(ctx, "Kubernetes config conversion error", map[string]interface{}{ + "summary": d.Summary(), + "detail": d.Detail(), + }) + } + return nil, fmt.Errorf("configuration error: unable to extract Kubernetes config") + } + // Check ConfigPath + if !kubernetesConfig.ConfigPath.IsNull() { + if v := kubernetesConfig.ConfigPath.ValueString(); v != "" { + configPaths = []string{v} + } + } + if !kubernetesConfig.ConfigPaths.IsNull() { + additionalPaths := expandStringSlice(kubernetesConfig.ConfigPaths.Elements()) + configPaths = append(configPaths, additionalPaths...) + } + if v := os.Getenv("KUBE_CONFIG_PATHS"); v != "" { + configPaths = filepath.SplitList(v) + } + tflog.Debug(ctx, "Initial configPaths", map[string]interface{}{"configPaths": configPaths}) + + if len(configPaths) > 0 { + expandedPaths := []string{} + for _, p := range configPaths { + path, err := homedir.Expand(p) + if err != nil { + tflog.Error(ctx, "Error expanding home directory", map[string]interface{}{ + "path": p, + "error": err, + }) + return nil, err + } + expandedPaths = append(expandedPaths, path) + } + if len(expandedPaths) == 1 { + loader.ExplicitPath = expandedPaths[0] + } else { + loader.Precedence = expandedPaths + } + + // Check ConfigContext + if !kubernetesConfig.ConfigContext.IsNull() { + overrides.CurrentContext = kubernetesConfig.ConfigContext.ValueString() + } + if !kubernetesConfig.ConfigContextAuthInfo.IsNull() { + overrides.Context.AuthInfo = kubernetesConfig.ConfigContextAuthInfo.ValueString() + } + if !kubernetesConfig.ConfigContextCluster.IsNull() { + overrides.Context.Cluster = kubernetesConfig.ConfigContextCluster.ValueString() + } + } + + // Check and assign remaining fields + if !kubernetesConfig.Insecure.IsNull() { + overrides.ClusterInfo.InsecureSkipTLSVerify = kubernetesConfig.Insecure.ValueBool() + } + if !kubernetesConfig.TLSServerName.IsNull() { + overrides.ClusterInfo.TLSServerName = kubernetesConfig.TLSServerName.ValueString() + } + if !kubernetesConfig.ClusterCACertificate.IsNull() { + overrides.ClusterInfo.CertificateAuthorityData = []byte(kubernetesConfig.ClusterCACertificate.ValueString()) + } + if !kubernetesConfig.ClientCertificate.IsNull() { + overrides.AuthInfo.ClientCertificateData = []byte(kubernetesConfig.ClientCertificate.ValueString()) + } + if !kubernetesConfig.Host.IsNull() && kubernetesConfig.Host.ValueString() != "" { + hasCA := len(overrides.ClusterInfo.CertificateAuthorityData) != 0 + hasCert := len(overrides.AuthInfo.ClientCertificateData) != 0 + defaultTLS := hasCA || hasCert || overrides.ClusterInfo.InsecureSkipTLSVerify + host, _, err := rest.DefaultServerURL(kubernetesConfig.Host.ValueString(), "", schema.GroupVersion{}, defaultTLS) + if err != nil { + return nil, err + } + overrides.ClusterInfo.Server = host.String() + } + + if !kubernetesConfig.Username.IsNull() { + overrides.AuthInfo.Username = kubernetesConfig.Username.ValueString() + } + if !kubernetesConfig.Password.IsNull() { + overrides.AuthInfo.Password = kubernetesConfig.Password.ValueString() + } + if !kubernetesConfig.ClientKey.IsNull() { + overrides.AuthInfo.ClientKeyData = []byte(kubernetesConfig.ClientKey.ValueString()) + } + if !kubernetesConfig.Token.IsNull() { + overrides.AuthInfo.Token = kubernetesConfig.Token.ValueString() + } + if !kubernetesConfig.ProxyURL.IsNull() { + overrides.ClusterDefaults.ProxyURL = kubernetesConfig.ProxyURL.ValueString() + } + + if kubernetesConfig.Exec != nil { + execConfig := kubernetesConfig.Exec + if !execConfig.APIVersion.IsNull() && !execConfig.Command.IsNull() { + args := []string{} + if !execConfig.Args.IsNull() && !execConfig.Args.IsUnknown() { + args = expandStringSlice(execConfig.Args.Elements()) + } + + env := []clientcmdapi.ExecEnvVar{} + if !execConfig.Env.IsNull() && !execConfig.Env.IsUnknown() { + for k, v := range execConfig.Env.Elements() { + env = append(env, clientcmdapi.ExecEnvVar{ + Name: k, + Value: v.(types.String).ValueString(), + }) + } + } + + overrides.AuthInfo.Exec = &clientcmdapi.ExecConfig{ + APIVersion: execConfig.APIVersion.ValueString(), + Command: execConfig.Command.ValueString(), + Args: args, + Env: env, + InteractiveMode: clientcmdapi.IfAvailableExecInteractiveMode, + } + } + } + + overrides.Context.Namespace = "default" + if namespace != "" { + overrides.Context.Namespace = namespace + } + + burstLimit := int(m.Data.BurstLimit.ValueInt64()) + client := clientcmd.NewNonInteractiveDeferredLoadingClientConfig(loader, overrides) + if client == nil { + return nil, fmt.Errorf("failed to initialize kubernetes config") + } + tflog.Info(ctx, "Successfully initialized kubernetes config") + return &KubeConfig{ClientConfig: client, Burst: burstLimit}, nil +} + +func expandStringSlice(input []attr.Value) []string { + result := make([]string, len(input)) + for i, v := range input { + result[i] = v.(types.String).ValueString() + } + return result +} diff --git a/shuttles/terraform/terraform-provider-helm/helm/manifest_json.go b/shuttles/terraform/terraform-provider-helm/helm/manifest_json.go new file mode 100644 index 0000000..99c046a --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/manifest_json.go @@ -0,0 +1,95 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + +package helm + +import ( + "encoding/json" + "fmt" + "strings" + + "golang.org/x/crypto/sha3" + + corev1 "k8s.io/api/core/v1" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + "sigs.k8s.io/yaml" + + "helm.sh/helm/v3/pkg/releaseutil" +) + +type resourceMeta struct { + metav1.TypeMeta + Metadata metav1.ObjectMeta +} + +func convertYAMLManifestToJSON(manifest string) (string, error) { + m := map[string]json.RawMessage{} + + resources := releaseutil.SplitManifests(manifest) + for _, resource := range resources { + jsonbytes, err := yaml.YAMLToJSON([]byte(resource)) + if err != nil { + return "", fmt.Errorf("could not convert manifest to JSON: %v", err) + } + + resourceMeta := resourceMeta{} + err = yaml.Unmarshal([]byte(resource), &resourceMeta) + if err != nil { + return "", err + } + + gvk := resourceMeta.GetObjectKind().GroupVersionKind() + key := fmt.Sprintf("%s/%s/%s", strings.ToLower(gvk.GroupKind().String()), + resourceMeta.APIVersion, + resourceMeta.Metadata.Name) + + if namespace := resourceMeta.Metadata.Namespace; namespace != "" { + key = fmt.Sprintf("%s/%s", namespace, key) + } + + if gvk.Kind == "Secret" { + secret := corev1.Secret{} + err = yaml.Unmarshal([]byte(resource), &secret) + if err != nil { + return "", err + } + + for k, v := range secret.Data { + h := hashSensitiveValue(string(v)) + secret.Data[k] = []byte(h) + } + + jsonbytes, err = json.Marshal(secret) + if err != nil { + return "", err + } + } + + m[key] = jsonbytes + } + + b, err := json.Marshal(m) + if err != nil { + return "", err + } + + return string(b), nil +} + +func hashSensitiveValue(v string) string { + hash := make([]byte, 8) + sha3.ShakeSum256(hash, []byte(v)) + return fmt.Sprintf("(sensitive value %x)", hash) +} + +// redactSensitiveValues removes values that appear in `set_sensitive` blocks from the manifest JSON +func redactSensitiveValues(text string, sensitiveValues map[string]string) string { + masked := text + + for originalValue := range sensitiveValues { + hashedValue := hashSensitiveValue(originalValue) + masked = strings.ReplaceAll(masked, originalValue, hashedValue) + } + + return masked +} diff --git a/shuttles/terraform/terraform-provider-helm/helm/manifest_json_test.go b/shuttles/terraform/terraform-provider-helm/helm/manifest_json_test.go new file mode 100644 index 0000000..63e2130 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/manifest_json_test.go @@ -0,0 +1,29 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + +package helm + +import ( + "io/ioutil" + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestConvertYAMLManifestToJSON(t *testing.T) { + yamlManifest := readTestFile(t, "testdata/manifest_json/rendered_manifest.yaml") + expectedJSON := readTestFile(t, "testdata/manifest_json/rendered_manifest.json") + + json, err := convertYAMLManifestToJSON(yamlManifest) + + assert.NoError(t, err) + assert.JSONEq(t, expectedJSON, json) +} + +func readTestFile(t *testing.T, path string) string { + b, err := ioutil.ReadFile(path) + if err != nil { + t.Fatalf(err.Error()) + } + return string(b) +} diff --git a/shuttles/terraform/terraform-provider-helm/helm/provider.go b/shuttles/terraform/terraform-provider-helm/helm/provider.go new file mode 100644 index 0000000..3bc02b0 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/provider.go @@ -0,0 +1,701 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + +package helm + +import ( + "context" + "fmt" + "net/url" + "os" + "path/filepath" + "strconv" + "strings" + "sync" + + "github.com/hashicorp/terraform-plugin-framework-validators/stringvalidator" + "github.com/hashicorp/terraform-plugin-framework/attr" + "github.com/hashicorp/terraform-plugin-framework/datasource" + "github.com/hashicorp/terraform-plugin-framework/diag" + "github.com/hashicorp/terraform-plugin-framework/path" + "github.com/hashicorp/terraform-plugin-framework/provider" + "github.com/hashicorp/terraform-plugin-framework/provider/schema" + "github.com/hashicorp/terraform-plugin-framework/resource" + "github.com/hashicorp/terraform-plugin-framework/schema/validator" + "github.com/hashicorp/terraform-plugin-framework/types" + "github.com/hashicorp/terraform-plugin-log/tflog" + "helm.sh/helm/v3/pkg/action" + "helm.sh/helm/v3/pkg/cli" + "helm.sh/helm/v3/pkg/registry" + "helm.sh/helm/v3/pkg/storage/driver" +) + +var _ provider.Provider = &HelmProvider{} + +func New(version string) func() provider.Provider { + return func() provider.Provider { + return &HelmProvider{ + version: version, + } + } +} + +// Meta contains the client configuration for the provider +type Meta struct { + providerData *HelmProvider + Data *HelmProviderModel + Settings *cli.EnvSettings + RegistryClient *registry.Client + HelmDriver string + // Experimental feature toggles + Experiments map[string]bool + Mutex sync.Mutex +} + +// HelmProviderModel contains the configuration for the provider +type HelmProviderModel struct { + Debug types.Bool `tfsdk:"debug"` + PluginsPath types.String `tfsdk:"plugins_path"` + RegistryConfigPath types.String `tfsdk:"registry_config_path"` + RepositoryConfigPath types.String `tfsdk:"repository_config_path"` + RepositoryCache types.String `tfsdk:"repository_cache"` + HelmDriver types.String `tfsdk:"helm_driver"` + BurstLimit types.Int64 `tfsdk:"burst_limit"` + Kubernetes types.Object `tfsdk:"kubernetes"` + Registries types.List `tfsdk:"registries"` + Experiments *ExperimentsConfigModel `tfsdk:"experiments"` +} + +// ExperimentsConfigModel configures the experiments that are enabled or disabled +type ExperimentsConfigModel struct { + Manifest types.Bool `tfsdk:"manifest"` +} + +// RegistryConfigModel configures an OCI registry +type RegistryConfigModel struct { + URL types.String `tfsdk:"url"` + Username types.String `tfsdk:"username"` + Password types.String `tfsdk:"password"` +} + +// KubernetesConfigModel configures a Kubernetes client +type KubernetesConfigModel struct { + Host types.String `tfsdk:"host"` + Username types.String `tfsdk:"username"` + Password types.String `tfsdk:"password"` + Insecure types.Bool `tfsdk:"insecure"` + TLSServerName types.String `tfsdk:"tls_server_name"` + ClientCertificate types.String `tfsdk:"client_certificate"` + ClientKey types.String `tfsdk:"client_key"` + ClusterCACertificate types.String `tfsdk:"cluster_ca_certificate"` + ConfigPaths types.List `tfsdk:"config_paths"` + ConfigPath types.String `tfsdk:"config_path"` + ConfigContext types.String `tfsdk:"config_context"` + ConfigContextAuthInfo types.String `tfsdk:"config_context_auth_info"` + ConfigContextCluster types.String `tfsdk:"config_context_cluster"` + Token types.String `tfsdk:"token"` + ProxyURL types.String `tfsdk:"proxy_url"` + Exec *ExecConfigModel `tfsdk:"exec"` +} + +// ExecConfigModel configures an external command to configure the Kubernetes client +type ExecConfigModel struct { + APIVersion types.String `tfsdk:"api_version"` + Command types.String `tfsdk:"command"` + Env types.Map `tfsdk:"env"` + Args types.List `tfsdk:"args"` +} + +// HelmProvider is the top level provider struct +type HelmProvider struct { + meta *Meta + version string +} + +func (p *HelmProvider) Metadata(ctx context.Context, req provider.MetadataRequest, resp *provider.MetadataResponse) { + resp.TypeName = "helm" + resp.Version = p.version +} + +// /////////////////////// START OF SCHEMA CREATION /////////////////////////////// +// Defines attributes that are avaiable in the provider +func (p *HelmProvider) Schema(ctx context.Context, req provider.SchemaRequest, resp *provider.SchemaResponse) { + resp.Schema = schema.Schema{ + Description: "Schema to define attributes that are available in the provider", + Attributes: map[string]schema.Attribute{ + "debug": schema.BoolAttribute{ + Description: "Debug indicates whether or not Helm is running in Debug mode.", + Optional: true, + }, + "plugins_path": schema.StringAttribute{ + Description: "The path to the helm plugins directory", + Optional: true, + }, + "registry_config_path": schema.StringAttribute{ + Description: "The path to the registry config file", + Optional: true, + }, + "repository_config_path": schema.StringAttribute{ + Description: "The path to the file containing repository names and URLs", + Optional: true, + }, + "repository_cache": schema.StringAttribute{ + Description: "The path to the file containing cached repository indexes", + Optional: true, + }, + "helm_driver": schema.StringAttribute{ + Description: "The backend storage driver. Values are: configmap, secret, memory, sql", + Optional: true, + Validators: []validator.String{ + stringvalidator.OneOf(strings.ToLower(driver.MemoryDriverName), + strings.ToLower(driver.ConfigMapsDriverName), + strings.ToLower(driver.SecretsDriverName), + strings.ToLower(driver.SQLDriverName)), + }, + }, + + "burst_limit": schema.Int64Attribute{ + Optional: true, + Description: "Helm burst limit. Increase this if you have a cluster with many CRDs", + }, + "kubernetes": schema.SingleNestedAttribute{ + Optional: true, + Description: "Kubernetes Configuration", + Attributes: kubernetesResourceSchema(), + }, + "registries": schema.ListNestedAttribute{ + Optional: true, + Description: "RegistryClient configuration.", + NestedObject: schema.NestedAttributeObject{ + Attributes: registriesResourceSchema(), + }, + }, + "experiments": schema.SingleNestedAttribute{ + Optional: true, + Description: "Enable and disable experimental features.", + Attributes: experimentsSchema(), + }, + }, + } +} + +func experimentsSchema() map[string]schema.Attribute { + return map[string]schema.Attribute{ + "manifest": schema.BoolAttribute{ + Optional: true, + Description: "Enable full diff by storing the rendered manifest in the state.", + }, + } +} + +func registriesResourceSchema() map[string]schema.Attribute { + return map[string]schema.Attribute{ + "url": schema.StringAttribute{ + Required: true, + Description: "OCI URL in form of oci://host:port or oci://host", + }, + "username": schema.StringAttribute{ + Required: true, + Description: "The username to use for the OCI HTTP basic authentication when accessing the Kubernetes master endpoint.", + }, + "password": schema.StringAttribute{ + Required: true, + Description: "The password to use for the OCI HTTP basic authentication when accessing the Kubernetes master endpoint.", + }, + } +} + +func kubernetesResourceSchema() map[string]schema.Attribute { + return map[string]schema.Attribute{ + "host": schema.StringAttribute{ + Optional: true, + Description: "The hostname (in form of URI) of kubernetes master", + }, + "username": schema.StringAttribute{ + Optional: true, + Description: "The username to use for HTTP basic authentication when accessing the Kubernetes master endpoint", + }, + "password": schema.StringAttribute{ + Optional: true, + Description: "The password to use for HTTP basic authentication when accessing the Kubernetes master endpoint.", + }, + "insecure": schema.BoolAttribute{ + Optional: true, + Description: "Whether server should be accessed without verifying the TLS certificate.", + }, + "tls_server_name": schema.StringAttribute{ + Optional: true, + Description: "Server name passed to the server for SNI and is used in the client to check server certificates against.", + }, + "client_certificate": schema.StringAttribute{ + Optional: true, + Description: "PEM-encoded client certificate for TLS authentication.", + }, + "client_key": schema.StringAttribute{ + Optional: true, + Description: "PEM-encoded client certificate key for TLS authentication.", + }, + "cluster_ca_certificate": schema.StringAttribute{ + Optional: true, + Description: "PEM-encoded root certificates bundle for TLS authentication.", + }, + "config_paths": schema.ListAttribute{ + Optional: true, + ElementType: types.StringType, + Description: "A list of paths to kube config files. Can be set with KUBE_CONFIG_PATHS environment variable.", + }, + "config_path": schema.StringAttribute{ + Optional: true, + Description: "Path to the kube config file. Can be set with KUBE_CONFIG_PATH.", + Validators: []validator.String{ + stringvalidator.ConflictsWith( + path.Root("kubernetes").AtName("config_paths").Expression(), + ), + }, + }, + + "config_context": schema.StringAttribute{ + Optional: true, + Description: "Context to choose from the config file. Can be sourced from KUBE_CTX.", + }, + "config_context_auth_info": schema.StringAttribute{ + Optional: true, + Description: "Authentication info context of the kube config (name of the kubeconfig user, --user flag in kubectl). Can be sourced from KUBE_CTX_AUTH_INFO.", + }, + "config_context_cluster": schema.StringAttribute{ + Optional: true, + Description: "Cluster context of the kube config (name of the kubeconfig cluster, --cluster flag in kubectl). Can be sourced from KUBE_CTX_CLUSTER.", + }, + "token": schema.StringAttribute{ + Optional: true, + Description: "Token to authenticate a service account.", + }, + "proxy_url": schema.StringAttribute{ + Optional: true, + Description: "URL to the proxy to be used for all API requests.", + }, + "exec": schema.SingleNestedAttribute{ + Optional: true, + Description: "Exec configuration for Kubernetes authentication", + Attributes: execSchema(), + }, + } +} + +func execSchema() map[string]schema.Attribute { + return map[string]schema.Attribute{ + "api_version": schema.StringAttribute{ + Required: true, + Description: "API version for the exec plugin.", + }, + "command": schema.StringAttribute{ + Required: true, + Description: "Command to run for Kubernetes exec plugin", + }, + "env": schema.MapAttribute{ + Optional: true, + ElementType: types.StringType, + Description: "Environment variables for the exec plugin", + }, + "args": schema.ListAttribute{ + Optional: true, + ElementType: types.StringType, + Description: "Arguments for the exec plugin", + }, + } +} + +func execSchemaAttrTypes() map[string]attr.Type { + return map[string]attr.Type{ + "api_version": types.StringType, + "command": types.StringType, + "args": types.ListType{ElemType: types.StringType}, + "env": types.MapType{ElemType: types.StringType}, + } +} + +///////////////////// END OF SCHEMA CREATION /////////////////////////////// + +// Setting up the provider, anything we need to get the provider running, probbaly authentication. like the api +func (p *HelmProvider) Configure(ctx context.Context, req provider.ConfigureRequest, resp *provider.ConfigureResponse) { + if req.ClientCapabilities.DeferralAllowed && !req.Config.Raw.IsFullyKnown() { + resp.Deferred = &provider.Deferred{ + Reason: provider.DeferredReasonProviderConfigUnknown, + } + } + + pluginsPath := os.Getenv("HELM_PLUGINS_PATH") + registryConfigPath := os.Getenv("HELM_REGISTRY_CONFIG_PATH") + repositoryConfigPath := os.Getenv("HELM_REPOSITORY_CONFIG_PATH") + repositoryCache := os.Getenv("HELM_REPOSITORY_CACHE") + helmDriver := os.Getenv("HELM_DRIVER") + burstLimitStr := os.Getenv("HELM_BURST_LIMIT") + kubeHost := os.Getenv("KUBE_HOST") + kubeUser := os.Getenv("KUBE_USER") + kubePassword := os.Getenv("KUBE_PASSWORD") + kubeInsecureStr := os.Getenv("KUBE_INSECURE") + kubeTLSServerName := os.Getenv("KUBE_TLS_SERVER_NAME") + kubeClientCert := os.Getenv("KUBE_CLIENT_CERT_DATA") + kubeClientKey := os.Getenv("KUBE_CLIENT_KEY_DATA") + kubeCaCert := os.Getenv("KUBE_CLUSTER_CA_CERT_DATA") + kubeConfigPaths := os.Getenv("KUBE_CONFIG_PATHS") + kubeConfigPath := os.Getenv("KUBE_CONFIG_PATH") + kubeConfigContext := os.Getenv("KUBE_CTX") + kubeConfigContextAuthInfo := os.Getenv("KUBE_CTX_AUTH_INFO") + kubeConfigContextCluster := os.Getenv("KUBE_CTX_CLUSTER") + kubeToken := os.Getenv("KUBE_TOKEN") + kubeProxy := os.Getenv("KUBE_PROXY") + + // Initialize the HelmProviderModel with values from the config + var config HelmProviderModel + diags := req.Config.Get(ctx, &config) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + + if !config.PluginsPath.IsNull() { + pluginsPath = config.PluginsPath.ValueString() + } + if !config.RegistryConfigPath.IsNull() { + registryConfigPath = config.RegistryConfigPath.ValueString() + } + if !config.RepositoryConfigPath.IsNull() { + repositoryConfigPath = config.RepositoryConfigPath.ValueString() + } + if !config.RepositoryCache.IsNull() { + repositoryCache = config.RepositoryCache.ValueString() + } + if !config.HelmDriver.IsNull() { + helmDriver = config.HelmDriver.ValueString() + } + var burstLimit int64 + if burstLimitStr != "" { + var err error + burstLimit, err = strconv.ParseInt(burstLimitStr, 10, 64) + if err != nil { + resp.Diagnostics.AddError( + "Invalid burst limit", + fmt.Sprintf("Invalid burst limit value: %s", burstLimitStr), + ) + return + } + } + if !config.BurstLimit.IsNull() { + burstLimit = config.BurstLimit.ValueInt64() + } + var kubeInsecure bool + if kubeInsecureStr != "" { + var err error + kubeInsecure, err = strconv.ParseBool(kubeInsecureStr) + if err != nil { + resp.Diagnostics.AddError( + "Invalid insecure value", + fmt.Sprintf("Invalid insecure value: %s", kubeInsecureStr), + ) + return + } + } + + var kubernetesConfig KubernetesConfigModel + if !config.Kubernetes.IsNull() && !config.Kubernetes.IsUnknown() { + diags := req.Config.GetAttribute(ctx, path.Root("kubernetes"), &kubernetesConfig) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + } + + if !kubernetesConfig.Insecure.IsNull() { + kubeInsecure = kubernetesConfig.Insecure.ValueBool() + } + var kubeConfigPathsList []attr.Value + if !kubernetesConfig.Host.IsNull() { + kubeHost = kubernetesConfig.Host.ValueString() + } + if !kubernetesConfig.Username.IsNull() { + kubeUser = kubernetesConfig.Username.ValueString() + } + if !kubernetesConfig.Password.IsNull() { + kubePassword = kubernetesConfig.Password.ValueString() + } + if !kubernetesConfig.TLSServerName.IsNull() { + kubeTLSServerName = kubernetesConfig.TLSServerName.ValueString() + } + if !kubernetesConfig.ClientCertificate.IsNull() { + kubeClientCert = kubernetesConfig.ClientCertificate.ValueString() + } + if !kubernetesConfig.ClientKey.IsNull() { + kubeClientKey = kubernetesConfig.ClientKey.ValueString() + } + if !kubernetesConfig.ClusterCACertificate.IsNull() { + kubeCaCert = kubernetesConfig.ClusterCACertificate.ValueString() + } + if kubeConfigPaths != "" { + for _, path := range filepath.SplitList(kubeConfigPaths) { + kubeConfigPathsList = append(kubeConfigPathsList, types.StringValue(path)) + } + } + if !kubernetesConfig.ConfigPaths.IsNull() { + var paths []string + diags = kubernetesConfig.ConfigPaths.ElementsAs(ctx, &paths, false) + resp.Diagnostics.Append(diags...) + for _, path := range paths { + kubeConfigPathsList = append(kubeConfigPathsList, types.StringValue(path)) + } + } + if !kubernetesConfig.ConfigPath.IsNull() { + kubeConfigPath = kubernetesConfig.ConfigPath.ValueString() + } + if !kubernetesConfig.ConfigContext.IsNull() { + kubeConfigContext = kubernetesConfig.ConfigContext.ValueString() + } + if !kubernetesConfig.ConfigContextAuthInfo.IsNull() { + kubeConfigContextAuthInfo = kubernetesConfig.ConfigContextAuthInfo.ValueString() + } + if !kubernetesConfig.ConfigContextCluster.IsNull() { + kubeConfigContextCluster = kubernetesConfig.ConfigContextCluster.ValueString() + } + if !kubernetesConfig.Token.IsNull() { + kubeToken = kubernetesConfig.Token.ValueString() + } + if !kubernetesConfig.ProxyURL.IsNull() { + kubeProxy = kubernetesConfig.ProxyURL.ValueString() + } + tflog.Debug(ctx, "Config values after overrides", map[string]interface{}{ + "config": config, + }) + debug := os.Getenv("HELM_DEBUG") == "true" || config.Debug.ValueBool() + settings := cli.New() + settings.Debug = debug + if pluginsPath != "" { + settings.PluginsDirectory = pluginsPath + } + if registryConfigPath != "" { + settings.RegistryConfig = registryConfigPath + } + if repositoryConfigPath != "" { + settings.RepositoryConfig = repositoryConfigPath + } + if repositoryCache != "" { + settings.RepositoryCache = repositoryCache + } + tflog.Debug(ctx, "Helm settings initialized", map[string]interface{}{ + "settings": settings, + }) + kubeConfigPathsListValue, diags := types.ListValue(types.StringType, kubeConfigPathsList) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + + manifestExperiment := false + if config.Experiments != nil { + manifestExperiment = config.Experiments.Manifest.ValueBool() + } + + var execAttrValue attr.Value = types.ObjectNull(execSchemaAttrTypes()) + + if kubernetesConfig.Exec != nil { + // Check if `api_version` and `command` are set (since they're required fields) + if !kubernetesConfig.Exec.APIVersion.IsNull() && !kubernetesConfig.Exec.Command.IsNull() { + execAttrValue = types.ObjectValueMust(execSchemaAttrTypes(), map[string]attr.Value{ + "api_version": types.StringValue(kubernetesConfig.Exec.APIVersion.ValueString()), + "command": types.StringValue(kubernetesConfig.Exec.Command.ValueString()), + "args": types.ListValueMust(types.StringType, kubernetesConfig.Exec.Args.Elements()), + "env": types.MapValueMust(types.StringType, kubernetesConfig.Exec.Env.Elements()), + }) + } + } + + kubernetesConfigObjectValue, diags := types.ObjectValue(map[string]attr.Type{ + "host": types.StringType, + "username": types.StringType, + "password": types.StringType, + "insecure": types.BoolType, + "tls_server_name": types.StringType, + "client_certificate": types.StringType, + "client_key": types.StringType, + "cluster_ca_certificate": types.StringType, + "config_paths": types.ListType{ElemType: types.StringType}, + "config_path": types.StringType, + "config_context": types.StringType, + "config_context_auth_info": types.StringType, + "config_context_cluster": types.StringType, + "token": types.StringType, + "proxy_url": types.StringType, + "exec": types.ObjectType{AttrTypes: execSchemaAttrTypes()}, + }, map[string]attr.Value{ + "host": types.StringValue(kubeHost), + "username": types.StringValue(kubeUser), + "password": types.StringValue(kubePassword), + "insecure": types.BoolValue(kubeInsecure), + "tls_server_name": types.StringValue(kubeTLSServerName), + "client_certificate": types.StringValue(kubeClientCert), + "client_key": types.StringValue(kubeClientKey), + "cluster_ca_certificate": types.StringValue(kubeCaCert), + "config_paths": kubeConfigPathsListValue, + "config_path": types.StringValue(kubeConfigPath), + "config_context": types.StringValue(kubeConfigContext), + "config_context_auth_info": types.StringValue(kubeConfigContextAuthInfo), + "config_context_cluster": types.StringValue(kubeConfigContextCluster), + "token": types.StringValue(kubeToken), + "proxy_url": types.StringValue(kubeProxy), + "exec": execAttrValue, + }) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + + meta := &Meta{ + Data: &HelmProviderModel{ + Debug: types.BoolValue(debug), + PluginsPath: types.StringValue(pluginsPath), + RegistryConfigPath: types.StringValue(registryConfigPath), + RepositoryConfigPath: types.StringValue(repositoryConfigPath), + RepositoryCache: types.StringValue(repositoryCache), + HelmDriver: types.StringValue(helmDriver), + BurstLimit: types.Int64Value(burstLimit), + Kubernetes: kubernetesConfigObjectValue, + Experiments: &ExperimentsConfigModel{ + Manifest: types.BoolValue(manifestExperiment), + }, + }, + Settings: settings, + HelmDriver: helmDriver, + Experiments: map[string]bool{ + "manifest": manifestExperiment, + }, + } + registryClient, err := registry.NewClient() + if err != nil { + resp.Diagnostics.AddError( + "Registry client initialization failed", + fmt.Sprintf("Unable to create Helm registry client: %s", err), + ) + return + } + + meta.RegistryClient = registryClient + if !config.Registries.IsUnknown() { + var registryConfigs []RegistryConfigModel + diags := config.Registries.ElementsAs(ctx, ®istryConfigs, false) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + for _, r := range registryConfigs { + if r.URL.IsNull() || r.Username.IsNull() || r.Password.IsNull() { + resp.Diagnostics.AddError( + "OCI Registry login failed", + "Registry URL, Username, or Password is null", + ) + return + } + + err := OCIRegistryPerformLogin(ctx, meta, meta.RegistryClient, r.URL.ValueString(), r.Username.ValueString(), r.Password.ValueString()) + if err != nil { + resp.Diagnostics.AddError( + "OCI Registry login failed", + err.Error(), + ) + return + } + } + } else { + tflog.Debug(ctx, "No registry configurations found") + } + resp.DataSourceData = meta + resp.ResourceData = meta + + tflog.Debug(ctx, "Configure method completed successfully") +} + +func (p *HelmProvider) DataSources(ctx context.Context) []func() datasource.DataSource { + return []func() datasource.DataSource{ + NewHelmTemplate, + } +} + +func (p *HelmProvider) Resources(ctx context.Context) []func() resource.Resource { + return []func() resource.Resource{ + NewHelmRelease, + } +} + +func OCIRegistryLogin(ctx context.Context, meta *Meta, actionConfig *action.Configuration, registryClient *registry.Client, repository, chartName, username, password string) diag.Diagnostics { + var diags diag.Diagnostics + + actionConfig.RegistryClient = registryClient + + var ociURL string + if registry.IsOCI(repository) { + ociURL = repository + } else if registry.IsOCI(chartName) { + ociURL = chartName + } + + if ociURL == "" { + return diags + } + + if username != "" && password != "" { + err := OCIRegistryPerformLogin(ctx, meta, registryClient, ociURL, username, password) + if err != nil { + diags.AddError( + "OCI Registry Login Failed", + fmt.Sprintf("Failed to log in to OCI registry %q: %s", ociURL, err.Error()), + ) + } + } + + return diags +} + +// registryClient = client used to comm with the registry, oci urls, un, and pw used for authentication +func OCIRegistryPerformLogin(ctx context.Context, meta *Meta, registryClient *registry.Client, ociURL, username, password string) error { + loggedInOCIRegistries := make(map[string]string) + // getting the oci url, and extracting the host. + u, err := url.Parse(ociURL) + if err != nil { + return fmt.Errorf("could not parse OCI registry URL: %v", err) + } + meta.Mutex.Lock() + defer meta.Mutex.Unlock() + if _, ok := loggedInOCIRegistries[u.Host]; ok { + tflog.Info(ctx, fmt.Sprintf("Already logged into OCI registry %q", u.Host)) + return nil + } + // Now we perform the login, with the provided username and password by calling the login method + err = registryClient.Login(u.Host, registry.LoginOptBasicAuth(username, password)) + if err != nil { + return fmt.Errorf("could not login to OCI registry %q: %v", u.Host, err) + } + loggedInOCIRegistries[u.Host] = "" + tflog.Info(ctx, fmt.Sprintf("Logged into OCI registry %q", u.Host)) + return nil +} + +// GetHelmConfiguration retrieves the Helm configuration for a given namespace +func (m *Meta) GetHelmConfiguration(ctx context.Context, namespace string) (*action.Configuration, error) { + if m == nil { + tflog.Error(ctx, "Meta is nil") + return nil, fmt.Errorf("Meta is nil") + } + + tflog.Info(context.Background(), "[INFO] GetHelmConfiguration start") + actionConfig := new(action.Configuration) + kc, err := m.NewKubeConfig(ctx, namespace) + if err != nil { + return nil, err + } + if err := actionConfig.Init(kc, namespace, m.HelmDriver, func(format string, v ...interface{}) { + tflog.Info(context.Background(), fmt.Sprintf(format, v...)) + }); err != nil { + return nil, err + } + tflog.Info(context.Background(), "[INFO] GetHelmConfiguration success") + // returning the initializing action.Configuration object + return actionConfig, nil +} diff --git a/shuttles/terraform/terraform-provider-helm/helm/provider_test.go b/shuttles/terraform/terraform-provider-helm/helm/provider_test.go new file mode 100644 index 0000000..d9157f4 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/provider_test.go @@ -0,0 +1,350 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + +package helm + +import ( + "context" + "fmt" + "io/ioutil" + "log" + "net" + "net/http" + "os" + "os/exec" + "path/filepath" + "sync" + "testing" + + "github.com/hashicorp/terraform-plugin-framework/provider" + "github.com/hashicorp/terraform-plugin-framework/providerserver" + "github.com/hashicorp/terraform-plugin-go/tfprotov6" + "github.com/hashicorp/terraform-plugin-testing/helper/acctest" + v1 "k8s.io/api/core/v1" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + "k8s.io/client-go/kubernetes" + _ "k8s.io/client-go/plugin/pkg/client/auth" + "k8s.io/client-go/tools/clientcmd" +) + +const ( + testNamespacePrefix = "terraform-acc-test" + testResourceName = "test" + testChartsPath = "./testdata/charts" + testRepositoryDir = "./testdata/repository" +) + +var ( + accTest bool + testRepositoryURL string + client kubernetes.Interface = nil + testMeta *Meta +) + +var providerFactory map[string]func() (tfprotov6.ProviderServer, error) + +func protoV6ProviderFactories() map[string]func() (tfprotov6.ProviderServer, error) { + if len(providerFactory) != 0 { + return providerFactory + } + + providerFactory = map[string]func() (tfprotov6.ProviderServer, error){ + "helm": providerserver.NewProtocol6WithError(New("test")()), + } + + return providerFactory +} + +func TestMain(m *testing.M) { + home, err := ioutil.TempDir(os.TempDir(), "helm") + if err != nil { + panic(err) + } + + defer os.RemoveAll(home) + + err = os.Setenv("HELM_REPOSITORY_CONFIG", filepath.Join(home, "config/repositories.yaml")) + if err != nil { + panic(err) + } + + err = os.Setenv("HELM_REPOSITORY_CACHE", filepath.Join(home, "cache/helm/repository")) + if err != nil { + panic(err) + } + + err = os.Setenv("HELM_REGISTRY_CONFIG", filepath.Join(home, "config/registry.json")) + if err != nil { + panic(err) + } + + err = os.Setenv("HELM_PLUGINS", filepath.Join(home, "plugins")) + if err != nil { + panic(err) + } + + err = os.Setenv("XDG_CACHE_HOME", filepath.Join(home, "cache")) + if err != nil { + panic(err) + } + + accTest = os.Getenv("TF_ACC") == "1" + + var stopRepositoryServer func() + if accTest { + _, err := exec.LookPath("helm") + if err != nil { + panic(`command "helm" needs to be available to run the test suite`) + } + + // create the Kubernetes client + c, err := createKubernetesClient() + if err != nil { + panic(err) + } + client = c + + // Build the test repository and start the server + buildChartRepository() + testRepositoryURL, stopRepositoryServer = startRepositoryServer() + } + + ec := m.Run() + + if accTest { + stopRepositoryServer() + cleanupChartRepository() + } + + os.Exit(ec) +} + +// todo +func TestProvider(t *testing.T) { + ctx := context.Background() + provider := New("test")() + + // Create the provider server + providerServer, err := createProviderServer(provider) + if err != nil { + t.Fatalf("Failed to create provider server: %s", err) + } + // Perform config validation + + validateResponse, err := providerServer.ValidateProviderConfig(ctx, &tfprotov6.ValidateProviderConfigRequest{}) + if err != nil { + t.Fatalf("Provider config validation failed, error: %v", err) + } + + if hasError(validateResponse.Diagnostics) { + t.Fatalf("Provider config validation failed, diagnostics: %v", validateResponse.Diagnostics) + } +} + +func createProviderServer(provider provider.Provider) (tfprotov6.ProviderServer, error) { + providerServerFunc := providerserver.NewProtocol6WithError(provider) + server, err := providerServerFunc() + if err != nil { + } else { + } + return server, err +} + +func buildChartRepository() { + if _, err := os.Stat(testRepositoryDir); os.IsNotExist(err) { + os.Mkdir(testRepositoryDir, os.ModePerm) + } + + charts, err := ioutil.ReadDir(testChartsPath) + if err != nil { + panic(err) + } + + // package all the charts + for _, c := range charts { + cmd := exec.Command("helm", "package", "-u", + filepath.Join(testChartsPath, c.Name()), + "-d", testRepositoryDir) + out, err := cmd.CombinedOutput() + if err != nil { + log.Println(string(out)) + panic(err) + } + + log.Printf("Created repository package for %q\n", c.Name()) + } + + // build the repository index + cmd := exec.Command("helm", "repo", "index", testRepositoryDir) + out, err := cmd.CombinedOutput() + if err != nil { + log.Println(string(out)) + panic(err) + } + + log.Println("Built chart repository index") +} + +func cleanupChartRepository() { + if _, err := os.Stat(testRepositoryDir); err == nil { + err := os.RemoveAll(testRepositoryDir) + if err != nil { + fmt.Println(err) + } + } +} + +func startRepositoryServer() (string, func()) { + wg := sync.WaitGroup{} + wg.Add(1) + + var shutdownFunc func() + go func() { + fileserver := http.Server{ + Handler: http.FileServer(http.Dir(testRepositoryDir)), + } + fileserver.SetKeepAlivesEnabled(false) + shutdownFunc = func() { fileserver.Shutdown(context.Background()) } + listener, err := net.Listen("tcp", ":0") + if err != nil { + panic(err) + } + port := listener.Addr().(*net.TCPAddr).Port + testRepositoryURL = fmt.Sprintf("http://localhost:%d", port) + wg.Done() + err = fileserver.Serve(listener) + if err != nil && err != http.ErrServerClosed { + panic(err) + } + }() + wg.Wait() + + return testRepositoryURL, shutdownFunc +} + +func createAndConfigureProviderServer(provider provider.Provider, ctx context.Context) (tfprotov6.ProviderServer, error) { + log.Println("Starting createAndConfigureProviderServer...") + + providerServerFunc := providerserver.NewProtocol6WithError(provider) + providerServer, err := providerServerFunc() + if err != nil { + return nil, fmt.Errorf("Failed to create protocol6 provider: %w", err) + } + log.Println("Provider server function created successfully.") + + configResponse, err := providerServer.ConfigureProvider(ctx, nil) + if err != nil { + return nil, fmt.Errorf("Error configuring provider: %w", err) + } + log.Println("Provider configured successfully.") + + if hasError(configResponse.Diagnostics) { + return nil, fmt.Errorf("Provider configuration failed, diagnostics: %#v", configResponse.Diagnostics[0]) + } + + if helmProvider, ok := provider.(*HelmProvider); ok { + testMeta = helmProvider.meta + if testMeta == nil { + log.Println("testMeta is nil after type assertion.") + } else { + log.Printf("testMeta initialized: %+v", testMeta) + } + } else { + return nil, fmt.Errorf("Failed to type assert provider to HelmProvider") + } + + return providerServer, nil +} + +func testAccPreCheck(t *testing.T) { + if testing.Short() { + t.Skip("skipping acceptance tests in short mode") + } + http.DefaultClient.CloseIdleConnections() + + ctx := context.TODO() + + provider := New("test")() + + // Create and configure the ProviderServer + _, err := createAndConfigureProviderServer(provider, ctx) + if err != nil { + t.Fatalf("Pre-check failed: %v", err) + } +} + +func createKubernetesClient() (kubernetes.Interface, error) { + rules := clientcmd.NewDefaultClientConfigLoadingRules() + + kubeconfig := os.Getenv("KUBE_CONFIG_PATH") + if kubeconfig == "" { + panic("Need to set KUBE_CONFIG_PATH") + } + rules.ExplicitPath = kubeconfig + + config, err := clientcmd.NewNonInteractiveDeferredLoadingClientConfig(rules, &clientcmd.ConfigOverrides{}).ClientConfig() + if err != nil { + return nil, err + } + + c, err := kubernetes.NewForConfig(config) + if err != nil { + return nil, err + } + return c, nil +} + +func createRandomNamespace(t *testing.T) string { + if !accTest { + t.Skip("TF_ACC=1 not set") + return "" + } + + namespace := fmt.Sprintf("%s-%s", testNamespacePrefix, acctest.RandString(10)) + ns := &v1.Namespace{ + ObjectMeta: metav1.ObjectMeta{ + Name: namespace, + }, + } + _, err := client.CoreV1().Namespaces().Create(context.TODO(), ns, metav1.CreateOptions{}) + if err != nil { + t.Fatalf("Could not create test namespace %q: %s", namespace, err) + } + return namespace +} + +func deleteNamespace(t *testing.T, namespace string) { + if !accTest { + t.Skip("TF_ACC=1 not set") + return + } + + gracePeriodSeconds := int64(0) + deleteOptions := metav1.DeleteOptions{ + GracePeriodSeconds: &gracePeriodSeconds, + } + err := client.CoreV1().Namespaces().Delete(context.TODO(), namespace, deleteOptions) + if err != nil { + t.Fatalf("An error occurred while deleting namespace %q: %q", namespace, err) + } +} + +func randName(prefix string) string { + return fmt.Sprintf("%s-%s", prefix, acctest.RandString(10)) +} + +func hasError(diagnostics []*tfprotov6.Diagnostic) bool { + for _, diagnostic := range diagnostics { + if diagnostic.Severity == tfprotov6.DiagnosticSeverityError { + return true + } + } + return false +} + +func DynamicValueEmpty() *tfprotov6.DynamicValue { + return &tfprotov6.DynamicValue{ + MsgPack: nil, + JSON: nil, + } +} diff --git a/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go b/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go new file mode 100644 index 0000000..de03048 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release.go @@ -0,0 +1,2271 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + +package helm + +import ( + "context" + "encoding/json" + "fmt" + "net/url" + "os" + pathpkg "path" + "strings" + "time" + + "github.com/hashicorp/terraform-plugin-framework-validators/int64validator" + "github.com/hashicorp/terraform-plugin-framework-validators/stringvalidator" + "github.com/hashicorp/terraform-plugin-framework/attr" + "github.com/hashicorp/terraform-plugin-framework/diag" + "github.com/hashicorp/terraform-plugin-framework/path" + "github.com/hashicorp/terraform-plugin-framework/resource" + "github.com/hashicorp/terraform-plugin-framework/resource/identityschema" + "github.com/hashicorp/terraform-plugin-framework/resource/schema" + "github.com/hashicorp/terraform-plugin-framework/resource/schema/booldefault" + "github.com/hashicorp/terraform-plugin-framework/resource/schema/defaults" + "github.com/hashicorp/terraform-plugin-framework/resource/schema/int64default" + "github.com/hashicorp/terraform-plugin-framework/resource/schema/planmodifier" + "github.com/hashicorp/terraform-plugin-framework/resource/schema/stringdefault" + "github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier" + "github.com/hashicorp/terraform-plugin-framework/schema/validator" + "github.com/hashicorp/terraform-plugin-framework/tfsdk" + "github.com/hashicorp/terraform-plugin-framework/types" + "github.com/hashicorp/terraform-plugin-framework/types/basetypes" + "github.com/hashicorp/terraform-plugin-log/tflog" + "github.com/pkg/errors" + "helm.sh/helm/v3/pkg/action" + "helm.sh/helm/v3/pkg/chart" + "helm.sh/helm/v3/pkg/chart/loader" + + "helm.sh/helm/v3/pkg/downloader" + "helm.sh/helm/v3/pkg/getter" + "helm.sh/helm/v3/pkg/postrender" + "helm.sh/helm/v3/pkg/registry" + "helm.sh/helm/v3/pkg/release" + "k8s.io/helm/pkg/strvals" + "sigs.k8s.io/yaml" +) + +var ( + _ resource.Resource = &HelmRelease{} + _ resource.ResourceWithModifyPlan = &HelmRelease{} + _ resource.ResourceWithImportState = &HelmRelease{} + _ resource.ResourceWithIdentity = &HelmRelease{} + _ resource.ResourceWithUpgradeState = &HelmRelease{} +) + +type HelmRelease struct { + meta *Meta +} + +func NewHelmRelease() resource.Resource { + return &HelmRelease{} +} + +type HelmReleaseIdentityModel struct { + Namespace types.String `tfsdk:"namespace"` + ReleaseName types.String `tfsdk:"release_name"` +} + +type HelmReleaseModel struct { + Atomic types.Bool `tfsdk:"atomic"` + Chart types.String `tfsdk:"chart"` + CleanupOnFail types.Bool `tfsdk:"cleanup_on_fail"` + CreateNamespace types.Bool `tfsdk:"create_namespace"` + DependencyUpdate types.Bool `tfsdk:"dependency_update"` + Description types.String `tfsdk:"description"` + Devel types.Bool `tfsdk:"devel"` + DisableCrdHooks types.Bool `tfsdk:"disable_crd_hooks"` + DisableOpenapiValidation types.Bool `tfsdk:"disable_openapi_validation"` + DisableWebhooks types.Bool `tfsdk:"disable_webhooks"` + ForceUpdate types.Bool `tfsdk:"force_update"` + ID types.String `tfsdk:"id"` + Keyring types.String `tfsdk:"keyring"` + Lint types.Bool `tfsdk:"lint"` + Manifest types.String `tfsdk:"manifest"` + MaxHistory types.Int64 `tfsdk:"max_history"` + Metadata types.Object `tfsdk:"metadata"` + Name types.String `tfsdk:"name"` + Namespace types.String `tfsdk:"namespace"` + PassCredentials types.Bool `tfsdk:"pass_credentials"` + PostRender *PostRenderModel `tfsdk:"postrender"` + RecreatePods types.Bool `tfsdk:"recreate_pods"` + Replace types.Bool `tfsdk:"replace"` + RenderSubchartNotes types.Bool `tfsdk:"render_subchart_notes"` + Repository types.String `tfsdk:"repository"` + RepositoryCaFile types.String `tfsdk:"repository_ca_file"` + RepositoryCertFile types.String `tfsdk:"repository_cert_file"` + RepositoryKeyFile types.String `tfsdk:"repository_key_file"` + RepositoryPassword types.String `tfsdk:"repository_password"` + RepositoryUsername types.String `tfsdk:"repository_username"` + ResetValues types.Bool `tfsdk:"reset_values"` + ReuseValues types.Bool `tfsdk:"reuse_values"` + SetWO types.List `tfsdk:"set_wo"` + SetWORevision types.Int64 `tfsdk:"set_wo_revision"` + Set types.List `tfsdk:"set"` + SetList types.List `tfsdk:"set_list"` + SetSensitive types.List `tfsdk:"set_sensitive"` + SkipCrds types.Bool `tfsdk:"skip_crds"` + Status types.String `tfsdk:"status"` + Timeout types.Int64 `tfsdk:"timeout"` + Values types.List `tfsdk:"values"` + Verify types.Bool `tfsdk:"verify"` + Version types.String `tfsdk:"version"` + Wait types.Bool `tfsdk:"wait"` + WaitForJobs types.Bool `tfsdk:"wait_for_jobs"` +} + +var defaultAttributes = map[string]interface{}{ + "atomic": false, + "cleanup_on_fail": false, + "create_namespace": false, + "dependency_update": false, + "disable_crd_hooks": false, + "disable_openapi_validation": false, + "disable_webhooks": false, + "force_update": false, + "lint": false, + "max_history": int64(0), + "pass_credentials": false, + "recreate_pods": false, + "render_subchart_notes": true, + "replace": false, + "reset_values": false, + "reuse_values": false, + "skip_crds": false, + "timeout": int64(300), + "verify": false, + "wait": true, + "wait_for_jobs": false, +} + +type releaseMetaData struct { + AppVersion types.String `tfsdk:"app_version"` + Chart types.String `tfsdk:"chart"` + Name types.String `tfsdk:"name"` + Namespace types.String `tfsdk:"namespace"` + Revision types.Int64 `tfsdk:"revision"` + Version types.String `tfsdk:"version"` + Values types.String `tfsdk:"values"` + FirstDeployed types.Int64 `tfsdk:"first_deployed"` + LastDeployed types.Int64 `tfsdk:"last_deployed"` + Notes types.String `tfsdk:"notes"` +} +type setResourceModel struct { + Name types.String `tfsdk:"name"` + Type types.String `tfsdk:"type"` + Value types.String `tfsdk:"value"` +} + +type set_listResourceModel struct { + Name types.String `tfsdk:"name"` + Value types.List `tfsdk:"value"` +} + +type PostRenderModel struct { + Args types.List `tfsdk:"args"` + BinaryPath types.String `tfsdk:"binary_path"` +} + +type suppressDescriptionPlanModifier struct{} + +func (m suppressDescriptionPlanModifier) Description(ctx context.Context) string { + return "Suppress changes if the new description is an empty string" +} + +func (m suppressDescriptionPlanModifier) MarkdownDescription(ctx context.Context) string { + return m.Description(ctx) +} + +func (m suppressDescriptionPlanModifier) PlanModifyString(ctx context.Context, req planmodifier.StringRequest, resp *planmodifier.StringResponse) { + if req.PlanValue.IsNull() || req.PlanValue.ValueString() == "" { + resp.PlanValue = req.StateValue + } +} + +func suppressDescription() planmodifier.String { + return suppressDescriptionPlanModifier{} +} + +type suppressDevelPlanModifier struct{} + +func (m suppressDevelPlanModifier) Description(ctx context.Context) string { + return "Suppress changes if the version is set" +} + +func (m suppressDevelPlanModifier) MarkdownDescription(ctx context.Context) string { + return m.Description(ctx) +} + +func (m suppressDevelPlanModifier) PlanModifyBool(ctx context.Context, req planmodifier.BoolRequest, resp *planmodifier.BoolResponse) { + var version types.String + req.Plan.GetAttribute(ctx, path.Root("version"), &version) + if !version.IsNull() && version.ValueString() != "" { + resp.PlanValue = req.StateValue + } +} + +func suppressDevel() planmodifier.Bool { + return suppressDevelPlanModifier{} +} + +// Supress Keyring +type suppressKeyringPlanModifier struct{} + +func (m suppressKeyringPlanModifier) Description(ctx context.Context) string { + return "Suppress changes if verify is false" +} + +func (m suppressKeyringPlanModifier) MarkdownDescription(ctx context.Context) string { + return m.Description(ctx) +} + +func (m suppressKeyringPlanModifier) PlanModifyString(ctx context.Context, req planmodifier.StringRequest, resp *planmodifier.StringResponse) { + var verify types.Bool + req.Plan.GetAttribute(ctx, path.Root("verify"), &verify) + if !verify.IsNull() && !verify.ValueBool() { + resp.PlanValue = req.StateValue + } +} + +func suppressKeyring() planmodifier.String { + return suppressKeyringPlanModifier{} +} + +func namespaceDefault() defaults.String { + return namespaceDefaultValue{} +} + +type namespaceDefaultValue struct{} + +func (d namespaceDefaultValue) Description(ctx context.Context) string { + return "If namespace is not provided, defaults to HELM_NAMESPACE environment variable or 'default'." +} + +func (d namespaceDefaultValue) MarkdownDescription(ctx context.Context) string { + return d.Description(ctx) +} + +func (d namespaceDefaultValue) DefaultString(ctx context.Context, req defaults.StringRequest, resp *defaults.StringResponse) { + envNamespace := os.Getenv("HELM_NAMESPACE") + if envNamespace == "" { + envNamespace = "default" + } + resp.PlanValue = types.StringValue(envNamespace) +} + +func (r *HelmRelease) Metadata(ctx context.Context, req resource.MetadataRequest, resp *resource.MetadataResponse) { + resp.TypeName = req.ProviderTypeName + "_release" +} + +func (r *HelmRelease) UpgradeState(ctx context.Context) map[int64]resource.StateUpgrader { + return r.buildUpgradeStateMap(ctx) +} +func (r *HelmRelease) Schema(ctx context.Context, req resource.SchemaRequest, resp *resource.SchemaResponse) { + resp.Schema = schema.Schema{ + Description: "Schema to define attributes that are available in the resource", + Attributes: map[string]schema.Attribute{ + "atomic": schema.BoolAttribute{ + Optional: true, + Computed: true, + Default: booldefault.StaticBool(defaultAttributes["atomic"].(bool)), + Description: "If set, installation process purges chart on fail. The wait flag will be set automatically if atomic is used", + }, + "chart": schema.StringAttribute{ + Required: true, + Description: "Chart name to be installed. A path may be used", + }, + "cleanup_on_fail": schema.BoolAttribute{ + Optional: true, + Computed: true, + Default: booldefault.StaticBool(defaultAttributes["cleanup_on_fail"].(bool)), + Description: "Allow deletion of new resources created in this upgrade when upgrade fails", + }, + "create_namespace": schema.BoolAttribute{ + Optional: true, + Computed: true, + Default: booldefault.StaticBool(defaultAttributes["create_namespace"].(bool)), + Description: "Create the namespace if it does not exist", + }, + "dependency_update": schema.BoolAttribute{ + Optional: true, + Computed: true, + Default: booldefault.StaticBool(defaultAttributes["dependency_update"].(bool)), + Description: "Run helm dependency update before installing the chart", + }, + "description": schema.StringAttribute{ + Optional: true, + Description: "Add a custom description", + PlanModifiers: []planmodifier.String{ + suppressDescription(), + }, + }, + "devel": schema.BoolAttribute{ + Optional: true, + Description: "Use chart development versions, too. Equivalent to version '>0.0.0-0'. If 'version' is set, this is ignored", + PlanModifiers: []planmodifier.Bool{ + suppressDevel(), + }, + }, + "disable_crd_hooks": schema.BoolAttribute{ + Optional: true, + Computed: true, + Default: booldefault.StaticBool(defaultAttributes["disable_crd_hooks"].(bool)), + Description: "Prevent CRD hooks from running, but run other hooks. See helm install --no-crd-hook", + }, + "disable_openapi_validation": schema.BoolAttribute{ + Optional: true, + Computed: true, + Default: booldefault.StaticBool(defaultAttributes["disable_openapi_validation"].(bool)), + Description: "If set, the installation process will not validate rendered templates against the Kubernetes OpenAPI Schema", + }, + "disable_webhooks": schema.BoolAttribute{ + Optional: true, + Computed: true, + Default: booldefault.StaticBool(defaultAttributes["disable_webhooks"].(bool)), + Description: "Prevent hooks from running", + }, + "force_update": schema.BoolAttribute{ + Optional: true, + Computed: true, + Default: booldefault.StaticBool(defaultAttributes["force_update"].(bool)), + Description: "Force resource update through delete/recreate if needed.", + }, + "id": schema.StringAttribute{ + Computed: true, + }, + "keyring": schema.StringAttribute{ + Optional: true, + Description: "Location of public keys used for verification, Used only if 'verify is true'", + PlanModifiers: []planmodifier.String{ + suppressKeyring(), + }, + }, + "lint": schema.BoolAttribute{ + Optional: true, + Computed: true, + Default: booldefault.StaticBool(defaultAttributes["lint"].(bool)), + Description: "Run helm lint when planning", + }, + "manifest": schema.StringAttribute{ + Description: "The rendered manifest as JSON.", + Computed: true, + }, + "max_history": schema.Int64Attribute{ + Optional: true, + Computed: true, + Default: int64default.StaticInt64(defaultAttributes["max_history"].(int64)), + Description: "Limit the maximum number of revisions saved per release. Use 0 for no limit", + }, + "metadata": schema.SingleNestedAttribute{ + Description: "Status of the deployed release.", + Computed: true, + Attributes: map[string]schema.Attribute{ + "app_version": schema.StringAttribute{ + Computed: true, + Description: "The version number of the application being deployed", + }, + "chart": schema.StringAttribute{ + Computed: true, + Description: "The name of the chart", + }, + "first_deployed": schema.Int64Attribute{ + Computed: true, + Description: "FirstDeployed is an int64 which represents timestamp when the release was first deployed.", + }, + "last_deployed": schema.Int64Attribute{ + Computed: true, + Description: "LastDeployed is an int64 which represents timestamp when the release was last deployed.", + }, + "name": schema.StringAttribute{ + Computed: true, + Description: "Name is the name of the release", + }, + "namespace": schema.StringAttribute{ + Computed: true, + Description: "Namespace is the kubernetes namespace of the release", + }, + "notes": schema.StringAttribute{ + Computed: true, + Description: "Notes is the description of the deployed release, rendered from templates.", + }, + "revision": schema.Int64Attribute{ + Computed: true, + Description: "Version is an int32 which represents the version of the release", + }, + "values": schema.StringAttribute{ + Computed: true, + Description: "Set of extra values. added to the chart. The sensitive data is cloaked. JSON encoded.", + }, + "version": schema.StringAttribute{ + Computed: true, + Description: "A SemVer 2 conformant version string of the chart", + }, + }, + }, + "name": schema.StringAttribute{ + Required: true, + PlanModifiers: []planmodifier.String{ + stringplanmodifier.RequiresReplace(), + }, + Validators: []validator.String{ + stringvalidator.LengthBetween(1, 53), + }, + Description: "Release name. The length must not be longer than 53 characters", + }, + "namespace": schema.StringAttribute{ + Optional: true, + Computed: true, + Default: namespaceDefault(), + PlanModifiers: []planmodifier.String{ + stringplanmodifier.RequiresReplace(), + }, + Description: "Namespace to install the release into", + }, + + "pass_credentials": schema.BoolAttribute{ + Optional: true, + Description: "Pass credentials to all domains", + Computed: true, + Default: booldefault.StaticBool(defaultAttributes["pass_credentials"].(bool)), + }, + "recreate_pods": schema.BoolAttribute{ + Optional: true, + Computed: true, + Default: booldefault.StaticBool(defaultAttributes["recreate_pods"].(bool)), + Description: "Perform pods restart during upgrade/rollback", + }, + "render_subchart_notes": schema.BoolAttribute{ + Optional: true, + Computed: true, + Default: booldefault.StaticBool(defaultAttributes["render_subchart_notes"].(bool)), + Description: "If set, render subchart notes along with the parent", + }, + "replace": schema.BoolAttribute{ + Optional: true, + Computed: true, + Default: booldefault.StaticBool(defaultAttributes["replace"].(bool)), + Description: "Re-use the given name, even if that name is already used. This is unsafe in production", + }, + "repository": schema.StringAttribute{ + Optional: true, + Description: "Repository where to locate the requested chart. If it is a URL, the chart is installed without installing the repository", + }, + "repository_ca_file": schema.StringAttribute{ + Optional: true, + Description: "The Repositories CA file", + }, + "repository_cert_file": schema.StringAttribute{ + Optional: true, + Description: "The repositories cert file", + }, + "repository_key_file": schema.StringAttribute{ + Optional: true, + Description: "The repositories cert key file", + }, + "repository_password": schema.StringAttribute{ + Optional: true, + Sensitive: true, + Description: "Password for HTTP basic authentication", + }, + "repository_username": schema.StringAttribute{ + Optional: true, + Description: "Username for HTTP basic authentication", + }, + "reset_values": schema.BoolAttribute{ + Optional: true, + Computed: true, + Description: "When upgrading, reset the values to the ones built into the chart", + Default: booldefault.StaticBool(defaultAttributes["reset_values"].(bool)), + }, + "reuse_values": schema.BoolAttribute{ + Optional: true, + Computed: true, + Description: "When upgrading, reuse the last release's values and merge in any overrides. If 'reset_values' is specified, this is ignored", + Default: booldefault.StaticBool(defaultAttributes["reuse_values"].(bool)), + }, + "skip_crds": schema.BoolAttribute{ + Optional: true, + Computed: true, + Default: booldefault.StaticBool(defaultAttributes["skip_crds"].(bool)), + Description: "If set, no CRDs will be installed. By default, CRDs are installed if not already present", + }, + "status": schema.StringAttribute{ + Computed: true, + Description: "Status of the release", + }, + "timeout": schema.Int64Attribute{ + Optional: true, + Computed: true, + Default: int64default.StaticInt64(defaultAttributes["timeout"].(int64)), + Description: "Time in seconds to wait for any individual kubernetes operation", + }, + "values": schema.ListAttribute{ + Optional: true, + Description: "List of values in raw YAML format to pass to helm", + ElementType: types.StringType, + }, + "verify": schema.BoolAttribute{ + Optional: true, + Computed: true, + Default: booldefault.StaticBool(defaultAttributes["verify"].(bool)), + Description: "Verify the package before installing it.", + }, + "version": schema.StringAttribute{ + Optional: true, + Computed: true, + Description: "Specify the exact chart version to install. If this is not specified, the latest version is installed", + }, + "wait": schema.BoolAttribute{ + Optional: true, + Computed: true, + Default: booldefault.StaticBool(defaultAttributes["wait"].(bool)), + Description: "Will wait until all resources are in a ready state before marking the release as successful.", + }, + "wait_for_jobs": schema.BoolAttribute{ + Optional: true, + Computed: true, + Default: booldefault.StaticBool(defaultAttributes["wait_for_jobs"].(bool)), + Description: "If wait is enabled, will wait until all Jobs have been completed before marking the release as successful.", + }, + "set": schema.ListNestedAttribute{ + Description: "Custom values to be merged with the values", + Optional: true, + NestedObject: schema.NestedAttributeObject{ + Attributes: map[string]schema.Attribute{ + "name": schema.StringAttribute{ + Required: true, + }, + "value": schema.StringAttribute{ + Optional: true, + }, + "type": schema.StringAttribute{ + Optional: true, + Computed: true, + Default: stringdefault.StaticString(""), + Validators: []validator.String{ + stringvalidator.OneOf("auto", "string", "literal"), + }, + }, + }, + }, + }, + "set_wo": schema.ListNestedAttribute{ + Description: "Custom values to be merged with the values", + Optional: true, + WriteOnly: true, + NestedObject: schema.NestedAttributeObject{ + Attributes: map[string]schema.Attribute{ + "name": schema.StringAttribute{ + Required: true, + WriteOnly: true, + }, + "value": schema.StringAttribute{ + Required: true, + WriteOnly: true, + }, + "type": schema.StringAttribute{ + Optional: true, + WriteOnly: true, + Validators: []validator.String{ + stringvalidator.OneOf("auto", "string"), + }, + }, + }, + }, + }, + "set_wo_revision": schema.Int64Attribute{ + Optional: true, + Description: `The current revision of the write-only "set_wo" attribute. Incrementing this integer value will cause Terraform to update the write-only value.`, + Validators: []validator.Int64{ + int64validator.AtLeast(1), + }, + }, + "set_list": schema.ListNestedAttribute{ + Description: "Custom sensitive values to be merged with the values", + Optional: true, + NestedObject: schema.NestedAttributeObject{ + Attributes: map[string]schema.Attribute{ + "name": schema.StringAttribute{ + Required: true, + }, + "value": schema.ListAttribute{ + Required: true, + ElementType: types.StringType, + }, + }, + }, + }, + "set_sensitive": schema.ListNestedAttribute{ + Description: "Custom sensitive values to be merged with the values", + Optional: true, + NestedObject: schema.NestedAttributeObject{ + Attributes: map[string]schema.Attribute{ + "name": schema.StringAttribute{ + Required: true, + }, + "value": schema.StringAttribute{ + Required: true, + Sensitive: true, + }, + "type": schema.StringAttribute{ + Optional: true, + Validators: []validator.String{ + stringvalidator.OneOf("auto", "string", "literal"), + }, + }, + }, + }, + }, + "postrender": schema.SingleNestedAttribute{ + Description: "Postrender command config", + Optional: true, + Attributes: map[string]schema.Attribute{ + "args": schema.ListAttribute{ + Optional: true, + Description: "An argument to the post-renderer (can specify multiple)", + ElementType: types.StringType, + }, + "binary_path": schema.StringAttribute{ + Required: true, + Description: "The common binary path", + }, + }, + }, + }, + Version: 2, + } +} + +func (r *HelmRelease) IdentitySchema(ctx context.Context, req resource.IdentitySchemaRequest, resp *resource.IdentitySchemaResponse) { + resp.IdentitySchema = identityschema.Schema{ + Version: 0, + Attributes: map[string]identityschema.Attribute{ + "namespace": identityschema.StringAttribute{ + // use "default" if not specified + OptionalForImport: true, + }, + "release_name": identityschema.StringAttribute{ + RequiredForImport: true, + }, + }, + } +} + +func (r *HelmRelease) Configure(ctx context.Context, req resource.ConfigureRequest, resp *resource.ConfigureResponse) { + // Ensure that the ProviderData is not nil + if req.ProviderData == nil { + return + } + + // Assert that the ProviderData is of type *Meta + meta, ok := req.ProviderData.(*Meta) + if !ok { + resp.Diagnostics.AddError( + "Provider Configuration Error", + fmt.Sprintf("Unexpected ProviderData type: %T", req.ProviderData), + ) + return + } + tflog.Debug(ctx, fmt.Sprintf("Configured meta: %+v", meta)) + r.meta = meta +} + +const sensitiveContentValue = "(sensitive value)" + +func cloakSetValue(values map[string]interface{}, valuePath string) { + pathKeys := strings.Split(valuePath, ".") + sensitiveKey := pathKeys[len(pathKeys)-1] + parentPathKeys := pathKeys[:len(pathKeys)-1] + m := values + for _, key := range parentPathKeys { + v, ok := m[key].(map[string]interface{}) + if !ok { + return + } + m = v + } + m[sensitiveKey] = sensitiveContentValue +} + +func mergeMaps(a, b map[string]interface{}) map[string]interface{} { + out := make(map[string]interface{}, len(a)) + for k, v := range a { + out[k] = v + } + for k, v := range b { + if vMap, ok := v.(map[string]interface{}); ok { + if bv, ok := out[k]; ok { + if bvMap, ok := bv.(map[string]interface{}); ok { + out[k] = mergeMaps(bvMap, vMap) + continue + } + } + } + out[k] = v + } + return out +} + +func (r *HelmRelease) Create(ctx context.Context, req resource.CreateRequest, resp *resource.CreateResponse) { + var state HelmReleaseModel + diags := req.Plan.Get(ctx, &state) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + var config HelmReleaseModel + diags = req.Config.Get(ctx, &config) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + + tflog.Debug(ctx, fmt.Sprintf("Plan state on Create: %+v", state)) + + meta := r.meta + if meta == nil { + resp.Diagnostics.AddError("Initialization Error", "Meta instance is not initialized") + return + } + namespace := state.Namespace.ValueString() + actionConfig, err := meta.GetHelmConfiguration(ctx, namespace) + if err != nil { + resp.Diagnostics.AddError("Error getting helm configuration", fmt.Sprintf("Unable to get Helm configuration for namespace %s: %s", namespace, err)) + return + } + ociDiags := OCIRegistryLogin(ctx, meta, actionConfig, meta.RegistryClient, state.Repository.ValueString(), state.Chart.ValueString(), state.RepositoryUsername.ValueString(), state.RepositoryPassword.ValueString()) + resp.Diagnostics.Append(ociDiags...) + if resp.Diagnostics.HasError() { + return + } + + client := action.NewInstall(actionConfig) + cpo, chartName, cpoDiags := chartPathOptions(&state, meta, &client.ChartPathOptions) + resp.Diagnostics.Append(cpoDiags...) + if resp.Diagnostics.HasError() { + return + } + + c, cpath, chartDiags := getChart(ctx, &state, meta, chartName, cpo) + resp.Diagnostics.Append(chartDiags...) + if resp.Diagnostics.HasError() { + return + } + + updated, depDiags := checkChartDependencies(ctx, &state, c, cpath, meta) + resp.Diagnostics.Append(depDiags...) + if resp.Diagnostics.HasError() { + return + } else if updated { + c, err = loader.Load(cpath) + if err != nil { + resp.Diagnostics.AddError("Error loading chart", fmt.Sprintf("Could not load chart: %s", err)) + return + } + } + + values, valuesDiags := getValues(ctx, &state) + resp.Diagnostics.Append(valuesDiags...) + if resp.Diagnostics.HasError() { + return + } + + if config.SetWORevision.ValueInt64() > 0 { + woValues, woDiags := getWriteOnlyValues(ctx, &config) + resp.Diagnostics.Append(woDiags...) + if resp.Diagnostics.HasError() { + return + } + if len(woValues) > 0 { + values = mergeMaps(values, woValues) + } + } + + err = isChartInstallable(c) + if err != nil { + resp.Diagnostics.AddError("Error checking if chart is installable", fmt.Sprintf("Chart is not installable: %s", err)) + return + } + + client.ClientOnly = false + client.DryRun = false + client.DisableHooks = state.DisableWebhooks.ValueBool() + client.Wait = state.Wait.ValueBool() + client.WaitForJobs = state.WaitForJobs.ValueBool() + client.Devel = state.Devel.ValueBool() + client.DependencyUpdate = state.DependencyUpdate.ValueBool() + client.Timeout = time.Duration(state.Timeout.ValueInt64()) * time.Second + client.Namespace = state.Namespace.ValueString() + client.ReleaseName = state.Name.ValueString() + client.Atomic = state.Atomic.ValueBool() + client.SkipCRDs = state.SkipCrds.ValueBool() + client.SubNotes = state.RenderSubchartNotes.ValueBool() + client.DisableOpenAPIValidation = state.DisableOpenapiValidation.ValueBool() + client.Replace = state.Replace.ValueBool() + client.Description = state.Description.ValueString() + client.CreateNamespace = state.CreateNamespace.ValueBool() + + if state.PostRender != nil { + binaryPath := state.PostRender.BinaryPath.ValueString() + argsList := state.PostRender.Args.Elements() + + var args []string + for _, arg := range argsList { + args = append(args, arg.(basetypes.StringValue).ValueString()) + } + tflog.Debug(ctx, fmt.Sprintf("Creating post-renderer with binary path: %s and args: %v", binaryPath, args)) + pr, err := postrender.NewExec(binaryPath, args...) + if err != nil { + resp.Diagnostics.AddError("Error creating post-renderer", fmt.Sprintf("Could not create post-renderer: %s", err)) + return + } + + client.PostRenderer = pr + } + + rel, err := client.Run(c, values) + if err != nil && rel == nil { + resp.Diagnostics.AddError("installation failed", err.Error()) + return + } + + if err != nil && rel != nil { + exists, existsDiags := resourceReleaseExists(ctx, state.Name.ValueString(), state.Namespace.ValueString(), meta) + resp.Diagnostics.Append(existsDiags...) + if resp.Diagnostics.HasError() { + return + } + if !exists { + resp.Diagnostics.AddError("installation failed", err.Error()) + return + } + + diags := setReleaseAttributes(ctx, &state, resp.Identity, rel, meta) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + + resp.Diagnostics.Append(diag.NewWarningDiagnostic("Helm release created with warnings", fmt.Sprintf("Helm release %q was created but has a failed status. Use the `helm` command to investigate the error, correct it, then run Terraform again.", client.ReleaseName))) + resp.Diagnostics.Append(diag.NewErrorDiagnostic("Helm release error", err.Error())) + + return + } + + diags = setReleaseAttributes(ctx, &state, resp.Identity, rel, meta) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + + diags = resp.State.Set(ctx, &state) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } +} + +func (r *HelmRelease) Read(ctx context.Context, req resource.ReadRequest, resp *resource.ReadResponse) { + var state HelmReleaseModel + + diags := req.State.Get(ctx, &state) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + tflog.Debug(ctx, fmt.Sprintf("Current state before changes: %+v", state)) + + meta := r.meta + if meta == nil { + resp.Diagnostics.AddError( + "Meta not set", + "The meta information is not set for the resource", + ) + return + } + + exists, diags := resourceReleaseExists(ctx, state.Name.ValueString(), state.Namespace.ValueString(), meta) + if !exists { + resp.State.RemoveResource(ctx) + return + } + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + + logID := fmt.Sprintf("[resourceReleaseRead: %s]", state.Name.ValueString()) + tflog.Debug(ctx, fmt.Sprintf("%s Started", logID)) + + c, err := meta.GetHelmConfiguration(ctx, state.Namespace.ValueString()) + if err != nil { + resp.Diagnostics.AddError( + "Error getting helm configuration", + fmt.Sprintf("Unable to get Helm configuration for namespace %s: %s", state.Namespace.ValueString(), err), + ) + return + } + + release, err := getRelease(ctx, meta, c, state.Name.ValueString()) + if err != nil { + resp.Diagnostics.AddError( + "Error getting release", + fmt.Sprintf("Unable to get Helm release %s: %s", state.Name.ValueString(), err.Error()), + ) + return + } + + diags = setReleaseAttributes(ctx, &state, resp.Identity, release, meta) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + resp.Diagnostics.AddError( + "Error setting release attributes", + fmt.Sprintf("Unable to set attributes for helm release %s", state.Name.ValueString()), + ) + return + } + + resp.Diagnostics.Append(resp.State.Set(ctx, &state)...) + if resp.Diagnostics.HasError() { + return + } +} + +func (r *HelmRelease) Update(ctx context.Context, req resource.UpdateRequest, resp *resource.UpdateResponse) { + var plan HelmReleaseModel + diags := req.Plan.Get(ctx, &plan) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + + // Current state of the resource before update operation is applied + var state HelmReleaseModel + diags = req.State.Get(ctx, &state) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + + var config HelmReleaseModel + diags = req.Config.Get(ctx, &config) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + + logID := fmt.Sprintf("[resourceReleaseUpdate: %s]", state.Name.ValueString()) + tflog.Debug(ctx, fmt.Sprintf("%s Started", logID)) + + meta := r.meta + namespace := state.Namespace.ValueString() + tflog.Debug(ctx, fmt.Sprintf("%s Getting helm configuration for namespace: %s", logID, namespace)) + actionConfig, err := meta.GetHelmConfiguration(ctx, namespace) + if err != nil { + tflog.Debug(ctx, fmt.Sprintf("%s Failed to get helm configuration: %v", logID, err)) + resp.Diagnostics.AddError("Error getting helm configuration", fmt.Sprintf("Unable to get Helm configuration for namespace %s: %s", namespace, err)) + return + } + ociDiags := OCIRegistryLogin(ctx, meta, actionConfig, meta.RegistryClient, state.Repository.ValueString(), state.Chart.ValueString(), state.RepositoryUsername.ValueString(), state.RepositoryPassword.ValueString()) + resp.Diagnostics.Append(ociDiags...) + if resp.Diagnostics.HasError() { + return + } + client := action.NewUpgrade(actionConfig) + + cpo, chartName, cpoDiags := chartPathOptions(&plan, meta, &client.ChartPathOptions) + resp.Diagnostics.Append(cpoDiags...) + if resp.Diagnostics.HasError() { + return + } + + c, path, chartDiags := getChart(ctx, &plan, meta, chartName, cpo) + resp.Diagnostics.Append(chartDiags...) + if resp.Diagnostics.HasError() { + return + } + + // Check and update the chart's depenedcies if it's needed + updated, depDiags := checkChartDependencies(ctx, &plan, c, path, meta) + resp.Diagnostics.Append(depDiags...) + if resp.Diagnostics.HasError() { + return + } else if updated { + c, err = loader.Load(path) + if err != nil { + resp.Diagnostics.AddError("Error loading chart", fmt.Sprintf("Could not load chart: %s", err)) + return + } + } + + client.Devel = plan.Devel.ValueBool() + client.Namespace = plan.Namespace.ValueString() + client.Timeout = time.Duration(plan.Timeout.ValueInt64()) * time.Second + client.Wait = plan.Wait.ValueBool() + client.WaitForJobs = plan.WaitForJobs.ValueBool() + client.DryRun = false + client.DisableHooks = plan.DisableWebhooks.ValueBool() + client.Atomic = plan.Atomic.ValueBool() + client.SkipCRDs = plan.SkipCrds.ValueBool() + client.SubNotes = plan.RenderSubchartNotes.ValueBool() + client.DisableOpenAPIValidation = plan.DisableOpenapiValidation.ValueBool() + client.Force = plan.ForceUpdate.ValueBool() + client.ResetValues = plan.ResetValues.ValueBool() + client.ReuseValues = plan.ReuseValues.ValueBool() + client.Recreate = plan.RecreatePods.ValueBool() + client.MaxHistory = int(plan.MaxHistory.ValueInt64()) + client.CleanupOnFail = plan.CleanupOnFail.ValueBool() + client.Description = plan.Description.ValueString() + + if plan.PostRender != nil { + binaryPath := plan.PostRender.BinaryPath.ValueString() + argsList := plan.PostRender.Args.Elements() + + var args []string + for _, arg := range argsList { + args = append(args, arg.(basetypes.StringValue).ValueString()) + } + tflog.Debug(ctx, fmt.Sprintf("Binary path update method: %s, Args: %v", binaryPath, args)) + pr, err := postrender.NewExec(binaryPath, args...) + if err != nil { + resp.Diagnostics.AddError("Error creating post-renderer", fmt.Sprintf("Could not create post-renderer: %s", err)) + return + } + client.PostRenderer = pr + } + values, valuesDiags := getValues(ctx, &plan) + resp.Diagnostics.Append(valuesDiags...) + if resp.Diagnostics.HasError() { + return + } + if plan.SetWORevision.ValueInt64() > state.SetWORevision.ValueInt64() { + woValues, woDiags := getWriteOnlyValues(ctx, &config) + resp.Diagnostics.Append(woDiags...) + if resp.Diagnostics.HasError() { + return + } + if len(woValues) > 0 { + values = mergeMaps(values, woValues) + } + } + + name := plan.Name.ValueString() + release, err := client.Run(name, c, values) + if err != nil { + resp.Diagnostics.AddError("Error upgrading chart", fmt.Sprintf("Upgrade failed: %s", err)) + return + } + + diags = setReleaseAttributes(ctx, &plan, resp.Identity, release, meta) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + + diags = resp.State.Set(ctx, &plan) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } +} + +func (r *HelmRelease) Delete(ctx context.Context, req resource.DeleteRequest, resp *resource.DeleteResponse) { + var state HelmReleaseModel + diags := req.State.Get(ctx, &state) + + for _, diag := range diags { + tflog.Debug(ctx, fmt.Sprintf("Diagnostics after state get: %s", diag.Detail())) + } + + // Append diagnostics to response + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + tflog.Error(ctx, fmt.Sprintf("Error retrieving state: %v", resp.Diagnostics)) + return + } + tflog.Debug(ctx, fmt.Sprintf("Retrieved state: %+v", state)) + + // Check if meta is set + meta := r.meta + if meta == nil { + resp.Diagnostics.AddError( + "Meta not set", + "The meta information is not set for the resource", + ) + tflog.Error(ctx, "Meta information is not set for the resource") + return + } + + name := state.Name.ValueString() + namespace := state.Namespace.ValueString() + + exists, diags := resourceReleaseExists(ctx, name, namespace, meta) + if !exists { + return + } + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + + // Get Helm configuration + actionConfig, err := meta.GetHelmConfiguration(ctx, namespace) + if err != nil { + resp.Diagnostics.AddError( + "Error getting helm configuration", + fmt.Sprintf("Unable to get Helm configuration for namespace %s: %s", namespace, err), + ) + tflog.Error(ctx, fmt.Sprintf("Unable to get Helm configuration for namespace %s: %s", namespace, err)) + return + } + tflog.Debug(ctx, fmt.Sprintf("Retrieved Helm configuration for namespace: %s", namespace)) + + // Initialize uninstall action + uninstall := action.NewUninstall(actionConfig) + uninstall.Wait = state.Wait.ValueBool() + uninstall.DisableHooks = state.DisableWebhooks.ValueBool() + uninstall.Timeout = time.Duration(state.Timeout.ValueInt64()) * time.Second + + // Uninstall the release + tflog.Info(ctx, fmt.Sprintf("Uninstalling Helm release: %s", name)) + res, err := uninstall.Run(name) + if err != nil { + resp.Diagnostics.AddError( + "Error uninstalling release", + fmt.Sprintf("Unable to uninstall Helm release %s: %s", name, err), + ) + tflog.Error(ctx, fmt.Sprintf("Unable to uninstall Helm release %s: %s", name, err)) + return + } + + if res.Info != "" { + resp.Diagnostics.Append(diag.NewWarningDiagnostic( + "Helm uninstall returned an information message", + res.Info, + )) + } +} + +func chartPathOptions(model *HelmReleaseModel, meta *Meta, cpo *action.ChartPathOptions) (*action.ChartPathOptions, string, diag.Diagnostics) { + var diags diag.Diagnostics + chartName := model.Chart.ValueString() + repository := model.Repository.ValueString() + + var repositoryURL string + if registry.IsOCI(repository) { + // LocateChart expects the chart name to contain the full OCI path + u, err := url.Parse(repository) + if err != nil { + diags.AddError("Invalid Repository URL", fmt.Sprintf("Failed to parse repository URL %s: %s", repository, err)) + return nil, "", diags + } + u.Path = pathpkg.Join(u.Path, chartName) + chartName = u.String() + } else { + var err error + repositoryURL, chartName, err = buildChartNameWithRepository(repository, strings.TrimSpace(chartName)) + if err != nil { + diags.AddError("Error building Chart Name With Repository", fmt.Sprintf("Could not build Chart Name With Repository %s and chart %s: %s", repository, chartName, err)) + return nil, "", diags + } + } + + version := getVersion(model) + + cpo.CaFile = model.RepositoryCaFile.ValueString() + cpo.CertFile = model.RepositoryCertFile.ValueString() + cpo.KeyFile = model.RepositoryKeyFile.ValueString() + cpo.Keyring = model.Keyring.ValueString() + cpo.RepoURL = repositoryURL + cpo.Verify = model.Verify.ValueBool() + if !useChartVersion(chartName, cpo.RepoURL) { + cpo.Version = version + } + cpo.Username = model.RepositoryUsername.ValueString() + cpo.Password = model.RepositoryPassword.ValueString() + cpo.PassCredentialsAll = model.PassCredentials.ValueBool() + + return cpo, chartName, diags +} + +func useChartVersion(chart string, repo string) bool { + // checks if chart is a URL or OCI registry + + if _, err := url.ParseRequestURI(chart); err == nil && !registry.IsOCI(chart) { + return true + } + // checks if chart is a local chart + if _, err := os.Stat(chart); err == nil { + return true + } + // checks if repo is a local chart + if _, err := os.Stat(repo); err == nil { + return true + } + + return false +} + +func buildChartNameWithRepository(repository, name string) (string, string, error) { + _, err := url.ParseRequestURI(repository) + if err == nil { + return repository, name, nil + } + + if strings.Index(name, "/") == -1 && repository != "" { + name = fmt.Sprintf("%s/%s", repository, name) + } + + return "", name, nil +} + +func getVersion(model *HelmReleaseModel) string { + version := model.Version.ValueString() + if version == "" && model.Devel.ValueBool() { + return ">0.0.0-0" + } + return strings.TrimSpace(version) +} + +func isChartInstallable(ch *chart.Chart) error { + switch ch.Metadata.Type { + case "", "application": + return nil + } + return errors.Errorf("%s charts are not installable", ch.Metadata.Type) +} + +func getChart(ctx context.Context, model *HelmReleaseModel, m *Meta, name string, cpo *action.ChartPathOptions) (*chart.Chart, string, diag.Diagnostics) { + var diags diag.Diagnostics + + tflog.Debug(ctx, fmt.Sprintf("Helm settings: %+v", m.Settings)) + + path, err := cpo.LocateChart(name, m.Settings) + if err != nil { + diags.AddError("Error locating chart", fmt.Sprintf("Unable to locate chart %s: %s", name, err)) + return nil, "", diags + } + + c, err := loader.Load(path) + if err != nil { + diags.AddError("Error loading chart", fmt.Sprintf("Unable to load chart %s: %s", path, err)) + return nil, "", diags + } + + return c, path, diags +} + +func getWriteOnlyValues(ctx context.Context, model *HelmReleaseModel) (map[string]interface{}, diag.Diagnostics) { + base := map[string]interface{}{} + diags := diag.Diagnostics{} + + if !model.SetWO.IsUnknown() && !model.SetWO.IsNull() { + tflog.Debug(ctx, "Processing SetWO attribute") + var setvals []setResourceModel + setDiags := model.SetWO.ElementsAs(ctx, &setvals, false) + diags.Append(setDiags...) + if diags.HasError() { + return nil, diags + } + for _, set := range setvals { + setDiags := getValue(base, set) + diags.Append(setDiags...) + if diags.HasError() { + return nil, diags + } + } + } + + return base, diags +} + +func getValues(ctx context.Context, model *HelmReleaseModel) (map[string]interface{}, diag.Diagnostics) { + base := map[string]interface{}{} + var diags diag.Diagnostics + + // Processing "values" attribute + for _, raw := range model.Values.Elements() { + if raw.IsNull() { + continue + } + + value, ok := raw.(types.String) + if !ok { + diags.AddError("Type Error", fmt.Sprintf("Expected types.String, got %T", raw)) + return nil, diags + } + + values := value.ValueString() + if values == "" { + continue + } + + currentMap := map[string]interface{}{} + if err := yaml.Unmarshal([]byte(values), ¤tMap); err != nil { + diags.AddError("Error unmarshaling values", fmt.Sprintf("---> %v %s", err, values)) + return nil, diags + } + + base = mergeMaps(base, currentMap) + } + + // Processing "set" attribute + if !model.Set.IsNull() { + tflog.Debug(ctx, "Processing Set attribute") + var setList []setResourceModel + setDiags := model.Set.ElementsAs(ctx, &setList, false) + diags.Append(setDiags...) + if diags.HasError() { + return nil, diags + } + + for i, set := range setList { + tflog.Debug(ctx, fmt.Sprintf("Processing Set element at index %d: %v", i, set)) + setDiags := getValue(base, set) + diags.Append(setDiags...) + if diags.HasError() { + tflog.Debug(ctx, fmt.Sprintf("Error occurred while processing Set element at index %d", i)) + return nil, diags + } + } + } + + // Processing "set_list" attribute + if !model.SetList.IsUnknown() { + tflog.Debug(ctx, "Processing Set_list attribute") + var setListSlice []set_listResourceModel + setListDiags := model.SetList.ElementsAs(ctx, &setListSlice, false) + diags.Append(setListDiags...) + if diags.HasError() { + tflog.Debug(ctx, "Error occurred while processing Set_list attribute") + return nil, diags + } + + for i, setList := range setListSlice { + tflog.Debug(ctx, fmt.Sprintf("Processing Set_list element at index %d: %v", i, setList)) + setListDiags := getListValue(ctx, base, setList) + diags.Append(setListDiags...) + if diags.HasError() { + tflog.Debug(ctx, fmt.Sprintf("Error occurred while processing Set_list element at index %d", i)) + return nil, diags + } + } + } + + // Processing "set_sensitive" attribute + if !model.SetSensitive.IsNull() { + tflog.Debug(ctx, "Processing Set_Sensitive attribute") + var setSensitiveList []setResourceModel + setSensitiveDiags := model.SetSensitive.ElementsAs(ctx, &setSensitiveList, false) + diags.Append(setSensitiveDiags...) + if diags.HasError() { + tflog.Debug(ctx, "Error occurred while processing Set_Sensitive attribute") + return nil, diags + } + + for i, setSensitive := range setSensitiveList { + tflog.Debug(ctx, fmt.Sprintf("Processing Set_Sensitive element at index %d: %v", i, setSensitive)) + setSensitiveDiags := getValue(base, setSensitive) + diags.Append(setSensitiveDiags...) + if diags.HasError() { + tflog.Debug(ctx, fmt.Sprintf("Error occurred while processing Set_Sensitive element at index %d", i)) + return nil, diags + } + } + } + + tflog.Debug(ctx, fmt.Sprintf("Final merged values: %v", base)) + logDiags := logValues(ctx, base, model) + diags.Append(logDiags...) + if diags.HasError() { + tflog.Debug(ctx, "Error occurred while logging values") + return nil, diags + } + + return base, diags +} + +func getValue(base map[string]interface{}, set setResourceModel) diag.Diagnostics { + var diags diag.Diagnostics + + name := set.Name.ValueString() + value := set.Value.ValueString() + valueType := set.Type.ValueString() + + switch valueType { + case "auto", "": + if err := strvals.ParseInto(fmt.Sprintf("%s=%s", name, value), base); err != nil { + diags.AddError("Failed parsing value", fmt.Sprintf("Failed parsing key %q with value %s: %s", name, value, err)) + return diags + } + case "string": + if err := strvals.ParseIntoString(fmt.Sprintf("%s=%s", name, value), base); err != nil { + diags.AddError("Failed parsing string value", fmt.Sprintf("Failed parsing key %q with value %s: %s", name, value, err)) + return diags + } + case "literal": + var literal interface{} + if err := yaml.Unmarshal([]byte(fmt.Sprintf("%s: %s", name, value)), &literal); err != nil { + diags.AddError("Failed parsing literal value", fmt.Sprintf("Key %q with literal value %s: %s", name, value, err)) + return diags + } + + if m, ok := literal.(map[string]interface{}); ok { + base[name] = m[name] + } else { + base[name] = literal + } + default: + diags.AddError("Unexpected type", fmt.Sprintf("Unexpected type: %s", valueType)) + return diags + } + return diags +} + +// deepCloneMap creates a deep copy of a map[string]interface{} +func deepCloneMap(m map[string]interface{}) map[string]interface{} { + if m == nil { + return nil + } + + clone := make(map[string]interface{}, len(m)) + for k, v := range m { + switch val := v.(type) { + case map[string]interface{}: + clone[k] = deepCloneMap(val) + default: + clone[k] = v + } + } + return clone +} + +func logValues(ctx context.Context, values map[string]interface{}, state *HelmReleaseModel) diag.Diagnostics { + var diags diag.Diagnostics + // Deep cloning values map to avoid modifying the original + c := deepCloneMap(values) + + cloakSetValues(c, state) + + y, err := yaml.Marshal(c) + if err != nil { + diags.AddError("Error marshaling map to YAML", fmt.Sprintf("Failed to marshal map to YAML: %s", err)) + return diags + } + + tflog.Debug(ctx, fmt.Sprintf("---[ values.yaml ]-----------------------------------\n%s\n", string(y))) + + return diags +} + +func cloakSetValues(config map[string]interface{}, state *HelmReleaseModel) { + if !state.SetSensitive.IsNull() { + var setSensitiveList []setResourceModel + diags := state.SetSensitive.ElementsAs(context.Background(), &setSensitiveList, false) + if diags.HasError() { + // Handle diagnostics error + return + } + + for _, set := range setSensitiveList { + cloakSetValue(config, set.Name.ValueString()) + } + } +} + +func getListValue(ctx context.Context, base map[string]interface{}, set set_listResourceModel) diag.Diagnostics { + var diags diag.Diagnostics + + name := set.Name.ValueString() + + if set.Value.IsNull() { + diags.AddError("Null List Value", "The list value is null.") + return diags + } + + // Get the elements of the ListValue + elements := set.Value.Elements() + + // Convert elements to a list of strings + listStringArray := make([]string, 0, len(elements)) + for _, element := range elements { + if !element.IsNull() { + strValue := element.(types.String).ValueString() + listStringArray = append(listStringArray, strValue) + } + } + + // Join the list into a single string + listString := strings.Join(listStringArray, ",") + + if err := strvals.ParseInto(fmt.Sprintf("%s={%s}", name, listString), base); err != nil { + diags.AddError("Error parsing list value", fmt.Sprintf("Failed parsing key %q with value %s: %s", name, listString, err)) + return diags + } + + return diags +} + +func versionsEqual(a, b string) bool { + return strings.TrimPrefix(a, "v") == strings.TrimPrefix(b, "v") +} + +func setReleaseAttributes(ctx context.Context, state *HelmReleaseModel, identity *tfsdk.ResourceIdentity, r *release.Release, meta *Meta) diag.Diagnostics { + var diags diag.Diagnostics + + // Update state with attributes from the helm release + state.Name = types.StringValue(r.Name) + version := r.Chart.Metadata.Version + if !versionsEqual(version, state.Version.ValueString()) { + state.Version = types.StringValue(version) + } + + state.Namespace = types.StringValue(r.Namespace) + state.Status = types.StringValue(r.Info.Status.String()) + + state.ID = types.StringValue(r.Name) + + rid := HelmReleaseIdentityModel{ + Namespace: types.StringValue(r.Namespace), + ReleaseName: types.StringValue(r.Name), + } + diags = identity.Set(ctx, rid) + if diags.HasError() { + return diags + } + + // Cloak sensitive values in the release config + values := "{}" + if r.Config != nil { + // Deep clone the config to avoid modifying the original + configClone := deepCloneMap(r.Config) + cloakSetValues(configClone, state) + v, err := json.Marshal(configClone) + if err != nil { + diags.AddError( + "Error marshaling values", + fmt.Sprintf("unable to marshal values: %s", err), + ) + return diags + } + values = string(v) + } + + // Handling the helm release if manifest experiment is enabled + if meta.ExperimentEnabled("manifest") { + jsonManifest, err := convertYAMLManifestToJSON(r.Manifest) + if err != nil { + diags.AddError( + "Error converting manifest to JSON", + fmt.Sprintf("Unable to convert manifest to JSON: %s", err), + ) + return diags + } + sensitiveValues := extractSensitiveValues(state) + manifest := redactSensitiveValues(string(jsonManifest), sensitiveValues) + state.Manifest = types.StringValue(manifest) + } + + // NOTE Don't retrieve values if write-only is being used. + // It is not possible to pick out which values are write-only + // at read time because write-only values are ephemeral + valuesstr := types.StringValue("{}") + if state.SetWORevision.ValueInt64() <= 0 { + valuesstr = types.StringValue(values) + } + + // Create metadata as a slice of maps + metadata := map[string]attr.Value{ + "name": types.StringValue(r.Name), + "revision": types.Int64Value(int64(r.Version)), + "namespace": types.StringValue(r.Namespace), + "chart": types.StringValue(r.Chart.Metadata.Name), + "version": types.StringValue(r.Chart.Metadata.Version), + "app_version": types.StringValue(r.Chart.Metadata.AppVersion), + "values": valuesstr, + "first_deployed": types.Int64Value(r.Info.FirstDeployed.Unix()), + "last_deployed": types.Int64Value(r.Info.LastDeployed.Unix()), + "notes": types.StringValue(r.Info.Notes), + } + + // Convert the list of ObjectValues to a ListValue + metadataObject, diag := types.ObjectValue(metadataAttrTypes(), metadata) + diags.Append(diag...) + if diags.HasError() { + tflog.Error(ctx, "Error converting metadata to ListValue", map[string]interface{}{ + "metadata": metadata, + "error": diags, + }) + + return diags + } + + // Log metadata after conversion + tflog.Debug(ctx, fmt.Sprintf("Metadata after conversion: %+v", metadataObject)) + state.Metadata = metadataObject + return diags +} + +func metadataAttrTypes() map[string]attr.Type { + return map[string]attr.Type{ + "name": types.StringType, + "revision": types.Int64Type, + "namespace": types.StringType, + "chart": types.StringType, + "version": types.StringType, + "app_version": types.StringType, + "values": types.StringType, + "first_deployed": types.Int64Type, + "last_deployed": types.Int64Type, + "notes": types.StringType, + } +} + +func extractSensitiveValues(state *HelmReleaseModel) map[string]string { + sensitiveValues := make(map[string]string) + + if !state.SetSensitive.IsNull() { + var setSensitiveList []setResourceModel + diags := state.SetSensitive.ElementsAs(context.Background(), &setSensitiveList, false) + if diags.HasError() { + return sensitiveValues + } + + for _, set := range setSensitiveList { + sensitiveValues[set.Name.ValueString()] = "(sensitive value)" + } + } + + return sensitiveValues +} + +func (m *Meta) ExperimentEnabled(name string) bool { + if enabled, exists := m.Experiments[name]; exists { + return enabled + } + return false +} + +// c +func resourceReleaseExists(ctx context.Context, name, namespace string, meta *Meta) (bool, diag.Diagnostics) { + logID := fmt.Sprintf("[resourceReleaseExists: %s]", name) + tflog.Debug(ctx, fmt.Sprintf("%s Start", logID)) + + var diags diag.Diagnostics + + c, err := meta.GetHelmConfiguration(ctx, namespace) + if err != nil { + diags.AddError( + "Error getting helm configuration", + fmt.Sprintf("Unable to get Helm configuration for namespace %s: %s", namespace, err), + ) + return false, diags + } + + _, err = getRelease(ctx, meta, c, name) + + tflog.Debug(ctx, fmt.Sprintf("%s Done", logID)) + + if err == nil { + return true, diags + } + + if err == errReleaseNotFound { + return false, diags + } + + diags.AddError( + "Error checking release existence", + fmt.Sprintf("Error checking release %s in namespace %s: %s", name, namespace, err), + ) + return false, diags +} + +var errReleaseNotFound = fmt.Errorf("release: not found") + +// c +func getRelease(ctx context.Context, m *Meta, cfg *action.Configuration, name string) (*release.Release, error) { + get := action.NewGet(cfg) + tflog.Debug(ctx, fmt.Sprintf("%s getRelease post action created", name)) + + res, err := get.Run(name) + tflog.Debug(ctx, fmt.Sprintf("%s getRelease post run", name)) + + if err != nil { + tflog.Debug(ctx, fmt.Sprintf("getRelease for %s occurred", name)) + tflog.Debug(ctx, fmt.Sprintf("%v", err)) + if strings.Contains(err.Error(), "release: not found") { + tflog.Error(ctx, errReleaseNotFound.Error()) + return nil, errReleaseNotFound + } + tflog.Debug(ctx, fmt.Sprintf("Could not get release %s", err)) + tflog.Error(ctx, err.Error()) + return nil, err + } + + tflog.Debug(ctx, fmt.Sprintf("%s getRelease completed", name)) + return res, nil +} + +// c +func checkChartDependencies(ctx context.Context, model *HelmReleaseModel, c *chart.Chart, path string, m *Meta) (bool, diag.Diagnostics) { + var diags diag.Diagnostics + p := getter.All(m.Settings) + + if req := c.Metadata.Dependencies; req != nil { + err := action.CheckDependencies(c, req) + if err != nil { + if model.DependencyUpdate.ValueBool() { + man := &downloader.Manager{ + Out: os.Stdout, + ChartPath: path, + Keyring: model.Keyring.ValueString(), + SkipUpdate: false, + Getters: p, + RepositoryConfig: m.Settings.RepositoryConfig, + RepositoryCache: m.Settings.RepositoryCache, + Debug: m.Settings.Debug, + } + tflog.Debug(ctx, "Downloading chart dependencies...") + if err := man.Update(); err != nil { + diags.AddError("", fmt.Sprintf("Failed to update chart dependencies: %s", err)) + return true, diags + } + return true, diags + } + diags.AddError("", "Found in Chart.yaml, but missing in charts/ directory") + return false, diags + } + } + tflog.Debug(ctx, "Chart dependencies are up to date.") + return false, diags +} + +func (r *HelmRelease) ModifyPlan(ctx context.Context, req resource.ModifyPlanRequest, resp *resource.ModifyPlanResponse) { + if req.Plan.Raw.IsNull() { + // resource is being destroyed + return + } + var plan HelmReleaseModel + resp.Diagnostics.Append(req.Plan.Get(ctx, &plan)...) + if resp.Diagnostics.HasError() { + return + } + var state *HelmReleaseModel + resp.Diagnostics.Append(req.State.Get(ctx, &state)...) + if resp.Diagnostics.HasError() { + return + } + + var config HelmReleaseModel + resp.Diagnostics.Append(req.Config.Get(ctx, &config)...) + if resp.Diagnostics.HasError() { + return + } + + tflog.Debug(ctx, fmt.Sprintf("Plan state on ModifyPlan: %+v", plan)) + tflog.Debug(ctx, fmt.Sprintf("Actual state on ModifyPlan: %+v", state)) + + logID := fmt.Sprintf("[resourceDiff: %s]", plan.Name.ValueString()) + tflog.Debug(ctx, fmt.Sprintf("%s Start", logID)) + + meta := r.meta + name := plan.Name.ValueString() + namespace := plan.Namespace.ValueString() + + actionConfig, err := meta.GetHelmConfiguration(ctx, namespace) + if err != nil { + resp.Diagnostics.AddError("Error getting Helm configuration", err.Error()) + return + } + tflog.Debug(ctx, fmt.Sprintf("%s Initial Values: Name=%s, Namespace=%s, Repository=%s, Repository_Username=%s, Repository_Password=%s, Chart=%s", logID, + name, namespace, plan.Repository.ValueString(), plan.RepositoryUsername.ValueString(), plan.RepositoryPassword.ValueString(), plan.Chart.ValueString())) + + repositoryURL := plan.Repository.ValueString() + repositoryUsername := plan.RepositoryUsername.ValueString() + repositoryPassword := plan.RepositoryPassword.ValueString() + chartName := plan.Chart.ValueString() + ociDiags := OCIRegistryLogin(ctx, meta, actionConfig, meta.RegistryClient, repositoryURL, chartName, repositoryUsername, repositoryPassword) + resp.Diagnostics.Append(ociDiags...) + if resp.Diagnostics.HasError() { + return + } + + // Always set desired state to DEPLOYED + plan.Status = types.StringValue(release.StatusDeployed.String()) + + if recomputeMetadata(plan, state) { + tflog.Debug(ctx, fmt.Sprintf("%s Metadata has changes, setting to unknown", logID)) + plan.Metadata = types.ObjectUnknown(metadataAttrTypes()) + } + + if !useChartVersion(plan.Chart.ValueString(), plan.Repository.ValueString()) { + // Check if version has changed + if state != nil && !plan.Version.Equal(state.Version) { + + // Ensure trimming 'v' prefix correctly + oldVersionStr := strings.TrimPrefix(state.Version.String(), "v") + newVersionStr := strings.TrimPrefix(plan.Version.String(), "v") + + if oldVersionStr != newVersionStr && newVersionStr != "" { + // Setting Metadata to a computed value + plan.Metadata = types.ObjectUnknown(metadataAttrTypes()) + } + } + } + + client := action.NewInstall(actionConfig) + cpo, chartName, diags := chartPathOptions(&plan, meta, &client.ChartPathOptions) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + + chart, path, diags := getChart(ctx, &plan, meta, chartName, cpo) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + tflog.Debug(ctx, fmt.Sprintf("%s Got chart", logID)) + + updated, diags := checkChartDependencies(ctx, &plan, chart, path, meta) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } else if updated { + chart, err = loader.Load(path) + if err != nil { + resp.Diagnostics.AddError("Error loading chart", err.Error()) + return + } + } + + if plan.Lint.ValueBool() { + diags := resourceReleaseValidate(ctx, &plan, meta, cpo) + if diags.HasError() { + resp.Diagnostics.Append(diags...) + return + } + } + tflog.Debug(ctx, fmt.Sprintf("%s Release validated", logID)) + + if meta.ExperimentEnabled("manifest") { + // Check if all necessary values are known + if valuesUnknown(plan) { + tflog.Debug(ctx, "not all values are known, skipping dry run to render manifest") + plan.Manifest = types.StringNull() + plan.Version = types.StringNull() + return + } + + if plan.PostRender != nil { + binaryPath := plan.PostRender.BinaryPath.ValueString() + argsList := plan.PostRender.Args.Elements() + + var args []string + for _, arg := range argsList { + args = append(args, arg.(basetypes.StringValue).ValueString()) + } + + pr, err := postrender.NewExec(binaryPath, args...) + if err != nil { + resp.Diagnostics.AddError("Error creating post-renderer", fmt.Sprintf("Could not create post-renderer: %s", err)) + return + } + + client.PostRenderer = pr + } + if state == nil { + install := action.NewInstall(actionConfig) + install.ChartPathOptions = *cpo + install.DryRun = true + install.DisableHooks = plan.DisableWebhooks.ValueBool() + install.Wait = plan.Wait.ValueBool() + install.WaitForJobs = plan.WaitForJobs.ValueBool() + install.Devel = plan.Devel.ValueBool() + install.DependencyUpdate = plan.DependencyUpdate.ValueBool() + install.Timeout = time.Duration(plan.Timeout.ValueInt64()) * time.Second + install.Namespace = plan.Namespace.ValueString() + install.ReleaseName = plan.Name.ValueString() + install.Atomic = plan.Atomic.ValueBool() + install.SkipCRDs = plan.SkipCrds.ValueBool() + install.SubNotes = plan.RenderSubchartNotes.ValueBool() + install.DisableOpenAPIValidation = plan.DisableOpenapiValidation.ValueBool() + install.Replace = plan.Replace.ValueBool() + install.Description = plan.Description.ValueString() + install.CreateNamespace = plan.CreateNamespace.ValueBool() + install.PostRenderer = client.PostRenderer + + values, diags := getValues(ctx, &plan) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + + tflog.Debug(ctx, fmt.Sprintf("%s performing dry run install", logID)) + dry, err := install.Run(chart, values) + if err != nil { + // NOTE if the cluster is not reachable then we can't run the install + // this will happen if the user has their cluster creation in the + // same apply. We are catching this case here and marking manifest + // as computed to avoid breaking existing configs + + if strings.Contains(err.Error(), "Kubernetes cluster unreachable") { + resp.Diagnostics.AddError("cluster was unreachable at create time, marking manifest as computed", err.Error()) + plan.Manifest = types.StringNull() + return + } + resp.Diagnostics.AddError("Error performing dry run install", err.Error()) + return + } + + jsonManifest, err := convertYAMLManifestToJSON(dry.Manifest) + if err != nil { + resp.Diagnostics.AddError("Error converting YAML manifest to JSON", err.Error()) + return + } + valuesMap := make(map[string]string) + if !plan.SetSensitive.IsNull() { + var setSensitiveList []setResourceModel + setSensitiveDiags := plan.SetSensitive.ElementsAs(ctx, &setSensitiveList, false) + resp.Diagnostics.Append(setSensitiveDiags...) + if resp.Diagnostics.HasError() { + return + } + + for _, set := range setSensitiveList { + valuesMap[set.Name.ValueString()] = set.Value.ValueString() + } + } + manifest := redactSensitiveValues(string(jsonManifest), valuesMap) + plan.Manifest = types.StringValue(manifest) + return + } + + _, err = getRelease(ctx, meta, actionConfig, name) + if err == errReleaseNotFound { + if len(chart.Metadata.Version) > 0 { + plan.Version = types.StringValue(chart.Metadata.Version) + } + plan.Manifest = types.StringNull() + return + } else if err != nil { + resp.Diagnostics.AddError("Error retrieving old release for a diff", err.Error()) + return + } + + upgrade := action.NewUpgrade(actionConfig) + upgrade.ChartPathOptions = *cpo + upgrade.Devel = plan.Devel.ValueBool() + upgrade.Namespace = plan.Namespace.ValueString() + upgrade.Timeout = time.Duration(plan.Timeout.ValueInt64()) * time.Second + upgrade.Wait = plan.Wait.ValueBool() + upgrade.DryRun = true + upgrade.DisableHooks = plan.DisableWebhooks.ValueBool() + upgrade.Atomic = plan.Atomic.ValueBool() + upgrade.SubNotes = plan.RenderSubchartNotes.ValueBool() + upgrade.WaitForJobs = plan.WaitForJobs.ValueBool() + upgrade.Force = plan.ForceUpdate.ValueBool() + upgrade.ResetValues = plan.ResetValues.ValueBool() + upgrade.ReuseValues = plan.ReuseValues.ValueBool() + upgrade.Recreate = plan.RecreatePods.ValueBool() + upgrade.MaxHistory = int(plan.MaxHistory.ValueInt64()) + upgrade.CleanupOnFail = plan.CleanupOnFail.ValueBool() + upgrade.Description = plan.Description.ValueString() + upgrade.PostRenderer = client.PostRenderer + + values, diags := getValues(ctx, &plan) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + + tflog.Debug(ctx, fmt.Sprintf("%s performing dry run upgrade", logID)) + dry, err := upgrade.Run(name, chart, values) + if err != nil && strings.Contains(err.Error(), "has no deployed releases") { + if len(chart.Metadata.Version) > 0 && cpo.Version != "" { + plan.Version = types.StringValue(chart.Metadata.Version) + } + plan.Version = types.StringNull() + plan.Manifest = types.StringNull() + return + } else if err != nil { + resp.Diagnostics.AddError("Error running dry run for a diff", err.Error()) + return + } + + jsonManifest, err := convertYAMLManifestToJSON(dry.Manifest) + if err != nil { + resp.Diagnostics.AddError("Error converting YAML manifest to JSON", err.Error()) + return + } + valuesMap := make(map[string]string) + if !plan.SetSensitive.IsNull() { + var setSensitiveList []setResourceModel + setSensitiveDiags := plan.SetSensitive.ElementsAs(ctx, &setSensitiveList, false) + resp.Diagnostics.Append(setSensitiveDiags...) + if resp.Diagnostics.HasError() { + return + } + + for _, set := range setSensitiveList { + valuesMap[set.Name.ValueString()] = set.Value.ValueString() + } + } + manifest := redactSensitiveValues(string(jsonManifest), valuesMap) + plan.Manifest = types.StringValue(manifest) + tflog.Debug(ctx, fmt.Sprintf("%s set manifest: %s", logID, jsonManifest)) + } else { + plan.Manifest = types.StringNull() + } + + tflog.Debug(ctx, fmt.Sprintf("%s Done", logID)) + + if len(chart.Metadata.Version) > 0 { + plan.Version = types.StringValue(chart.Metadata.Version) + } else { + plan.Version = types.StringNull() + } + + if !config.Version.IsNull() && !config.Version.Equal(plan.Version) { + if versionsEqual(config.Version.ValueString(), plan.Version.ValueString()) { + plan.Version = config.Version + } else { + resp.Diagnostics.AddError( + "Planned version is different from configured version", + fmt.Sprintf(`The version in the configuration is %q but the planned version is %q. +You should update the version in your configuration to %[2]q, or remove the version attribute from your configuration.`, config.Version.ValueString(), plan.Version.ValueString())) + return + } + } + + resp.Plan.Set(ctx, &plan) +} + +// TODO: write unit test, always returns true for recomputing the metadata +// returns true if any metadata fields have changed +func recomputeMetadata(plan HelmReleaseModel, state *HelmReleaseModel) bool { + if state == nil { + return true + } + + if !plan.Chart.Equal(state.Chart) { + return true + } + if !plan.Repository.Equal(state.Repository) { + return true + } + if !plan.Values.Equal(state.Values) { + return true + } + if !plan.Set.Equal(state.Set) { + return true + } + if !plan.SetSensitive.Equal(state.SetSensitive) { + return true + } + if !plan.SetList.Equal(state.SetList) { + return true + } + return false +} + +func resourceReleaseValidate(ctx context.Context, model *HelmReleaseModel, meta *Meta, cpo *action.ChartPathOptions) diag.Diagnostics { + var diags diag.Diagnostics + + cpo, name, chartDiags := chartPathOptions(model, meta, cpo) + diags.Append(chartDiags...) + if diags.HasError() { + diags.AddError("Malformed values", fmt.Sprintf("Chart path options error: %s", chartDiags)) + return diags + } + + values, valuesDiags := getValues(ctx, model) + diags.Append(valuesDiags...) + if diags.HasError() { + return diags + } + + lintDiags := lintChart(meta, name, cpo, values) + if lintDiags != nil { + diagnostic := diag.NewErrorDiagnostic("Lint Error", lintDiags.Error()) + diags = append(diags, diagnostic) + } + return diags +} + +func lintChart(m *Meta, name string, cpo *action.ChartPathOptions, values map[string]interface{}) error { + path, err := cpo.LocateChart(name, m.Settings) + if err != nil { + return err + } + + l := action.NewLint() + result := l.Run([]string{path}, values) + + return resultToError(result) +} + +func resultToError(r *action.LintResult) error { + if len(r.Errors) == 0 { + return nil + } + + messages := []string{} + for _, msg := range r.Messages { + for _, err := range r.Errors { + if err == msg.Err { + messages = append(messages, fmt.Sprintf("%s: %s", msg.Path, msg.Err)) + break + } + } + } + + return fmt.Errorf("malformed chart or values: \n\t%s", strings.Join(messages, "\n\t")) +} + +func (r *HelmRelease) ImportState(ctx context.Context, req resource.ImportStateRequest, resp *resource.ImportStateResponse) { + var namespace, name string + if req.ID != "" { + tflog.Debug(ctx, "Using ID string for import") + var err error + namespace, name, err = parseImportIdentifier(req.ID) + if err != nil { + resp.Diagnostics.AddError( + "Unable to parse import identifier", + fmt.Sprintf("Unable to parse identifier %s: %s", req.ID, err), + ) + return + } + } else { + tflog.Debug(ctx, "Using Resource Identity for Import") + rid := HelmReleaseIdentityModel{ + Namespace: types.StringValue("default"), + } + diags := req.Identity.Get(ctx, &rid) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + namespace = rid.Namespace.ValueString() + name = rid.ReleaseName.ValueString() + } + + meta := r.meta + if meta == nil { + resp.Diagnostics.AddError( + "Meta not set", + "The meta information is not set for the resource", + ) + return + } + + actionConfig, err := meta.GetHelmConfiguration(ctx, namespace) + if err != nil { + resp.Diagnostics.AddError( + "Error getting helm configuration", + fmt.Sprintf("Unable to get Helm configuration for namespace %s: %s", namespace, err), + ) + return + } + + release, err := getRelease(ctx, meta, actionConfig, name) + if err != nil { + resp.Diagnostics.AddError( + "Error getting release", + fmt.Sprintf("Unable to get Helm release %s: %s", name, err.Error()), + ) + return + } + + var state HelmReleaseModel + state.Name = types.StringValue(release.Name) + state.Description = types.StringValue(release.Info.Description) + state.Chart = types.StringValue(release.Chart.Metadata.Name) + + // Set release-specific attributes using the helper function + diags := setReleaseAttributes(ctx, &state, resp.Identity, release, meta) + resp.Diagnostics.Append(diags...) + if resp.Diagnostics.HasError() { + return + } + + state.Set = types.ListNull(types.ObjectType{ + AttrTypes: map[string]attr.Type{ + "name": types.StringType, + "type": types.StringType, + "value": types.StringType, + }, + }) + state.SetWO = types.ListNull(types.ObjectType{ + AttrTypes: map[string]attr.Type{ + "name": types.StringType, + "type": types.StringType, + "value": types.StringType, + }, + }) + state.SetSensitive = types.ListNull(types.ObjectType{ + AttrTypes: map[string]attr.Type{ + "name": types.StringType, + "type": types.StringType, + "value": types.StringType, + }, + }) + state.SetList = types.ListNull(types.ObjectType{ + AttrTypes: map[string]attr.Type{ + "name": types.StringType, + "value": types.ListType{ + ElemType: types.StringType, + }, + }, + }) + state.Values = types.ListNull(types.StringType) + + tflog.Debug(ctx, fmt.Sprintf("Setting final state: %+v", state)) + diags = resp.State.Set(ctx, &state) + resp.Diagnostics.Append(diags...) + if diags.HasError() { + fmt.Println("DOH") + tflog.Error(ctx, "Error setting final state", map[string]interface{}{ + "state": state, + "diagnostics": diags, + }) + return + } + + // Set default attributes + for key, value := range defaultAttributes { + resp.Diagnostics.Append(resp.State.SetAttribute(ctx, path.Root(key), value)...) + if resp.Diagnostics.HasError() { + return + } + } +} + +func parseImportIdentifier(id string) (string, string, error) { + parts := strings.Split(id, "/") + if len(parts) != 2 { + err := errors.Errorf("Unexpected ID format (%q), expected namespace/name", id) + return "", "", err + } + + return parts[0], parts[1], nil +} + +// returns true if any values, set_list, set, set_sensitive are unknown +func valuesUnknown(plan HelmReleaseModel) bool { + if plan.Values.IsUnknown() { + return true + } + if plan.SetList.IsUnknown() { + return true + } + if plan.Set.IsUnknown() { + return true + } + if plan.SetSensitive.IsUnknown() { + return true + } + return false +} diff --git a/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release_stateupgrader.go b/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release_stateupgrader.go new file mode 100644 index 0000000..5195007 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release_stateupgrader.go @@ -0,0 +1,325 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 +package helm + +import ( + "context" + + "github.com/hashicorp/terraform-plugin-framework/resource" + "github.com/hashicorp/terraform-plugin-go/tfprotov6" + "github.com/hashicorp/terraform-plugin-go/tftypes" +) + +func (r *HelmRelease) buildUpgradeStateMap(_ context.Context) map[int64]resource.StateUpgrader { + return map[int64]resource.StateUpgrader{ + 1: { + StateUpgrader: func(ctx context.Context, req resource.UpgradeStateRequest, resp *resource.UpgradeStateResponse) { + oldType := tftypes.Object{ + AttributeTypes: map[string]tftypes.Type{ + "metadata": tftypes.List{ + ElementType: tftypes.Object{ + AttributeTypes: map[string]tftypes.Type{ + "name": tftypes.String, + "namespace": tftypes.String, + "revision": tftypes.Number, + "version": tftypes.String, + "chart": tftypes.String, + "app_version": tftypes.String, + "values": tftypes.String, + "first_deployed": tftypes.Number, + "last_deployed": tftypes.Number, + "notes": tftypes.String, + }, + }, + }, + "postrender": tftypes.List{ + ElementType: tftypes.Object{ + AttributeTypes: map[string]tftypes.Type{ + "binary_path": tftypes.String, + "args": tftypes.List{ElementType: tftypes.String}, + }, + }, + }, + + "set": tftypes.List{ + ElementType: tftypes.Object{ + AttributeTypes: map[string]tftypes.Type{ + "name": tftypes.String, + "value": tftypes.String, + "type": tftypes.String, + }, + }, + }, + "set_list": tftypes.List{ + ElementType: tftypes.Object{ + AttributeTypes: map[string]tftypes.Type{ + "name": tftypes.String, + "value": tftypes.List{ + ElementType: tftypes.String, + }, + }, + }, + }, + "set_sensitive": tftypes.List{ + ElementType: tftypes.Object{ + AttributeTypes: map[string]tftypes.Type{ + "name": tftypes.String, + "value": tftypes.String, + "type": tftypes.String, + }, + }, + }, + "atomic": tftypes.Bool, + "chart": tftypes.String, + "cleanup_on_fail": tftypes.Bool, + "create_namespace": tftypes.Bool, + "dependency_update": tftypes.Bool, + "description": tftypes.String, + "devel": tftypes.Bool, + "disable_crd_hooks": tftypes.Bool, + "disable_openapi_validation": tftypes.Bool, + "disable_webhooks": tftypes.Bool, + "force_update": tftypes.Bool, + "id": tftypes.String, + "keyring": tftypes.String, + "lint": tftypes.Bool, + "manifest": tftypes.String, + "max_history": tftypes.Number, + "name": tftypes.String, + "namespace": tftypes.String, + "pass_credentials": tftypes.Bool, + "recreate_pods": tftypes.Bool, + "render_subchart_notes": tftypes.Bool, + "replace": tftypes.Bool, + "repository": tftypes.String, + "repository_ca_file": tftypes.String, + "repository_cert_file": tftypes.String, + "repository_key_file": tftypes.String, + "repository_password": tftypes.String, + "repository_username": tftypes.String, + "reset_values": tftypes.Bool, + "reuse_values": tftypes.Bool, + "skip_crds": tftypes.Bool, + "status": tftypes.String, + "timeout": tftypes.Number, + "upgrade_install": tftypes.String, + "values": tftypes.List{ElementType: tftypes.String}, + "verify": tftypes.Bool, + "version": tftypes.String, + "wait": tftypes.Bool, + "wait_for_jobs": tftypes.Bool, + }, + } + + // Unmarshalling the old raw state as old type + oldRawValue, err := req.RawState.Unmarshal(oldType) + if err != nil { + resp.Diagnostics.AddError("Failed to unmarshal prior state", err.Error()) + return + } + + var oldState map[string]tftypes.Value + if err := oldRawValue.As(&oldState); err != nil { + resp.Diagnostics.AddError("Failed to convert old state", err.Error()) + return + } + + // Converting metadata into object + var metadataList []tftypes.Value + if err := oldState["metadata"].As(&metadataList); err != nil || len(metadataList) == 0 { + resp.Diagnostics.AddError("Invalid old metadata format", "Expected a non-empty list") + return + } + + var metadata map[string]tftypes.Value + if err := metadataList[0].As(&metadata); err != nil { + resp.Diagnostics.AddError("Failed to read metadata[0]", err.Error()) + return + } + var postrenderList []tftypes.Value + var prObj map[string]tftypes.Value + + if prVal, ok := oldState["postrender"]; ok && !prVal.IsNull() { + if err := prVal.As(&postrenderList); err == nil && len(postrenderList) > 0 { + if err := postrenderList[0].As(&prObj); err != nil { + resp.Diagnostics.AddError("Failed to read postrender[0]", err.Error()) + return + } + } + } + + if prObj == nil { + prObj = map[string]tftypes.Value{ + "binary_path": tftypes.NewValue(tftypes.String, ""), + "args": tftypes.NewValue(tftypes.List{ElementType: tftypes.String}, []tftypes.Value{}), + } + } + + // Creating new type in FW + newType := tftypes.Object{ + AttributeTypes: map[string]tftypes.Type{ + "metadata": tftypes.Object{ + AttributeTypes: map[string]tftypes.Type{ + "name": tftypes.String, + "namespace": tftypes.String, + "revision": tftypes.Number, + "version": tftypes.String, + "chart": tftypes.String, + "app_version": tftypes.String, + "values": tftypes.String, + "first_deployed": tftypes.Number, + "last_deployed": tftypes.Number, + "notes": tftypes.String, + }, + }, + "postrender": tftypes.Object{ + AttributeTypes: map[string]tftypes.Type{ + "binary_path": tftypes.String, + "args": tftypes.List{ElementType: tftypes.String}, + }, + }, + "set": tftypes.List{ + ElementType: tftypes.Object{ + AttributeTypes: map[string]tftypes.Type{ + "name": tftypes.String, + "value": tftypes.String, + "type": tftypes.String, + }, + }, + }, + "set_list": tftypes.List{ + ElementType: tftypes.Object{ + AttributeTypes: map[string]tftypes.Type{ + "name": tftypes.String, + "value": tftypes.List{ + ElementType: tftypes.String, + }, + }, + }, + }, + "set_sensitive": tftypes.List{ + ElementType: tftypes.Object{ + AttributeTypes: map[string]tftypes.Type{ + "name": tftypes.String, + "value": tftypes.String, + "type": tftypes.String, + }, + }, + }, + "set_wo": tftypes.List{ + ElementType: tftypes.Object{ + AttributeTypes: map[string]tftypes.Type{ + "name": tftypes.String, + "value": tftypes.String, + "type": tftypes.String, + }, + }, + }, + "atomic": tftypes.Bool, + "chart": tftypes.String, + "cleanup_on_fail": tftypes.Bool, + "create_namespace": tftypes.Bool, + "dependency_update": tftypes.Bool, + "description": tftypes.String, + "devel": tftypes.Bool, + "disable_crd_hooks": tftypes.Bool, + "disable_openapi_validation": tftypes.Bool, + "disable_webhooks": tftypes.Bool, + "force_update": tftypes.Bool, + "id": tftypes.String, + "keyring": tftypes.String, + "lint": tftypes.Bool, + "manifest": tftypes.String, + "max_history": tftypes.Number, + "name": tftypes.String, + "namespace": tftypes.String, + "pass_credentials": tftypes.Bool, + "recreate_pods": tftypes.Bool, + "render_subchart_notes": tftypes.Bool, + "replace": tftypes.Bool, + "repository": tftypes.String, + "repository_ca_file": tftypes.String, + "repository_cert_file": tftypes.String, + "repository_key_file": tftypes.String, + "repository_password": tftypes.String, + "repository_username": tftypes.String, + "reset_values": tftypes.Bool, + "reuse_values": tftypes.Bool, + "skip_crds": tftypes.Bool, + "set_wo_revision": tftypes.Number, + "status": tftypes.String, + "timeout": tftypes.Number, + "values": tftypes.List{ElementType: tftypes.String}, + "verify": tftypes.Bool, + "version": tftypes.String, + "wait": tftypes.Bool, + "wait_for_jobs": tftypes.Bool, + }, + } + newValue := tftypes.NewValue(newType, map[string]tftypes.Value{ + "metadata": tftypes.NewValue(newType.AttributeTypes["metadata"], metadata), + "postrender": tftypes.NewValue( + newType.AttributeTypes["postrender"], + prObj, + ), + "set_wo": tftypes.NewValue( + newType.AttributeTypes["set_wo"], + []tftypes.Value{}, + ), + "set_wo_revision": tftypes.NewValue(tftypes.Number, float64(1)), + "atomic": oldState["atomic"], + "chart": oldState["chart"], + "cleanup_on_fail": oldState["cleanup_on_fail"], + "create_namespace": oldState["create_namespace"], + "dependency_update": oldState["dependency_update"], + "description": oldState["description"], + "devel": oldState["devel"], + "disable_crd_hooks": oldState["disable_crd_hooks"], + "disable_openapi_validation": oldState["disable_openapi_validation"], + "disable_webhooks": oldState["disable_webhooks"], + "force_update": oldState["force_update"], + "id": oldState["id"], + "keyring": oldState["keyring"], + "lint": oldState["lint"], + "manifest": oldState["manifest"], + "max_history": oldState["max_history"], + "name": oldState["name"], + "namespace": oldState["namespace"], + "pass_credentials": oldState["pass_credentials"], + "recreate_pods": oldState["recreate_pods"], + "render_subchart_notes": oldState["render_subchart_notes"], + "replace": oldState["replace"], + "repository": oldState["repository"], + "repository_ca_file": oldState["repository_ca_file"], + "repository_cert_file": oldState["repository_cert_file"], + "repository_key_file": oldState["repository_key_file"], + "repository_password": oldState["repository_password"], + "repository_username": oldState["repository_username"], + "reset_values": oldState["reset_values"], + "reuse_values": oldState["reuse_values"], + "set": oldState["set"], + "set_list": oldState["set_list"], + "set_sensitive": oldState["set_sensitive"], + "skip_crds": oldState["skip_crds"], + "status": oldState["status"], + "timeout": oldState["timeout"], + "values": oldState["values"], + "verify": oldState["verify"], + "version": oldState["version"], + "wait": oldState["wait"], + "wait_for_jobs": oldState["wait_for_jobs"], + }) + + dv, err := tfprotov6.NewDynamicValue(newType, newValue) + if err != nil { + resp.Diagnostics.AddError("Failed to construct upgraded state", err.Error()) + return + } + // Providing a message to the user, informing there state has been migrated to the current framework strucuture + resp.Diagnostics.AddWarning("UpgradeState Triggered", "Successfully migrated state from SDKv2 to Plugin Framework") + + resp.DynamicValue = &dv + }, + }, + } +} diff --git a/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release_stateupgrader_test.go b/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release_stateupgrader_test.go new file mode 100644 index 0000000..654f6f4 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/resource_helm_release_stateupgrader_test.go @@ -0,0 +1,215 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + +package helm + +import ( + "fmt" + "testing" + + "github.com/hashicorp/terraform-plugin-testing/helper/resource" +) + +func TestAccHelmRelease_Upgrade_MetadataStructure(t *testing.T) { + name := randName("upgrade") + namespace := "default" + resourceName := "helm_release.test" + + resource.ParallelTest(t, resource.TestCase{ + Steps: []resource.TestStep{ + // Step 1: Apply using SDKv2 (v2.17.0) + { + ExternalProviders: map[string]resource.ExternalProvider{ + "helm": { + Source: "hashicorp/helm", + VersionConstraint: "=2.17.0", + }, + }, + Config: fmt.Sprintf(` +resource "helm_release" "test" { + name = "%s" + namespace = "%s" + repository = "https://charts.bitnami.com/bitnami" + chart = "nginx" + version = "15.0.0" + wait = false +} +`, name, namespace), + Check: resource.ComposeAggregateTestCheckFunc( + resource.TestCheckResourceAttr(resourceName, "metadata.0.name", name), + resource.TestCheckResourceAttr(resourceName, "metadata.0.namespace", namespace), + resource.TestCheckResourceAttr(resourceName, "metadata.0.chart", "nginx"), + resource.TestCheckResourceAttr(resourceName, "metadata.0.version", "15.0.0"), + resource.TestCheckResourceAttr(resourceName, "metadata.0.app_version", "1.25.0"), + resource.TestCheckResourceAttr(resourceName, "status", "deployed"), + resource.TestCheckResourceAttrSet(resourceName, "metadata.0.notes"), + resource.TestCheckResourceAttrSet(resourceName, "metadata.0.first_deployed"), + resource.TestCheckResourceAttrSet(resourceName, "metadata.0.last_deployed"), + resource.TestCheckResourceAttr(resourceName, "metadata.0.revision", "1"), + resource.TestCheckResourceAttr(resourceName, "metadata.0.values", "{}"), + ), + }, + + // Step 2: Reapply using Plugin Framework + { + ProtoV6ProviderFactories: protoV6ProviderFactories(), + Config: fmt.Sprintf(` +resource "helm_release" "test" { + name = "%s" + namespace = "%s" + repository = "https://charts.bitnami.com/bitnami" + chart = "nginx" + version = "15.0.0" + wait = false +} +`, name, namespace), + // Checking if strucuture of metadata has been migrated to plugin framework strucuture + Check: resource.ComposeAggregateTestCheckFunc( + resource.TestCheckResourceAttr(resourceName, "metadata.name", name), + resource.TestCheckResourceAttr(resourceName, "metadata.namespace", namespace), + resource.TestCheckResourceAttr(resourceName, "metadata.chart", "nginx"), + resource.TestCheckResourceAttr(resourceName, "metadata.version", "15.0.0"), + resource.TestCheckResourceAttr(resourceName, "metadata.app_version", "1.25.0"), + resource.TestCheckResourceAttr(resourceName, "status", "deployed"), + resource.TestCheckResourceAttrSet(resourceName, "metadata.notes"), + resource.TestCheckResourceAttrSet(resourceName, "metadata.first_deployed"), + resource.TestCheckResourceAttrSet(resourceName, "metadata.last_deployed"), + resource.TestCheckResourceAttr(resourceName, "metadata.revision", "2"), + ), + }, + }, + }) +} + +func TestAccHelmRelease_Upgrade_values(t *testing.T) { + // regression test, see: https://github.com/hashicorp/terraform-provider-helm/issues/1637 + + name := randName("upgrade") + namespace := "default" + resourceName := "helm_release.test" + + resource.ParallelTest(t, resource.TestCase{ + Steps: []resource.TestStep{ + { + ExternalProviders: map[string]resource.ExternalProvider{ + "helm": { + Source: "hashicorp/helm", + VersionConstraint: "=2.17.0", + }, + }, + Config: fmt.Sprintf(` +resource "helm_release" "test" { + name = "%s" + namespace = "%s" + repository = "https://charts.bitnami.com/bitnami" + chart = "nginx" + version = "15.0.0" + wait = false + values = [ +< ")[1], ":")[1]) + ociRegistryURL := fmt.Sprintf("oci://localhost:%s/helm-charts", ociRegistryPort) + + t.Log("OCI registry started at", ociRegistryURL) + + // package chart + t.Log("packaging test-chart") + cmd = exec.Command(helmPath, "package", "testdata/charts/test-chart") + out, err = cmd.CombinedOutput() + t.Log(string(out)) + if err != nil { + t.Errorf("Failed to package chart: %v", err) + return "", nil + } + + if usepassword { + // log into OCI registry + t.Log("logging in to test-chart to OCI registry") + cmd = exec.Command(helmPath, "registry", "login", + fmt.Sprintf("localhost:%s", ociRegistryPort), + "--username", "hashicorp", + "--password", "terraform") + out, err = cmd.CombinedOutput() + t.Log(string(out)) + if err != nil { + t.Errorf("Failed to login to OCI registry: %v", err) + return "", nil + } + } + + // push chart to OCI registry + t.Log("pushing test-chart to OCI registry") + cmd = exec.Command(helmPath, "push", + "test-chart-1.2.3.tgz", + ociRegistryURL) + out, err = cmd.CombinedOutput() + t.Log(string(out)) + if err != nil { + t.Errorf("Failed to push chart: %v", err) + return "", nil + } + + return ociRegistryURL, func() { + t.Log("stopping OCI registry") + cmd := exec.Command(dockerPath, "rm", + "--force", registryContainerName) + out, err := cmd.CombinedOutput() + t.Log(string(out)) + if err != nil { + t.Errorf("Failed to stop OCI registry: %v", err) + } + } +} + +func TestAccResourceRelease_OCI_repository(t *testing.T) { + name := randName("oci") + namespace := createRandomNamespace(t) + defer deleteNamespace(t, namespace) + + ociRegistryURL, shutdown := setupOCIRegistry(t, false) + defer shutdown() + + resource.Test(t, resource.TestCase{ + //PreCheck: func() { + // testAccPreCheck(t) + //}, + ProtoV6ProviderFactories: protoV6ProviderFactories(), + // CheckDestroy: testAccCheckHelmReleaseDestroy(namespace), + Steps: []resource.TestStep{ + { + Config: testAccHelmReleaseConfig_OCI(testResourceName, namespace, name, ociRegistryURL, "1.2.3"), + Check: resource.ComposeAggregateTestCheckFunc( + resource.TestCheckResourceAttr("helm_release.test", "metadata.name", name), + resource.TestCheckResourceAttr("helm_release.test", "metadata.namespace", namespace), + resource.TestCheckResourceAttr("helm_release.test", "metadata.version", "1.2.3"), + resource.TestCheckResourceAttr("helm_release.test", "status", release.StatusDeployed.String()), + ), + }, + { + Config: testAccHelmReleaseConfig_OCI_updated(testResourceName, namespace, name, ociRegistryURL, "1.2.3"), + Check: resource.ComposeAggregateTestCheckFunc( + resource.TestCheckResourceAttr("helm_release.test", "metadata.name", name), + resource.TestCheckResourceAttr("helm_release.test", "metadata.namespace", namespace), + resource.TestCheckResourceAttr("helm_release.test", "metadata.version", "1.2.3"), + resource.TestCheckResourceAttr("helm_release.test", "status", release.StatusDeployed.String()), + resource.TestCheckResourceAttr("helm_release.test", "set.0.name", "replicaCount"), + resource.TestCheckResourceAttr("helm_release.test", "set.0.value", "2"), + ), + }, + { + Config: testAccHelmReleaseConfig_OCI_chartName(testResourceName, namespace, name, fmt.Sprintf("%s/%s", ociRegistryURL, "test-chart"), "1.2.3"), + Check: resource.ComposeAggregateTestCheckFunc( + resource.TestCheckResourceAttr("helm_release.test", "metadata.name", name), + resource.TestCheckResourceAttr("helm_release.test", "metadata.namespace", namespace), + resource.TestCheckResourceAttr("helm_release.test", "metadata.version", "1.2.3"), + resource.TestCheckResourceAttr("helm_release.test", "status", release.StatusDeployed.String()), + resource.TestCheckResourceAttr("helm_release.test", "chart", fmt.Sprintf("%s/%s", ociRegistryURL, "test-chart")), + ), + }, + }, + }) +} + +// passes but make sure to change attributes in the config to single instead of list nested attribute +func TestAccResourceRelease_OCI_registry_login(t *testing.T) { + name := randName("oci") + namespace := createRandomNamespace(t) + defer deleteNamespace(t, namespace) + + ociRegistryURL, shutdown := setupOCIRegistry(t, false) + defer shutdown() + + resource.Test(t, resource.TestCase{ + //PreCheck: func() { + // testAccPreCheck(t) + //}, + ProtoV6ProviderFactories: protoV6ProviderFactories(), + // CheckDestroy: testAccCheckHelmReleaseDestroy(namespace), + Steps: []resource.TestStep{ + { + Config: testAccHelmReleaseConfig_OCI_login_provider(os.Getenv("KUBE_CONFIG_PATH"), testResourceName, namespace, name, ociRegistryURL, "1.2.3", "hashicorp", "terraform", "test-chart"), + Check: resource.ComposeAggregateTestCheckFunc( + resource.TestCheckResourceAttr("helm_release.test", "metadata.name", name), + resource.TestCheckResourceAttr("helm_release.test", "metadata.namespace", namespace), + resource.TestCheckResourceAttr("helm_release.test", "metadata.version", "1.2.3"), + resource.TestCheckResourceAttr("helm_release.test", "status", release.StatusDeployed.String()), + ), + }, + }, + }) +} + +func testAccHelmReleaseConfig_OCI_login_provider(kubeconfig, resource, ns, name, repo, version, username, password, chart string) string { + return fmt.Sprintf(` +provider "helm" { + kubernetes = { + config_path = "%s" + } + registries = [{ + url = "%s" + username = "%s" + password = "%s" + }] +} + +resource "helm_release" "%s" { + name = "%s" + namespace = "%s" + version = "%s" + repository = "%s" + chart = "%s" +}`, kubeconfig, repo, username, password, resource, name, ns, version, repo, chart) +} + +func TestAccResourceRelease_OCI_login(t *testing.T) { + name := randName("oci") + namespace := createRandomNamespace(t) + defer deleteNamespace(t, namespace) + + ociRegistryURL, shutdown := setupOCIRegistry(t, true) + defer shutdown() + + resource.Test(t, resource.TestCase{ + //PreCheck: func() { + //testAccPreCheck(t) + //}, + ProtoV6ProviderFactories: protoV6ProviderFactories(), + // CheckDestroy: testAccCheckHelmReleaseDestroy(namespace), + Steps: []resource.TestStep{ + { + Config: testAccHelmReleaseConfig_OCI_login_multiple(testResourceName, namespace, name, ociRegistryURL, "1.2.3", "hashicorp", "terraform"), + Check: resource.ComposeAggregateTestCheckFunc( + resource.TestCheckResourceAttr("helm_release.test1", "metadata.name", name+"1"), + resource.TestCheckResourceAttr("helm_release.test1", "metadata.namespace", namespace), + resource.TestCheckResourceAttr("helm_release.test1", "metadata.version", "1.2.3"), + resource.TestCheckResourceAttr("helm_release.test1", "status", release.StatusDeployed.String()), + resource.TestCheckResourceAttr("helm_release.test2", "metadata.name", name+"2"), + resource.TestCheckResourceAttr("helm_release.test2", "metadata.namespace", namespace), + resource.TestCheckResourceAttr("helm_release.test2", "metadata.version", "1.2.3"), + resource.TestCheckResourceAttr("helm_release.test2", "status", release.StatusDeployed.String()), + ), + }, + }, + }) +} + +func TestAccResourceRelease_recomputeMetadata(t *testing.T) { + name := randName("basic") + namespace := createRandomNamespace(t) + defer deleteNamespace(t, namespace) + + resource.Test(t, resource.TestCase{ + // PreCheck: func() { testAccPreCheck(t) }, + ProtoV6ProviderFactories: protoV6ProviderFactories(), + ExternalProviders: map[string]resource.ExternalProvider{ + "local": { + Source: "hashicorp/local", + }, + }, + // CheckDestroy: testAccCheckHelmReleaseDestroy(namespace), + Steps: []resource.TestStep{ + { + Config: testAccHelmReleaseRecomputeMetadata(testResourceName, namespace, name), + Check: resource.ComposeAggregateTestCheckFunc( + resource.TestCheckResourceAttr("helm_release.test", "metadata.name", name), + resource.TestCheckResourceAttr("helm_release.test", "metadata.namespace", namespace), + resource.TestCheckResourceAttr("helm_release.test", "metadata.revision", "1"), + resource.TestCheckResourceAttr("helm_release.test", "status", release.StatusDeployed.String()), + resource.TestCheckResourceAttr("helm_release.test", "metadata.version", "2.0.0"), + resource.TestCheckResourceAttr("helm_release.test", "set.%", "0"), + ), + }, + { + Config: testAccHelmReleaseRecomputeMetadataSet(testResourceName, namespace, name), + Check: resource.ComposeAggregateTestCheckFunc( + resource.TestCheckResourceAttr("helm_release.test", "metadata.version", "2.0.0"), + resource.TestCheckResourceAttr("helm_release.test", "status", release.StatusDeployed.String()), + resource.TestCheckResourceAttr("helm_release.test", "set.0.name", "test"), + resource.TestCheckResourceAttr("helm_release.test", "set.0.value", "test"), + ), + }, + { + Config: testAccHelmReleaseRecomputeMetadataSet(testResourceName, namespace, name), + PlanOnly: true, + }, + }, + }) +} + +func testAccHelmReleaseConfig_OCI(resource, ns, name, repo, version string) string { + return fmt.Sprintf(` + resource "helm_release" "%s" { + name = %q + namespace = %q + repository = %q + version = %q + chart = "test-chart" + } + `, resource, name, ns, repo, version) +} + +func testAccHelmReleaseConfig_OCI_login_multiple(resource, ns, name, repo, version, username, password string) string { + return fmt.Sprintf(` + resource "helm_release" "%s1" { + name = "%s1" + namespace = %q + repository = %q + version = %q + chart = "test-chart" + + repository_username = %q + repository_password = %q + } + resource "helm_release" "%[1]s2" { + name = "%[2]s2" + namespace = %[3]q + repository = %[4]q + version = %[5]q + chart = "test-chart" + + repository_username = %[6]q + repository_password = %[7]q + } + `, resource, name, ns, repo, version, username, password) +} + +func testAccHelmReleaseConfig_OCI_chartName(resource, ns, name, chartName, version string) string { + return fmt.Sprintf(` + resource "helm_release" "%s" { + name = %q + namespace = %q + version = %q + chart = %q + } + `, resource, name, ns, version, chartName) +} + +func testAccHelmReleaseConfig_OCI_updated(resource, ns, name, repo, version string) string { + return fmt.Sprintf(` + resource "helm_release" "%s" { + name = %q + namespace = %q + repository = %q + version = %q + chart = "test-chart" + + set = [ + { + name = "replicaCount" + value = 2 + } + ] + } + `, resource, name, ns, repo, version) +} + +func testAccHelmReleaseConfigManifestExperimentEnabled(resource, ns, name, version string) string { + return fmt.Sprintf(` + provider "helm" { + experiments = { + manifest = true + } + } + + resource "helm_release" "%s" { + name = %q + namespace = %q + repository = %q + version = %q + chart = "test-chart" + } + `, resource, name, ns, testRepositoryURL, version) +} + +func testAccHelmReleaseConfigManifestUnknownValues(resource, ns, name, version string) string { + return fmt.Sprintf(` + provider helm { + experiments = { + manifest = true + } + } + + resource "random_string" "random_label" { + length = 16 + special = false + } + + resource "helm_release" "%s" { + name = %q + namespace = %q + repository = %q + version = %q + chart = "test-chart" + + set = [ + { + name = "podAnnotations.random" + value = random_string.random_label.result + } + ] + + set_sensitive = [ + { + name = "podAnnotations.sensitive" + value = random_string.random_label.result + } + ] + + values = [< /dev/null +if [ "$?" != "0" ]; then + echo "Error: Docker not found" + exit 1 +fi +if [ "$KUBE_DIR" == "" ]; then + echo "Error: Please specify KUBE_DIR" + exit 1 +fi +if [ "$HELM_VERSION" == "" ]; then + echo "Error: Please specify HELM_VERSION" + exit 1 +fi +if [ "$HELM_HOME" == "" ]; then + HELM_HOME=~/.helm +fi +if [ "$HYPERKUBE_VERSION" == "" ]; then + URL="https://console.cloud.google.com/gcr/images/google-containers/GLOBAL/hyperkube" + echo "Error: Please specify HYPERKUBE_VERSION" + echo " - Available versions: $URL" + exit 1 +fi + +echo "HELM_HOME=${HELM_HOME}" + +docker version + +DOCKER_KUBECTL="docker run -i --rm \ + -v ${KUBE_DIR}:/root/.kube \ + gcr.io/google-containers/hyperkube:${HYPERKUBE_VERSION} \ + kubectl" + +$DOCKER_KUBECTL version + +echo "Creating Tiller service account ..." +$DOCKER_KUBECTL --namespace kube-system create sa tiller + +echo "Creating ClusterRoleBinding for Tiller ..." +$DOCKER_KUBECTL create clusterrolebinding tiller \ + --clusterrole cluster-admin \ + --serviceaccount=kube-system:tiller + +mkdir -p $HELM_HOME +ls -la $HELM_HOME +DOCKER_HELM="docker run -i --rm \ + -v $(pwd):/apps \ + -v ${HELM_HOME}:/.helm \ + -v ${KUBE_DIR}:/.kube \ + --user $(id -u):$(id -g) \ + alpine/helm:${HELM_VERSION}" + +echo "Helm client version:" +$DOCKER_HELM version -c + +echo "Initializing Helm ..." +$DOCKER_HELM init --service-account tiller + +echo "Verifying Helm ..." +$DOCKER_KUBECTL get deploy,svc tiller-deploy -n kube-system diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/.gitingore b/shuttles/terraform/terraform-provider-helm/helm/testdata/.gitingore new file mode 100644 index 0000000..71febe4 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/.gitingore @@ -0,0 +1,2 @@ +# we build and delete the repository on every test run +repository/ \ No newline at end of file diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/broken-chart/Chart.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/broken-chart/Chart.yaml new file mode 100644 index 0000000..3220bfb --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/broken-chart/Chart.yaml @@ -0,0 +1,6 @@ +apiVersion: v2 +name: broken-chart +description: A broken chart for testing the Helm provider +type: application +version: 1.2.3 +appVersion: 1.2.3 diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/broken-chart/templates/service.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/broken-chart/templates/service.yaml new file mode 100644 index 0000000..7d3cc57 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/broken-chart/templates/service.yaml @@ -0,0 +1,13 @@ +apiVersion: v1 +kind: Service +metadata: + name: test +spec: + type: NodePort + ports: + - port: 80 + targetPort: http + protocol: TCP + name: http + selector: + {{- BAD_FUNCTION }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/.helmignore b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/.helmignore new file mode 100644 index 0000000..0e8a0eb --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*.orig +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/Chart.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/Chart.yaml new file mode 100644 index 0000000..eb91b96 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/Chart.yaml @@ -0,0 +1,23 @@ +apiVersion: v2 +name: crds-chart +description: This is a simple chart to use as a test fixture + +# A chart can be either an 'application' or a 'library' chart. +# +# Application charts are a collection of templates that can be packaged into versioned archives +# to be deployed. +# +# Library charts provide useful utilities or functions for the chart developer. They're included as +# a dependency of application charts to inject those utilities and functions into the rendering +# pipeline. Library charts do not define any templates and therefore cannot be deployed. +type: application + +# This is the chart version. This version number should be incremented each time you make changes +# to the chart and its templates, including the app version. +# Versions are expected to follow Semantic Versioning (https://semver.org/) +version: 1.2.3 + +# This is the version number of the application being deployed. This version number should be +# incremented each time you make changes to the application. Versions are not expected to +# follow Semantic Versioning. They should reflect the version the application is using. +appVersion: 1.19.5 diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/crds/apples.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/crds/apples.yaml new file mode 100644 index 0000000..556e4a3 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/crds/apples.yaml @@ -0,0 +1,41 @@ +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + # name must match the spec fields below, and be in the form: . + name: apples.stable.example.com +spec: + # group name to use for REST API: /apis// + group: stable.example.com + # list of versions supported by this CustomResourceDefinition + versions: + - name: v1 + # Each version can be enabled/disabled by Served flag. + served: true + # One and only one version must be marked as the storage version. + storage: true + schema: + openAPIV3Schema: + type: object + properties: + spec: + type: object + properties: + cronSpec: + type: string + image: + type: string + replicas: + type: integer + # either Namespaced or Cluster + scope: Namespaced + names: + # plural name to be used in the URL: /apis/// + plural: apples + # singular name to be used as an alias on the CLI and for display + singular: apple + # kind is normally the CamelCased singular type. Your resource manifests use this. + kind: Apple + # shortNames allow shorter string to match your resource on the CLI + shortNames: + - ap diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/crds/oranges.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/crds/oranges.yaml new file mode 100644 index 0000000..5c444bb --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/crds/oranges.yaml @@ -0,0 +1,41 @@ +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + # name must match the spec fields below, and be in the form: . + name: oranges.stable.example.com +spec: + # group name to use for REST API: /apis// + group: stable.example.com + # list of versions supported by this CustomResourceDefinition + versions: + - name: v1 + # Each version can be enabled/disabled by Served flag. + served: true + # One and only one version must be marked as the storage version. + storage: true + schema: + openAPIV3Schema: + type: object + properties: + spec: + type: object + properties: + cronSpec: + type: string + image: + type: string + replicas: + type: integer + # either Namespaced or Cluster + scope: Namespaced + names: + # plural name to be used in the URL: /apis/// + plural: oranges + # singular name to be used as an alias on the CLI and for display + singular: orange + # kind is normally the CamelCased singular type. Your resource manifests use this. + kind: Orange + # shortNames allow shorter string to match your resource on the CLI + shortNames: + - or diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/NOTES.txt b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/NOTES.txt new file mode 100644 index 0000000..0b1a16d --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/NOTES.txt @@ -0,0 +1,21 @@ +1. Get the application URL by running these commands: +{{- if .Values.ingress.enabled }} +{{- range $host := .Values.ingress.hosts }} + {{- range .paths }} + http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ . }} + {{- end }} +{{- end }} +{{- else if contains "NodePort" .Values.service.type }} + export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "test-chart.fullname" . }}) + export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") + echo http://$NODE_IP:$NODE_PORT +{{- else if contains "LoadBalancer" .Values.service.type }} + NOTE: It may take a few minutes for the LoadBalancer IP to be available. + You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "test-chart.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "test-chart.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}") + echo http://$SERVICE_IP:{{ .Values.service.port }} +{{- else if contains "ClusterIP" .Values.service.type }} + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "test-chart.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") + echo "Visit http://127.0.0.1:8080 to use your application" + kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:80 +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/_helpers.tpl b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/_helpers.tpl new file mode 100644 index 0000000..7b311a7 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/_helpers.tpl @@ -0,0 +1,62 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "test-chart.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "test-chart.fullname" -}} +{{- if .Values.fullnameOverride }} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- $name := default .Chart.Name .Values.nameOverride }} +{{- if contains $name .Release.Name }} +{{- .Release.Name | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} +{{- end }} +{{- end }} +{{- end }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "test-chart.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "test-chart.labels" -}} +helm.sh/chart: {{ include "test-chart.chart" . }} +{{ include "test-chart.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "test-chart.selectorLabels" -}} +app.kubernetes.io/name: {{ include "test-chart.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "test-chart.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "test-chart.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/configmaps.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/configmaps.yaml new file mode 100644 index 0000000..e4f612f --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/configmaps.yaml @@ -0,0 +1,18 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "test-chart.fullname" . }}-one + labels: + {{- include "test-chart.labels" . | nindent 4 }} +data: + test: one + +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "test-chart.fullname" . }}-two + labels: + {{- include "test-chart.labels" . | nindent 4 }} +data: + test: two diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/deployment.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/deployment.yaml new file mode 100644 index 0000000..91e453b --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/deployment.yaml @@ -0,0 +1,61 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "test-chart.fullname" . }} + labels: + {{- include "test-chart.labels" . | nindent 4 }} +spec: +{{- if not .Values.autoscaling.enabled }} + replicas: {{ .Values.replicaCount }} +{{- end }} + selector: + matchLabels: + {{- include "test-chart.selectorLabels" . | nindent 6 }} + template: + metadata: + {{- with .Values.podAnnotations }} + annotations: + {{- toYaml . | nindent 8 }} + {{- end }} + labels: + {{- include "test-chart.selectorLabels" . | nindent 8 }} + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + serviceAccountName: {{ include "test-chart.serviceAccountName" . }} + securityContext: + {{- toYaml .Values.podSecurityContext | nindent 8 }} + containers: + - name: {{ .Chart.Name }} + securityContext: + {{- toYaml .Values.securityContext | nindent 12 }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + ports: + - name: http + containerPort: 80 + protocol: TCP + livenessProbe: + httpGet: + path: / + port: http + readinessProbe: + httpGet: + path: / + port: http + resources: + {{- toYaml .Values.resources | nindent 12 }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/hpa.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/hpa.yaml new file mode 100644 index 0000000..4642327 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/hpa.yaml @@ -0,0 +1,28 @@ +{{- if .Values.autoscaling.enabled }} +apiVersion: autoscaling/v2beta1 +kind: HorizontalPodAutoscaler +metadata: + name: {{ include "test-chart.fullname" . }} + labels: + {{- include "test-chart.labels" . | nindent 4 }} +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: {{ include "test-chart.fullname" . }} + minReplicas: {{ .Values.autoscaling.minReplicas }} + maxReplicas: {{ .Values.autoscaling.maxReplicas }} + metrics: + {{- if .Values.autoscaling.targetCPUUtilizationPercentage }} + - type: Resource + resource: + name: cpu + targetAverageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }} + {{- end }} + {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }} + - type: Resource + resource: + name: memory + targetAverageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }} + {{- end }} +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/ingress.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/ingress.yaml new file mode 100644 index 0000000..95c5936 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/ingress.yaml @@ -0,0 +1,41 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullName := include "test-chart.fullname" . -}} +{{- $svcPort := .Values.service.port -}} +{{- if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}} +apiVersion: networking.k8s.io/v1beta1 +{{- else -}} +apiVersion: extensions/v1beta1 +{{- end }} +kind: Ingress +metadata: + name: {{ $fullName }} + labels: + {{- include "test-chart.labels" . | nindent 4 }} + {{- with .Values.ingress.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +spec: + {{- if .Values.ingress.tls }} + tls: + {{- range .Values.ingress.tls }} + - hosts: + {{- range .hosts }} + - {{ . | quote }} + {{- end }} + secretName: {{ .secretName }} + {{- end }} + {{- end }} + rules: + {{- range .Values.ingress.hosts }} + - host: {{ .host | quote }} + http: + paths: + {{- range .paths }} + - path: {{ . }} + backend: + serviceName: {{ $fullName }} + servicePort: {{ $svcPort }} + {{- end }} + {{- end }} + {{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/service.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/service.yaml new file mode 100644 index 0000000..b8d5d51 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/service.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "test-chart.fullname" . }} + labels: + {{- include "test-chart.labels" . | nindent 4 }} +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.port }} + targetPort: http + protocol: TCP + name: http + selector: + {{- include "test-chart.selectorLabels" . | nindent 4 }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/serviceaccount.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/serviceaccount.yaml new file mode 100644 index 0000000..85ea1e1 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/serviceaccount.yaml @@ -0,0 +1,12 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "test-chart.serviceAccountName" . }} + labels: + {{- include "test-chart.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/tests/test-connection.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/tests/test-connection.yaml new file mode 100644 index 0000000..772f913 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/templates/tests/test-connection.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Pod +metadata: + name: "{{ include "test-chart.fullname" . }}-test-connection" + labels: + {{- include "test-chart.labels" . | nindent 4 }} + annotations: + "helm.sh/hook": test-success +spec: + containers: + - name: wget + image: busybox + command: ['wget'] + args: ['{{ include "test-chart.fullname" . }}:{{ .Values.service.port }}'] + restartPolicy: Never diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/values.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/values.yaml new file mode 100644 index 0000000..d009b4a --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/crds-chart/values.yaml @@ -0,0 +1,79 @@ +# Default values for test-chart. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: nginx + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: "" + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +serviceAccount: + # Specifies whether a service account should be created + create: true + # Annotations to add to the service account + annotations: {} + # The name of the service account to use. + # If not set and create is true, a name is generated using the fullname template + name: "" + +podAnnotations: {} + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +service: + type: ClusterIP + port: 80 + +ingress: + enabled: false + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + hosts: + - host: chart-example.local + paths: [] + tls: [] + # - secretName: chart-example-tls + # hosts: + # - chart-example.local + +resources: {} + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 100 + targetCPUUtilizationPercentage: 80 + # targetMemoryUtilizationPercentage: 80 + +nodeSelector: {} + +tolerations: [] + +affinity: {} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/.helmignore b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/.helmignore new file mode 100644 index 0000000..0e8a0eb --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*.orig +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/Chart.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/Chart.yaml new file mode 100644 index 0000000..a860d42 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/Chart.yaml @@ -0,0 +1,23 @@ +apiVersion: v2 +name: dependency-bar +description: A Helm chart for Kubernetes + +# A chart can be either an 'application' or a 'library' chart. +# +# Application charts are a collection of templates that can be packaged into versioned archives +# to be deployed. +# +# Library charts provide useful utilities or functions for the chart developer. They're included as +# a dependency of application charts to inject those utilities and functions into the rendering +# pipeline. Library charts do not define any templates and therefore cannot be deployed. +type: application + +# This is the chart version. This version number should be incremented each time you make changes +# to the chart and its templates, including the app version. +# Versions are expected to follow Semantic Versioning (https://semver.org/) +version: 0.1.0 + +# This is the version number of the application being deployed. This version number should be +# incremented each time you make changes to the application. Versions are not expected to +# follow Semantic Versioning. They should reflect the version the application is using. +appVersion: 1.16.0 diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/NOTES.txt b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/NOTES.txt new file mode 100644 index 0000000..a809efd --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/NOTES.txt @@ -0,0 +1,21 @@ +1. Get the application URL by running these commands: +{{- if .Values.ingress.enabled }} +{{- range $host := .Values.ingress.hosts }} + {{- range .paths }} + http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ . }} + {{- end }} +{{- end }} +{{- else if contains "NodePort" .Values.service.type }} + export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "dependency-bar.fullname" . }}) + export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") + echo http://$NODE_IP:$NODE_PORT +{{- else if contains "LoadBalancer" .Values.service.type }} + NOTE: It may take a few minutes for the LoadBalancer IP to be available. + You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "dependency-bar.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "dependency-bar.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}") + echo http://$SERVICE_IP:{{ .Values.service.port }} +{{- else if contains "ClusterIP" .Values.service.type }} + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "dependency-bar.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") + echo "Visit http://127.0.0.1:8080 to use your application" + kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:80 +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/_helpers.tpl b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/_helpers.tpl new file mode 100644 index 0000000..ee45d87 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/_helpers.tpl @@ -0,0 +1,62 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "dependency-bar.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "dependency-bar.fullname" -}} +{{- if .Values.fullnameOverride }} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- $name := default .Chart.Name .Values.nameOverride }} +{{- if contains $name .Release.Name }} +{{- .Release.Name | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} +{{- end }} +{{- end }} +{{- end }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "dependency-bar.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "dependency-bar.labels" -}} +helm.sh/chart: {{ include "dependency-bar.chart" . }} +{{ include "dependency-bar.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "dependency-bar.selectorLabels" -}} +app.kubernetes.io/name: {{ include "dependency-bar.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "dependency-bar.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "dependency-bar.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/deployment.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/deployment.yaml new file mode 100644 index 0000000..9d7b4b1 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/deployment.yaml @@ -0,0 +1,61 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "dependency-bar.fullname" . }} + labels: + {{- include "dependency-bar.labels" . | nindent 4 }} +spec: +{{- if not .Values.autoscaling.enabled }} + replicas: {{ .Values.replicaCount }} +{{- end }} + selector: + matchLabels: + {{- include "dependency-bar.selectorLabels" . | nindent 6 }} + template: + metadata: + {{- with .Values.podAnnotations }} + annotations: + {{- toYaml . | nindent 8 }} + {{- end }} + labels: + {{- include "dependency-bar.selectorLabels" . | nindent 8 }} + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + serviceAccountName: {{ include "dependency-bar.serviceAccountName" . }} + securityContext: + {{- toYaml .Values.podSecurityContext | nindent 8 }} + containers: + - name: {{ .Chart.Name }} + securityContext: + {{- toYaml .Values.securityContext | nindent 12 }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + ports: + - name: http + containerPort: 80 + protocol: TCP + livenessProbe: + httpGet: + path: / + port: http + readinessProbe: + httpGet: + path: / + port: http + resources: + {{- toYaml .Values.resources | nindent 12 }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/hpa.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/hpa.yaml new file mode 100644 index 0000000..9e6b9c5 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/hpa.yaml @@ -0,0 +1,28 @@ +{{- if .Values.autoscaling.enabled }} +apiVersion: autoscaling/v2beta1 +kind: HorizontalPodAutoscaler +metadata: + name: {{ include "dependency-bar.fullname" . }} + labels: + {{- include "dependency-bar.labels" . | nindent 4 }} +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: {{ include "dependency-bar.fullname" . }} + minReplicas: {{ .Values.autoscaling.minReplicas }} + maxReplicas: {{ .Values.autoscaling.maxReplicas }} + metrics: + {{- if .Values.autoscaling.targetCPUUtilizationPercentage }} + - type: Resource + resource: + name: cpu + targetAverageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }} + {{- end }} + {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }} + - type: Resource + resource: + name: memory + targetAverageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }} + {{- end }} +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/ingress.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/ingress.yaml new file mode 100644 index 0000000..0e80848 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/ingress.yaml @@ -0,0 +1,41 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullName := include "dependency-bar.fullname" . -}} +{{- $svcPort := .Values.service.port -}} +{{- if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}} +apiVersion: networking.k8s.io/v1beta1 +{{- else -}} +apiVersion: extensions/v1beta1 +{{- end }} +kind: Ingress +metadata: + name: {{ $fullName }} + labels: + {{- include "dependency-bar.labels" . | nindent 4 }} + {{- with .Values.ingress.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +spec: + {{- if .Values.ingress.tls }} + tls: + {{- range .Values.ingress.tls }} + - hosts: + {{- range .hosts }} + - {{ . | quote }} + {{- end }} + secretName: {{ .secretName }} + {{- end }} + {{- end }} + rules: + {{- range .Values.ingress.hosts }} + - host: {{ .host | quote }} + http: + paths: + {{- range .paths }} + - path: {{ . }} + backend: + serviceName: {{ $fullName }} + servicePort: {{ $svcPort }} + {{- end }} + {{- end }} + {{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/service.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/service.yaml new file mode 100644 index 0000000..7c22313 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/service.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "dependency-bar.fullname" . }} + labels: + {{- include "dependency-bar.labels" . | nindent 4 }} +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.port }} + targetPort: http + protocol: TCP + name: http + selector: + {{- include "dependency-bar.selectorLabels" . | nindent 4 }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/serviceaccount.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/serviceaccount.yaml new file mode 100644 index 0000000..9002046 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/serviceaccount.yaml @@ -0,0 +1,12 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "dependency-bar.serviceAccountName" . }} + labels: + {{- include "dependency-bar.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/tests/test-connection.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/tests/test-connection.yaml new file mode 100644 index 0000000..a599081 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/templates/tests/test-connection.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Pod +metadata: + name: "{{ include "dependency-bar.fullname" . }}-test-connection" + labels: + {{- include "dependency-bar.labels" . | nindent 4 }} + annotations: + "helm.sh/hook": test-success +spec: + containers: + - name: wget + image: busybox + command: ['wget'] + args: ['{{ include "dependency-bar.fullname" . }}:{{ .Values.service.port }}'] + restartPolicy: Never diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/values.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/values.yaml new file mode 100644 index 0000000..7c81bea --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-bar/values.yaml @@ -0,0 +1,79 @@ +# Default values for dependency-bar. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: nginx + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: "" + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +serviceAccount: + # Specifies whether a service account should be created + create: true + # Annotations to add to the service account + annotations: {} + # The name of the service account to use. + # If not set and create is true, a name is generated using the fullname template + name: "" + +podAnnotations: {} + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +service: + type: ClusterIP + port: 80 + +ingress: + enabled: false + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + hosts: + - host: chart-example.local + paths: [] + tls: [] + # - secretName: chart-example-tls + # hosts: + # - chart-example.local + +resources: {} + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 100 + targetCPUUtilizationPercentage: 80 + # targetMemoryUtilizationPercentage: 80 + +nodeSelector: {} + +tolerations: [] + +affinity: {} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/.helmignore b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/.helmignore new file mode 100644 index 0000000..0e8a0eb --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*.orig +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/Chart.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/Chart.yaml new file mode 100644 index 0000000..e21fd6e --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/Chart.yaml @@ -0,0 +1,23 @@ +apiVersion: v2 +name: dependency-foo +description: A Helm chart for Kubernetes + +# A chart can be either an 'application' or a 'library' chart. +# +# Application charts are a collection of templates that can be packaged into versioned archives +# to be deployed. +# +# Library charts provide useful utilities or functions for the chart developer. They're included as +# a dependency of application charts to inject those utilities and functions into the rendering +# pipeline. Library charts do not define any templates and therefore cannot be deployed. +type: application + +# This is the chart version. This version number should be incremented each time you make changes +# to the chart and its templates, including the app version. +# Versions are expected to follow Semantic Versioning (https://semver.org/) +version: 0.1.0 + +# This is the version number of the application being deployed. This version number should be +# incremented each time you make changes to the application. Versions are not expected to +# follow Semantic Versioning. They should reflect the version the application is using. +appVersion: 1.16.0 diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/NOTES.txt b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/NOTES.txt new file mode 100644 index 0000000..49f6b83 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/NOTES.txt @@ -0,0 +1,21 @@ +1. Get the application URL by running these commands: +{{- if .Values.ingress.enabled }} +{{- range $host := .Values.ingress.hosts }} + {{- range .paths }} + http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ . }} + {{- end }} +{{- end }} +{{- else if contains "NodePort" .Values.service.type }} + export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "dependency-foo.fullname" . }}) + export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") + echo http://$NODE_IP:$NODE_PORT +{{- else if contains "LoadBalancer" .Values.service.type }} + NOTE: It may take a few minutes for the LoadBalancer IP to be available. + You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "dependency-foo.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "dependency-foo.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}") + echo http://$SERVICE_IP:{{ .Values.service.port }} +{{- else if contains "ClusterIP" .Values.service.type }} + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "dependency-foo.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") + echo "Visit http://127.0.0.1:8080 to use your application" + kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:80 +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/_helpers.tpl b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/_helpers.tpl new file mode 100644 index 0000000..ed077d4 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/_helpers.tpl @@ -0,0 +1,62 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "dependency-foo.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "dependency-foo.fullname" -}} +{{- if .Values.fullnameOverride }} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- $name := default .Chart.Name .Values.nameOverride }} +{{- if contains $name .Release.Name }} +{{- .Release.Name | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} +{{- end }} +{{- end }} +{{- end }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "dependency-foo.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "dependency-foo.labels" -}} +helm.sh/chart: {{ include "dependency-foo.chart" . }} +{{ include "dependency-foo.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "dependency-foo.selectorLabels" -}} +app.kubernetes.io/name: {{ include "dependency-foo.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "dependency-foo.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "dependency-foo.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/deployment.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/deployment.yaml new file mode 100644 index 0000000..2327087 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/deployment.yaml @@ -0,0 +1,61 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "dependency-foo.fullname" . }} + labels: + {{- include "dependency-foo.labels" . | nindent 4 }} +spec: +{{- if not .Values.autoscaling.enabled }} + replicas: {{ .Values.replicaCount }} +{{- end }} + selector: + matchLabels: + {{- include "dependency-foo.selectorLabels" . | nindent 6 }} + template: + metadata: + {{- with .Values.podAnnotations }} + annotations: + {{- toYaml . | nindent 8 }} + {{- end }} + labels: + {{- include "dependency-foo.selectorLabels" . | nindent 8 }} + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + serviceAccountName: {{ include "dependency-foo.serviceAccountName" . }} + securityContext: + {{- toYaml .Values.podSecurityContext | nindent 8 }} + containers: + - name: {{ .Chart.Name }} + securityContext: + {{- toYaml .Values.securityContext | nindent 12 }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + ports: + - name: http + containerPort: 80 + protocol: TCP + livenessProbe: + httpGet: + path: / + port: http + readinessProbe: + httpGet: + path: / + port: http + resources: + {{- toYaml .Values.resources | nindent 12 }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/hpa.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/hpa.yaml new file mode 100644 index 0000000..b03f5fc --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/hpa.yaml @@ -0,0 +1,28 @@ +{{- if .Values.autoscaling.enabled }} +apiVersion: autoscaling/v2beta1 +kind: HorizontalPodAutoscaler +metadata: + name: {{ include "dependency-foo.fullname" . }} + labels: + {{- include "dependency-foo.labels" . | nindent 4 }} +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: {{ include "dependency-foo.fullname" . }} + minReplicas: {{ .Values.autoscaling.minReplicas }} + maxReplicas: {{ .Values.autoscaling.maxReplicas }} + metrics: + {{- if .Values.autoscaling.targetCPUUtilizationPercentage }} + - type: Resource + resource: + name: cpu + targetAverageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }} + {{- end }} + {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }} + - type: Resource + resource: + name: memory + targetAverageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }} + {{- end }} +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/ingress.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/ingress.yaml new file mode 100644 index 0000000..f21953f --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/ingress.yaml @@ -0,0 +1,41 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullName := include "dependency-foo.fullname" . -}} +{{- $svcPort := .Values.service.port -}} +{{- if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}} +apiVersion: networking.k8s.io/v1beta1 +{{- else -}} +apiVersion: extensions/v1beta1 +{{- end }} +kind: Ingress +metadata: + name: {{ $fullName }} + labels: + {{- include "dependency-foo.labels" . | nindent 4 }} + {{- with .Values.ingress.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +spec: + {{- if .Values.ingress.tls }} + tls: + {{- range .Values.ingress.tls }} + - hosts: + {{- range .hosts }} + - {{ . | quote }} + {{- end }} + secretName: {{ .secretName }} + {{- end }} + {{- end }} + rules: + {{- range .Values.ingress.hosts }} + - host: {{ .host | quote }} + http: + paths: + {{- range .paths }} + - path: {{ . }} + backend: + serviceName: {{ $fullName }} + servicePort: {{ $svcPort }} + {{- end }} + {{- end }} + {{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/service.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/service.yaml new file mode 100644 index 0000000..f959e6d --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/service.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "dependency-foo.fullname" . }} + labels: + {{- include "dependency-foo.labels" . | nindent 4 }} +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.port }} + targetPort: http + protocol: TCP + name: http + selector: + {{- include "dependency-foo.selectorLabels" . | nindent 4 }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/serviceaccount.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/serviceaccount.yaml new file mode 100644 index 0000000..36503d0 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/serviceaccount.yaml @@ -0,0 +1,12 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "dependency-foo.serviceAccountName" . }} + labels: + {{- include "dependency-foo.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/tests/test-connection.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/tests/test-connection.yaml new file mode 100644 index 0000000..2727580 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/templates/tests/test-connection.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Pod +metadata: + name: "{{ include "dependency-foo.fullname" . }}-test-connection" + labels: + {{- include "dependency-foo.labels" . | nindent 4 }} + annotations: + "helm.sh/hook": test-success +spec: + containers: + - name: wget + image: busybox + command: ['wget'] + args: ['{{ include "dependency-foo.fullname" . }}:{{ .Values.service.port }}'] + restartPolicy: Never diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/values.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/values.yaml new file mode 100644 index 0000000..82b7808 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/dependency-foo/values.yaml @@ -0,0 +1,79 @@ +# Default values for dependency-foo. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: nginx + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: "" + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +serviceAccount: + # Specifies whether a service account should be created + create: true + # Annotations to add to the service account + annotations: {} + # The name of the service account to use. + # If not set and create is true, a name is generated using the fullname template + name: "" + +podAnnotations: {} + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +service: + type: ClusterIP + port: 80 + +ingress: + enabled: false + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + hosts: + - host: chart-example.local + paths: [] + tls: [] + # - secretName: chart-example-tls + # hosts: + # - chart-example.local + +resources: {} + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 100 + targetCPUUtilizationPercentage: 80 + # targetMemoryUtilizationPercentage: 80 + +nodeSelector: {} + +tolerations: [] + +affinity: {} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/failed-deploy/Chart.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/failed-deploy/Chart.yaml new file mode 100644 index 0000000..6041503 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/failed-deploy/Chart.yaml @@ -0,0 +1,6 @@ +apiVersion: v2 +name: failed-deploy +description: A broken chart for testing the Helm provider +type: application +version: 1.2.3 +appVersion: 1.2.3 diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/failed-deploy/templates/service.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/failed-deploy/templates/service.yaml new file mode 100644 index 0000000..62f4204 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/failed-deploy/templates/service.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: Service +metadata: + name: test + namespace: doesnt-exist +spec: + type: NodePort + ports: + - port: 80 + targetPort: http + protocol: TCP + name: http diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/kube-version/Chart.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/kube-version/Chart.yaml new file mode 100644 index 0000000..80ac73f --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/kube-version/Chart.yaml @@ -0,0 +1,7 @@ +apiVersion: v2 +name: kube-version +description: A chart requiring kube version 1.22 or above +type: application +version: 1.2.3 +appVersion: 1.2.3 +kubeVersion: ">=1.22.0-0" diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/kube-version/templates/_helpers.tpl b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/kube-version/templates/_helpers.tpl new file mode 100644 index 0000000..1100173 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/kube-version/templates/_helpers.tpl @@ -0,0 +1,42 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "kube-version.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "kube-version.fullname" -}} +{{- if .Values.fullnameOverride }} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- $name := default .Chart.Name .Values.nameOverride }} +{{- if contains $name .Release.Name }} +{{- .Release.Name | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} +{{- end }} +{{- end }} +{{- end }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "kube-version.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "kube-version.labels" -}} +helm.sh/chart: {{ include "kube-version.chart" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/kube-version/templates/deployment.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/kube-version/templates/deployment.yaml new file mode 100644 index 0000000..c0d1351 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/kube-version/templates/deployment.yaml @@ -0,0 +1,53 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "kube-version.fullname" . }} + labels: + {{- include "kube-version.labels" . | nindent 4 }} +spec: + replicas: {{ .Values.replicaCount }} + template: + metadata: + {{- with .Values.podAnnotations }} + annotations: + {{- toYaml . | nindent 8 }} + {{- end }} + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + securityContext: + {{- toYaml .Values.podSecurityContext | nindent 8 }} + containers: + - name: {{ .Chart.Name }} + securityContext: + {{- toYaml .Values.securityContext | nindent 12 }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + ports: + - name: http + containerPort: 80 + protocol: TCP + livenessProbe: + httpGet: + path: / + port: http + readinessProbe: + httpGet: + path: / + port: http + resources: + {{- toYaml .Values.resources | nindent 12 }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/kube-version/values.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/kube-version/values.yaml new file mode 100644 index 0000000..e0ddc93 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/kube-version/values.yaml @@ -0,0 +1,49 @@ +# Default values for kube-version. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: nginx + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: "" + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +podAnnotations: {} + +podSecurityContext: + {} + # fsGroup: 2000 + +securityContext: + {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +resources: + {} + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +nodeSelector: {} + +tolerations: [] + +affinity: {} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/.helmignore b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/.helmignore new file mode 100644 index 0000000..0e8a0eb --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*.orig +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/Chart.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/Chart.yaml new file mode 100644 index 0000000..82b39a7 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/Chart.yaml @@ -0,0 +1,23 @@ +apiVersion: v2 +name: test-chart +description: This is a simple chart to use as a test fixture + +# A chart can be either an 'application' or a 'library' chart. +# +# Application charts are a collection of templates that can be packaged into versioned archives +# to be deployed. +# +# Library charts provide useful utilities or functions for the chart developer. They're included as +# a dependency of application charts to inject those utilities and functions into the rendering +# pipeline. Library charts do not define any templates and therefore cannot be deployed. +type: application + +# This is the chart version. This version number should be incremented each time you make changes +# to the chart and its templates, including the app version. +# Versions are expected to follow Semantic Versioning (https://semver.org/) +version: 2.0.0 + +# This is the version number of the application being deployed. This version number should be +# incremented each time you make changes to the application. Versions are not expected to +# follow Semantic Versioning. They should reflect the version the application is using. +appVersion: 1.19.5 diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/NOTES.txt b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/NOTES.txt new file mode 100644 index 0000000..0b1a16d --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/NOTES.txt @@ -0,0 +1,21 @@ +1. Get the application URL by running these commands: +{{- if .Values.ingress.enabled }} +{{- range $host := .Values.ingress.hosts }} + {{- range .paths }} + http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ . }} + {{- end }} +{{- end }} +{{- else if contains "NodePort" .Values.service.type }} + export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "test-chart.fullname" . }}) + export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") + echo http://$NODE_IP:$NODE_PORT +{{- else if contains "LoadBalancer" .Values.service.type }} + NOTE: It may take a few minutes for the LoadBalancer IP to be available. + You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "test-chart.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "test-chart.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}") + echo http://$SERVICE_IP:{{ .Values.service.port }} +{{- else if contains "ClusterIP" .Values.service.type }} + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "test-chart.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") + echo "Visit http://127.0.0.1:8080 to use your application" + kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:80 +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/_helpers.tpl b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/_helpers.tpl new file mode 100644 index 0000000..7b311a7 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/_helpers.tpl @@ -0,0 +1,62 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "test-chart.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "test-chart.fullname" -}} +{{- if .Values.fullnameOverride }} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- $name := default .Chart.Name .Values.nameOverride }} +{{- if contains $name .Release.Name }} +{{- .Release.Name | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} +{{- end }} +{{- end }} +{{- end }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "test-chart.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "test-chart.labels" -}} +helm.sh/chart: {{ include "test-chart.chart" . }} +{{ include "test-chart.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "test-chart.selectorLabels" -}} +app.kubernetes.io/name: {{ include "test-chart.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "test-chart.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "test-chart.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/deployment.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/deployment.yaml new file mode 100644 index 0000000..91e453b --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/deployment.yaml @@ -0,0 +1,61 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "test-chart.fullname" . }} + labels: + {{- include "test-chart.labels" . | nindent 4 }} +spec: +{{- if not .Values.autoscaling.enabled }} + replicas: {{ .Values.replicaCount }} +{{- end }} + selector: + matchLabels: + {{- include "test-chart.selectorLabels" . | nindent 6 }} + template: + metadata: + {{- with .Values.podAnnotations }} + annotations: + {{- toYaml . | nindent 8 }} + {{- end }} + labels: + {{- include "test-chart.selectorLabels" . | nindent 8 }} + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + serviceAccountName: {{ include "test-chart.serviceAccountName" . }} + securityContext: + {{- toYaml .Values.podSecurityContext | nindent 8 }} + containers: + - name: {{ .Chart.Name }} + securityContext: + {{- toYaml .Values.securityContext | nindent 12 }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + ports: + - name: http + containerPort: 80 + protocol: TCP + livenessProbe: + httpGet: + path: / + port: http + readinessProbe: + httpGet: + path: / + port: http + resources: + {{- toYaml .Values.resources | nindent 12 }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/hpa.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/hpa.yaml new file mode 100644 index 0000000..4642327 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/hpa.yaml @@ -0,0 +1,28 @@ +{{- if .Values.autoscaling.enabled }} +apiVersion: autoscaling/v2beta1 +kind: HorizontalPodAutoscaler +metadata: + name: {{ include "test-chart.fullname" . }} + labels: + {{- include "test-chart.labels" . | nindent 4 }} +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: {{ include "test-chart.fullname" . }} + minReplicas: {{ .Values.autoscaling.minReplicas }} + maxReplicas: {{ .Values.autoscaling.maxReplicas }} + metrics: + {{- if .Values.autoscaling.targetCPUUtilizationPercentage }} + - type: Resource + resource: + name: cpu + targetAverageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }} + {{- end }} + {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }} + - type: Resource + resource: + name: memory + targetAverageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }} + {{- end }} +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/ingress.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/ingress.yaml new file mode 100644 index 0000000..95c5936 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/ingress.yaml @@ -0,0 +1,41 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullName := include "test-chart.fullname" . -}} +{{- $svcPort := .Values.service.port -}} +{{- if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}} +apiVersion: networking.k8s.io/v1beta1 +{{- else -}} +apiVersion: extensions/v1beta1 +{{- end }} +kind: Ingress +metadata: + name: {{ $fullName }} + labels: + {{- include "test-chart.labels" . | nindent 4 }} + {{- with .Values.ingress.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +spec: + {{- if .Values.ingress.tls }} + tls: + {{- range .Values.ingress.tls }} + - hosts: + {{- range .hosts }} + - {{ . | quote }} + {{- end }} + secretName: {{ .secretName }} + {{- end }} + {{- end }} + rules: + {{- range .Values.ingress.hosts }} + - host: {{ .host | quote }} + http: + paths: + {{- range .paths }} + - path: {{ . }} + backend: + serviceName: {{ $fullName }} + servicePort: {{ $svcPort }} + {{- end }} + {{- end }} + {{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/service.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/service.yaml new file mode 100644 index 0000000..b8d5d51 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/service.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "test-chart.fullname" . }} + labels: + {{- include "test-chart.labels" . | nindent 4 }} +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.port }} + targetPort: http + protocol: TCP + name: http + selector: + {{- include "test-chart.selectorLabels" . | nindent 4 }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/serviceaccount.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/serviceaccount.yaml new file mode 100644 index 0000000..85ea1e1 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/serviceaccount.yaml @@ -0,0 +1,12 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "test-chart.serviceAccountName" . }} + labels: + {{- include "test-chart.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/tests/test-connection.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/tests/test-connection.yaml new file mode 100644 index 0000000..772f913 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/templates/tests/test-connection.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Pod +metadata: + name: "{{ include "test-chart.fullname" . }}-test-connection" + labels: + {{- include "test-chart.labels" . | nindent 4 }} + annotations: + "helm.sh/hook": test-success +spec: + containers: + - name: wget + image: busybox + command: ['wget'] + args: ['{{ include "test-chart.fullname" . }}:{{ .Values.service.port }}'] + restartPolicy: Never diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/values.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/values.yaml new file mode 100644 index 0000000..f6b7112 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart-v2/values.yaml @@ -0,0 +1,81 @@ +# Default values for test-chart. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: nginx + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: "" + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +serviceAccount: + # Specifies whether a service account should be created + create: true + # Annotations to add to the service account + annotations: {} + # The name of the service account to use. + # If not set and create is true, a name is generated using the fullname template + name: "" + +podAnnotations: {} + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +service: + type: ClusterIP + port: 80 + +ingress: + enabled: false + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + hosts: + - host: chart-example.local + paths: [] + tls: [] + # - secretName: chart-example-tls + # hosts: + # - chart-example.local + +resources: {} + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 100 + targetCPUUtilizationPercentage: 80 + # targetMemoryUtilizationPercentage: 80 + +nodeSelector: {} + +tolerations: [] + +affinity: {} + +set_list_test: [] \ No newline at end of file diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/.helmignore b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/.helmignore new file mode 100644 index 0000000..0e8a0eb --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*.orig +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/Chart.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/Chart.yaml new file mode 100644 index 0000000..300519c --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/Chart.yaml @@ -0,0 +1,23 @@ +apiVersion: v2 +name: test-chart +description: This is a simple chart to use as a test fixture + +# A chart can be either an 'application' or a 'library' chart. +# +# Application charts are a collection of templates that can be packaged into versioned archives +# to be deployed. +# +# Library charts provide useful utilities or functions for the chart developer. They're included as +# a dependency of application charts to inject those utilities and functions into the rendering +# pipeline. Library charts do not define any templates and therefore cannot be deployed. +type: application + +# This is the chart version. This version number should be incremented each time you make changes +# to the chart and its templates, including the app version. +# Versions are expected to follow Semantic Versioning (https://semver.org/) +version: 1.2.3 + +# This is the version number of the application being deployed. This version number should be +# incremented each time you make changes to the application. Versions are not expected to +# follow Semantic Versioning. They should reflect the version the application is using. +appVersion: 1.19.5 diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/NOTES.txt b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/NOTES.txt new file mode 100644 index 0000000..0b1a16d --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/NOTES.txt @@ -0,0 +1,21 @@ +1. Get the application URL by running these commands: +{{- if .Values.ingress.enabled }} +{{- range $host := .Values.ingress.hosts }} + {{- range .paths }} + http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ . }} + {{- end }} +{{- end }} +{{- else if contains "NodePort" .Values.service.type }} + export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "test-chart.fullname" . }}) + export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") + echo http://$NODE_IP:$NODE_PORT +{{- else if contains "LoadBalancer" .Values.service.type }} + NOTE: It may take a few minutes for the LoadBalancer IP to be available. + You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "test-chart.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "test-chart.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}") + echo http://$SERVICE_IP:{{ .Values.service.port }} +{{- else if contains "ClusterIP" .Values.service.type }} + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "test-chart.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") + echo "Visit http://127.0.0.1:8080 to use your application" + kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:80 +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/_helpers.tpl b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/_helpers.tpl new file mode 100644 index 0000000..7b311a7 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/_helpers.tpl @@ -0,0 +1,62 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "test-chart.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "test-chart.fullname" -}} +{{- if .Values.fullnameOverride }} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- $name := default .Chart.Name .Values.nameOverride }} +{{- if contains $name .Release.Name }} +{{- .Release.Name | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} +{{- end }} +{{- end }} +{{- end }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "test-chart.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "test-chart.labels" -}} +helm.sh/chart: {{ include "test-chart.chart" . }} +{{ include "test-chart.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "test-chart.selectorLabels" -}} +app.kubernetes.io/name: {{ include "test-chart.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "test-chart.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "test-chart.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/configmaps.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/configmaps.yaml new file mode 100644 index 0000000..e4f612f --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/configmaps.yaml @@ -0,0 +1,18 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "test-chart.fullname" . }}-one + labels: + {{- include "test-chart.labels" . | nindent 4 }} +data: + test: one + +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "test-chart.fullname" . }}-two + labels: + {{- include "test-chart.labels" . | nindent 4 }} +data: + test: two diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/deployment.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/deployment.yaml new file mode 100644 index 0000000..91e453b --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/deployment.yaml @@ -0,0 +1,61 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "test-chart.fullname" . }} + labels: + {{- include "test-chart.labels" . | nindent 4 }} +spec: +{{- if not .Values.autoscaling.enabled }} + replicas: {{ .Values.replicaCount }} +{{- end }} + selector: + matchLabels: + {{- include "test-chart.selectorLabels" . | nindent 6 }} + template: + metadata: + {{- with .Values.podAnnotations }} + annotations: + {{- toYaml . | nindent 8 }} + {{- end }} + labels: + {{- include "test-chart.selectorLabels" . | nindent 8 }} + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + serviceAccountName: {{ include "test-chart.serviceAccountName" . }} + securityContext: + {{- toYaml .Values.podSecurityContext | nindent 8 }} + containers: + - name: {{ .Chart.Name }} + securityContext: + {{- toYaml .Values.securityContext | nindent 12 }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + ports: + - name: http + containerPort: 80 + protocol: TCP + livenessProbe: + httpGet: + path: / + port: http + readinessProbe: + httpGet: + path: / + port: http + resources: + {{- toYaml .Values.resources | nindent 12 }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/hpa.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/hpa.yaml new file mode 100644 index 0000000..4642327 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/hpa.yaml @@ -0,0 +1,28 @@ +{{- if .Values.autoscaling.enabled }} +apiVersion: autoscaling/v2beta1 +kind: HorizontalPodAutoscaler +metadata: + name: {{ include "test-chart.fullname" . }} + labels: + {{- include "test-chart.labels" . | nindent 4 }} +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: {{ include "test-chart.fullname" . }} + minReplicas: {{ .Values.autoscaling.minReplicas }} + maxReplicas: {{ .Values.autoscaling.maxReplicas }} + metrics: + {{- if .Values.autoscaling.targetCPUUtilizationPercentage }} + - type: Resource + resource: + name: cpu + targetAverageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }} + {{- end }} + {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }} + - type: Resource + resource: + name: memory + targetAverageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }} + {{- end }} +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/ingress.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/ingress.yaml new file mode 100644 index 0000000..95c5936 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/ingress.yaml @@ -0,0 +1,41 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullName := include "test-chart.fullname" . -}} +{{- $svcPort := .Values.service.port -}} +{{- if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}} +apiVersion: networking.k8s.io/v1beta1 +{{- else -}} +apiVersion: extensions/v1beta1 +{{- end }} +kind: Ingress +metadata: + name: {{ $fullName }} + labels: + {{- include "test-chart.labels" . | nindent 4 }} + {{- with .Values.ingress.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +spec: + {{- if .Values.ingress.tls }} + tls: + {{- range .Values.ingress.tls }} + - hosts: + {{- range .hosts }} + - {{ . | quote }} + {{- end }} + secretName: {{ .secretName }} + {{- end }} + {{- end }} + rules: + {{- range .Values.ingress.hosts }} + - host: {{ .host | quote }} + http: + paths: + {{- range .paths }} + - path: {{ . }} + backend: + serviceName: {{ $fullName }} + servicePort: {{ $svcPort }} + {{- end }} + {{- end }} + {{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/secrets.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/secrets.yaml new file mode 100644 index 0000000..380a7a7 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/secrets.yaml @@ -0,0 +1,6 @@ +apiVersion: v1 +kind: Secret +metadata: + name: {{ include "test-chart.fullname" . }} +data: + cloaked: {{ .Values.cloakedData.cloaked | b64enc }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/service.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/service.yaml new file mode 100644 index 0000000..b8d5d51 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/service.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "test-chart.fullname" . }} + labels: + {{- include "test-chart.labels" . | nindent 4 }} +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.port }} + targetPort: http + protocol: TCP + name: http + selector: + {{- include "test-chart.selectorLabels" . | nindent 4 }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/serviceaccount.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/serviceaccount.yaml new file mode 100644 index 0000000..85ea1e1 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/serviceaccount.yaml @@ -0,0 +1,12 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "test-chart.serviceAccountName" . }} + labels: + {{- include "test-chart.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/tests/test-connection.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/tests/test-connection.yaml new file mode 100644 index 0000000..772f913 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/templates/tests/test-connection.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Pod +metadata: + name: "{{ include "test-chart.fullname" . }}-test-connection" + labels: + {{- include "test-chart.labels" . | nindent 4 }} + annotations: + "helm.sh/hook": test-success +spec: + containers: + - name: wget + image: busybox + command: ['wget'] + args: ['{{ include "test-chart.fullname" . }}:{{ .Values.service.port }}'] + restartPolicy: Never diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/values.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/values.yaml new file mode 100644 index 0000000..7dc53da --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/test-chart/values.yaml @@ -0,0 +1,82 @@ +# Default values for test-chart. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: nginx + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: "" + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +serviceAccount: + # Specifies whether a service account should be created + create: true + # Annotations to add to the service account + annotations: {} + # The name of the service account to use. + # If not set and create is true, a name is generated using the fullname template + name: "" + +podAnnotations: {} + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +service: + type: ClusterIP + port: 80 + +ingress: + enabled: false + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + hosts: + - host: chart-example.local + paths: [] + tls: [] + # - secretName: chart-example-tls + # hosts: + # - chart-example.local + +resources: {} + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 100 + targetCPUUtilizationPercentage: 80 + # targetMemoryUtilizationPercentage: 80 + +nodeSelector: {} + +tolerations: [] + +affinity: {} + +cloakedData: + cloaked: secret diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/.gitignore b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/.gitignore new file mode 100644 index 0000000..711a39c --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/.gitignore @@ -0,0 +1 @@ +charts/ \ No newline at end of file diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/.helmignore b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/.helmignore new file mode 100644 index 0000000..0e8a0eb --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*.orig +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/Chart.lock b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/Chart.lock new file mode 100644 index 0000000..f54c148 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/Chart.lock @@ -0,0 +1,9 @@ +dependencies: +- name: dependency-foo + repository: file://../dependency-foo + version: 0.1.0 +- name: dependency-bar + repository: file://../dependency-bar + version: 0.1.0 +digest: sha256:eb95e992b458355d1cbc448c9694cadf982a1b82c6b3fe70617d7e39ee071d54 +generated: "2020-12-03T00:30:06.840959-05:00" diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/Chart.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/Chart.yaml new file mode 100644 index 0000000..391ee4f --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/Chart.yaml @@ -0,0 +1,31 @@ +apiVersion: v2 +name: umbrella-chart +description: A Helm chart for Kubernetes + +# A chart can be either an 'application' or a 'library' chart. +# +# Application charts are a collection of templates that can be packaged into versioned archives +# to be deployed. +# +# Library charts provide useful utilities or functions for the chart developer. They're included as +# a dependency of application charts to inject those utilities and functions into the rendering +# pipeline. Library charts do not define any templates and therefore cannot be deployed. +type: application + +# This is the chart version. This version number should be incremented each time you make changes +# to the chart and its templates, including the app version. +# Versions are expected to follow Semantic Versioning (https://semver.org/) +version: 0.1.0 + +# This is the version number of the application being deployed. This version number should be +# incremented each time you make changes to the application. Versions are not expected to +# follow Semantic Versioning. They should reflect the version the application is using. +appVersion: 1.16.0 + +dependencies: +- name: dependency-foo + version: 0.x.x + repository: "file://../dependency-foo" +- name: dependency-bar + version: 0.x.x + repository: "file://../dependency-bar" \ No newline at end of file diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/NOTES.txt b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/NOTES.txt new file mode 100644 index 0000000..02adeda --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/NOTES.txt @@ -0,0 +1,21 @@ +1. Get the application URL by running these commands: +{{- if .Values.ingress.enabled }} +{{- range $host := .Values.ingress.hosts }} + {{- range .paths }} + http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ . }} + {{- end }} +{{- end }} +{{- else if contains "NodePort" .Values.service.type }} + export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "umbrella-chart.fullname" . }}) + export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") + echo http://$NODE_IP:$NODE_PORT +{{- else if contains "LoadBalancer" .Values.service.type }} + NOTE: It may take a few minutes for the LoadBalancer IP to be available. + You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "umbrella-chart.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "umbrella-chart.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}") + echo http://$SERVICE_IP:{{ .Values.service.port }} +{{- else if contains "ClusterIP" .Values.service.type }} + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "umbrella-chart.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") + echo "Visit http://127.0.0.1:8080 to use your application" + kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:80 +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/_helpers.tpl b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/_helpers.tpl new file mode 100644 index 0000000..d13e0cb --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/_helpers.tpl @@ -0,0 +1,62 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "umbrella-chart.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "umbrella-chart.fullname" -}} +{{- if .Values.fullnameOverride }} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- $name := default .Chart.Name .Values.nameOverride }} +{{- if contains $name .Release.Name }} +{{- .Release.Name | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} +{{- end }} +{{- end }} +{{- end }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "umbrella-chart.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "umbrella-chart.labels" -}} +helm.sh/chart: {{ include "umbrella-chart.chart" . }} +{{ include "umbrella-chart.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "umbrella-chart.selectorLabels" -}} +app.kubernetes.io/name: {{ include "umbrella-chart.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "umbrella-chart.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "umbrella-chart.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/deployment.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/deployment.yaml new file mode 100644 index 0000000..63d505e --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/deployment.yaml @@ -0,0 +1,61 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "umbrella-chart.fullname" . }} + labels: + {{- include "umbrella-chart.labels" . | nindent 4 }} +spec: +{{- if not .Values.autoscaling.enabled }} + replicas: {{ .Values.replicaCount }} +{{- end }} + selector: + matchLabels: + {{- include "umbrella-chart.selectorLabels" . | nindent 6 }} + template: + metadata: + {{- with .Values.podAnnotations }} + annotations: + {{- toYaml . | nindent 8 }} + {{- end }} + labels: + {{- include "umbrella-chart.selectorLabels" . | nindent 8 }} + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + serviceAccountName: {{ include "umbrella-chart.serviceAccountName" . }} + securityContext: + {{- toYaml .Values.podSecurityContext | nindent 8 }} + containers: + - name: {{ .Chart.Name }} + securityContext: + {{- toYaml .Values.securityContext | nindent 12 }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + ports: + - name: http + containerPort: 80 + protocol: TCP + livenessProbe: + httpGet: + path: / + port: http + readinessProbe: + httpGet: + path: / + port: http + resources: + {{- toYaml .Values.resources | nindent 12 }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/hpa.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/hpa.yaml new file mode 100644 index 0000000..ac604e1 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/hpa.yaml @@ -0,0 +1,28 @@ +{{- if .Values.autoscaling.enabled }} +apiVersion: autoscaling/v2beta1 +kind: HorizontalPodAutoscaler +metadata: + name: {{ include "umbrella-chart.fullname" . }} + labels: + {{- include "umbrella-chart.labels" . | nindent 4 }} +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: {{ include "umbrella-chart.fullname" . }} + minReplicas: {{ .Values.autoscaling.minReplicas }} + maxReplicas: {{ .Values.autoscaling.maxReplicas }} + metrics: + {{- if .Values.autoscaling.targetCPUUtilizationPercentage }} + - type: Resource + resource: + name: cpu + targetAverageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }} + {{- end }} + {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }} + - type: Resource + resource: + name: memory + targetAverageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }} + {{- end }} +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/ingress.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/ingress.yaml new file mode 100644 index 0000000..c846fe1 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/ingress.yaml @@ -0,0 +1,41 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullName := include "umbrella-chart.fullname" . -}} +{{- $svcPort := .Values.service.port -}} +{{- if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}} +apiVersion: networking.k8s.io/v1beta1 +{{- else -}} +apiVersion: extensions/v1beta1 +{{- end }} +kind: Ingress +metadata: + name: {{ $fullName }} + labels: + {{- include "umbrella-chart.labels" . | nindent 4 }} + {{- with .Values.ingress.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +spec: + {{- if .Values.ingress.tls }} + tls: + {{- range .Values.ingress.tls }} + - hosts: + {{- range .hosts }} + - {{ . | quote }} + {{- end }} + secretName: {{ .secretName }} + {{- end }} + {{- end }} + rules: + {{- range .Values.ingress.hosts }} + - host: {{ .host | quote }} + http: + paths: + {{- range .paths }} + - path: {{ . }} + backend: + serviceName: {{ $fullName }} + servicePort: {{ $svcPort }} + {{- end }} + {{- end }} + {{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/service.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/service.yaml new file mode 100644 index 0000000..ad54087 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/service.yaml @@ -0,0 +1,18 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "umbrella-chart.fullname" . }} + labels: + {{- include "umbrella-chart.labels" . | nindent 4 }} + {{- /* The dependency-bar label template is included here to + test dependency updating. */}} + {{- include "dependency-bar.labels" . | nindent 4 }} +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.port }} + targetPort: http + protocol: TCP + name: http + selector: + {{- include "umbrella-chart.selectorLabels" . | nindent 4 }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/serviceaccount.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/serviceaccount.yaml new file mode 100644 index 0000000..51874ac --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/serviceaccount.yaml @@ -0,0 +1,12 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "umbrella-chart.serviceAccountName" . }} + labels: + {{- include "umbrella-chart.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +{{- end }} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/tests/test-connection.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/tests/test-connection.yaml new file mode 100644 index 0000000..4808f3c --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/templates/tests/test-connection.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Pod +metadata: + name: "{{ include "umbrella-chart.fullname" . }}-test-connection" + labels: + {{- include "umbrella-chart.labels" . | nindent 4 }} + annotations: + "helm.sh/hook": test-success +spec: + containers: + - name: wget + image: busybox + command: ['wget'] + args: ['{{ include "umbrella-chart.fullname" . }}:{{ .Values.service.port }}'] + restartPolicy: Never diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/values.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/values.yaml new file mode 100644 index 0000000..38bb968 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/charts/umbrella-chart/values.yaml @@ -0,0 +1,79 @@ +# Default values for umbrella-chart. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: nginx + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: "" + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +serviceAccount: + # Specifies whether a service account should be created + create: true + # Annotations to add to the service account + annotations: {} + # The name of the service account to use. + # If not set and create is true, a name is generated using the fullname template + name: "" + +podAnnotations: {} + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +service: + type: ClusterIP + port: 80 + +ingress: + enabled: false + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + hosts: + - host: chart-example.local + paths: [] + tls: [] + # - secretName: chart-example-tls + # hosts: + # - chart-example.local + +resources: {} + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 100 + targetCPUUtilizationPercentage: 80 + # targetMemoryUtilizationPercentage: 80 + +nodeSelector: {} + +tolerations: [] + +affinity: {} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/manifest_json/rendered_manifest.json b/shuttles/terraform/terraform-provider-helm/helm/testdata/manifest_json/rendered_manifest.json new file mode 100644 index 0000000..9be6666 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/manifest_json/rendered_manifest.json @@ -0,0 +1,63 @@ +{ + "secret/v1/diff-tester": { + "kind": "Secret", + "apiVersion": "v1", + "metadata": { + "name": "diff-tester", + "creationTimestamp": null, + "labels": { + "app.kubernetes.io/instance": "diff-tester", + "app.kubernetes.io/managed-by": "Helm", + "app.kubernetes.io/name": "test", + "app.kubernetes.io/version": "1.16.0", + "helm.sh/chart": "test-0.1.5" + } + }, + "data": { + "PASSWORD": "KHNlbnNpdGl2ZSB2YWx1ZSA5NTIwYWUyM2E3MTA4ZmUxKQ==" + } + }, + "service/v1/diff-tester": { + "apiVersion": "v1", + "kind": "Service", + "metadata": { + "labels": { + "app.kubernetes.io/instance": "diff-tester", + "app.kubernetes.io/managed-by": "Helm", + "app.kubernetes.io/name": "test", + "app.kubernetes.io/version": "1.16.0", + "helm.sh/chart": "test-0.1.5" + }, + "name": "diff-tester" + }, + "spec": { + "ports": [ + { + "name": "http", + "port": 80, + "protocol": "TCP", + "targetPort": "http" + } + ], + "selector": { + "app.kubernetes.io/instance": "diff-tester", + "app.kubernetes.io/name": "test" + }, + "type": "ClusterIP" + } + }, + "serviceaccount/v1/diff-tester": { + "apiVersion": "v1", + "kind": "ServiceAccount", + "metadata": { + "labels": { + "app.kubernetes.io/instance": "diff-tester", + "app.kubernetes.io/managed-by": "Helm", + "app.kubernetes.io/name": "test", + "app.kubernetes.io/version": "1.16.0", + "helm.sh/chart": "test-0.1.5" + }, + "name": "diff-tester" + } + } +} \ No newline at end of file diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/manifest_json/rendered_manifest.yaml b/shuttles/terraform/terraform-provider-helm/helm/testdata/manifest_json/rendered_manifest.yaml new file mode 100644 index 0000000..a111aec --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/manifest_json/rendered_manifest.yaml @@ -0,0 +1,48 @@ +--- +# Source: test/templates/serviceaccount.yaml +apiVersion: v1 +kind: ServiceAccount +metadata: + name: diff-tester + labels: + helm.sh/chart: test-0.1.5 + app.kubernetes.io/name: test + app.kubernetes.io/instance: diff-tester + app.kubernetes.io/version: "1.16.0" + app.kubernetes.io/managed-by: Helm +--- +# Source: test/templates/service.yaml +apiVersion: v1 +kind: Service +metadata: + name: diff-tester + labels: + helm.sh/chart: test-0.1.5 + app.kubernetes.io/name: test + app.kubernetes.io/instance: diff-tester + app.kubernetes.io/version: "1.16.0" + app.kubernetes.io/managed-by: Helm +spec: + type: ClusterIP + ports: + - port: 80 + targetPort: http + protocol: TCP + name: http + selector: + app.kubernetes.io/name: test + app.kubernetes.io/instance: diff-tester +--- +# Source: test/templates/secret.yaml +apiVersion: v1 +kind: Secret +metadata: + name: diff-tester + labels: + helm.sh/chart: test-0.1.5 + app.kubernetes.io/name: test + app.kubernetes.io/instance: diff-tester + app.kubernetes.io/version: "1.16.0" + app.kubernetes.io/managed-by: Helm +data: + PASSWORD: cGFzc3dvcmQK \ No newline at end of file diff --git a/shuttles/terraform/terraform-provider-helm/helm/testdata/oci_registry/auth.htpasswd b/shuttles/terraform/terraform-provider-helm/helm/testdata/oci_registry/auth.htpasswd new file mode 100644 index 0000000..7619901 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testdata/oci_registry/auth.htpasswd @@ -0,0 +1 @@ +hashicorp:$2y$05$w2qcus7DpEEmnm7u4qeX5upuioXmnWRa8ICgXQZznN6xhxbsqBHK6 diff --git a/shuttles/terraform/terraform-provider-helm/helm/testing/config-da-basic/test.tf b/shuttles/terraform/terraform-provider-helm/helm/testing/config-da-basic/test.tf new file mode 100644 index 0000000..0b98c4f --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testing/config-da-basic/test.tf @@ -0,0 +1,29 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + +terraform { + required_providers { + kind = { + source = "tehcyx/kind" + } + } +} + +resource "kind_cluster" "demo" { + name = "tfacc" +} + +provider "helm" { + kubernetes = { + host = kind_cluster.demo.endpoint + cluster_ca_certificate = kind_cluster.demo.cluster_ca_certificate + client_certificate = kind_cluster.demo.client_certificate + client_key = kind_cluster.demo.client_key + } +} + +resource "helm_release" "test-release" { + name = "test-hello" + repository = "https://cloudecho.github.io/charts/" + chart = "hello" +} diff --git a/shuttles/terraform/terraform-provider-helm/helm/testing/deferred_actions_test.go b/shuttles/terraform/terraform-provider-helm/helm/testing/deferred_actions_test.go new file mode 100644 index 0000000..b12a4a7 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/helm/testing/deferred_actions_test.go @@ -0,0 +1,84 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + +package testing + +import ( + "testing" + + "github.com/hashicorp/terraform-plugin-framework/providerserver" + "github.com/hashicorp/terraform-plugin-go/tfprotov6" + "github.com/hashicorp/terraform-plugin-testing/config" + "github.com/hashicorp/terraform-plugin-testing/helper/resource" + "github.com/hashicorp/terraform-plugin-testing/knownvalue" + "github.com/hashicorp/terraform-plugin-testing/plancheck" + "github.com/hashicorp/terraform-plugin-testing/statecheck" + "github.com/hashicorp/terraform-plugin-testing/tfjsonpath" + "github.com/hashicorp/terraform-plugin-testing/tfversion" + "github.com/hashicorp/terraform-provider-helm/helm" +) + +var providerFactory = map[string]func() (tfprotov6.ProviderServer, error){ + "helm": providerserver.NewProtocol6WithError(helm.New("version")()), +} + +func TestAccDeferredActions_basic(t *testing.T) { + resource.Test(t, resource.TestCase{ + TerraformVersionChecks: []tfversion.TerraformVersionCheck{ + tfversion.SkipBelow(tfversion.Version1_9_0), + }, + AdditionalCLIOptions: &resource.AdditionalCLIOptions{ + Plan: resource.PlanOptions{AllowDeferral: true}, + Apply: resource.ApplyOptions{AllowDeferral: true}, + }, + Steps: []resource.TestStep{ + { + ProtoV6ProviderFactories: providerFactory, + ConfigDirectory: func(tscr config.TestStepConfigRequest) string { + return "config-da-basic" + }, + ExpectNonEmptyPlan: true, + ConfigPlanChecks: resource.ConfigPlanChecks{ + PreApply: []plancheck.PlanCheck{ + plancheck.ExpectResourceAction("kind_cluster.demo", plancheck.ResourceActionCreate), + plancheck.ExpectDeferredChange("helm_release.test-release", plancheck.DeferredReasonProviderConfigUnknown), + }, + PostApplyPostRefresh: []plancheck.PlanCheck{ + plancheck.ExpectResourceAction("helm_release.test-release", plancheck.ResourceActionCreate), + }, + }, + ConfigStateChecks: []statecheck.StateCheck{ + statecheck.ExpectKnownValue("kind_cluster.demo", tfjsonpath.New("endpoint"), knownvalue.NotNull()), + statecheck.ExpectKnownValue("kind_cluster.demo", tfjsonpath.New("cluster_ca_certificate"), knownvalue.NotNull()), + statecheck.ExpectKnownValue("kind_cluster.demo", tfjsonpath.New("client_certificate"), knownvalue.NotNull()), + statecheck.ExpectKnownValue("kind_cluster.demo", tfjsonpath.New("client_key"), knownvalue.NotNull()), + }, + }, + { + ProtoV6ProviderFactories: providerFactory, + ConfigDirectory: func(tscr config.TestStepConfigRequest) string { + return "config-da-basic" + }, + ExpectNonEmptyPlan: false, + ConfigPlanChecks: resource.ConfigPlanChecks{ + PreApply: []plancheck.PlanCheck{ + plancheck.ExpectResourceAction("helm_release.test-release", plancheck.ResourceActionCreate), + }, + PostApplyPostRefresh: []plancheck.PlanCheck{ + plancheck.ExpectEmptyPlan(), + }, + }, + ConfigStateChecks: []statecheck.StateCheck{ + statecheck.ExpectKnownValue("kind_cluster.demo", tfjsonpath.New("endpoint"), knownvalue.NotNull()), + statecheck.ExpectKnownValue("kind_cluster.demo", tfjsonpath.New("cluster_ca_certificate"), knownvalue.NotNull()), + statecheck.ExpectKnownValue("kind_cluster.demo", tfjsonpath.New("client_certificate"), knownvalue.NotNull()), + statecheck.ExpectKnownValue("kind_cluster.demo", tfjsonpath.New("client_key"), knownvalue.NotNull()), + statecheck.ExpectKnownValue("helm_release.test-release", tfjsonpath.New("name"), knownvalue.StringExact("test-hello")), + statecheck.ExpectKnownValue("helm_release.test-release", tfjsonpath.New("chart"), knownvalue.StringExact("hello")), + statecheck.ExpectKnownValue("helm_release.test-release", tfjsonpath.New("repository"), knownvalue.StringExact("https://cloudecho.github.io/charts/")), + statecheck.ExpectKnownValue("helm_release.test-release", tfjsonpath.New("status"), knownvalue.StringExact("deployed")), + }, + }, + }, + }) +} diff --git a/shuttles/terraform/terraform-provider-helm/main.go b/shuttles/terraform/terraform-provider-helm/main.go new file mode 100644 index 0000000..9304fb2 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/main.go @@ -0,0 +1,45 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + +package main + +import ( + "context" + "flag" + "log" + + "github.com/hashicorp/terraform-plugin-framework/providerserver" + "github.com/hashicorp/terraform-provider-helm/helm" + "k8s.io/klog" +) + +// Example version string that can be overwritten by a release process +var Version string = "dev" + +func main() { + var debug bool + debugFlag := flag.Bool("debug", false, "Start provider in stand-alone debug mode.") + flag.Parse() + + klogFlags := flag.NewFlagSet("klog", flag.ExitOnError) + klog.InitFlags(klogFlags) + err := klogFlags.Set("logtostderr", "false") + if err != nil { + panic(err) + } + + opts := providerserver.ServeOpts{ + Address: "registry.terraform.io/hashicorp/helm", + Debug: debug, + ProtocolVersion: 6, + } + + if *debugFlag { + opts.Debug = true + } + + serveErr := providerserver.Serve(context.Background(), helm.New(Version), opts) + if serveErr != nil { + log.Fatal(serveErr.Error()) + } +} diff --git a/shuttles/terraform/terraform-provider-helm/scripts/changelog-links.sh b/shuttles/terraform/terraform-provider-helm/scripts/changelog-links.sh new file mode 100755 index 0000000..4bf4b02 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/scripts/changelog-links.sh @@ -0,0 +1,34 @@ +#!/bin/bash +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + + +# This script rewrites [GH-nnnn]-style references in the CHANGELOG.md file to +# be Markdown links to the given github issues. +# +# This is run during releases so that the issue references in all of the +# released items are presented as clickable links, but we can just use the +# easy [GH-nnnn] shorthand for quickly adding items to the "Unrelease" section +# while merging things between releases. + +set -e + +if [[ ! -f CHANGELOG.md ]]; then + echo "ERROR: CHANGELOG.md not found in pwd." + echo "Please run this from the root of the terraform provider repository" + exit 1 +fi + +if [[ `uname` == "Darwin" ]]; then + echo "Using BSD sed" + SED="sed -i.bak -E -e" +else + echo "Using GNU sed" + SED="sed -i.bak -r -e" +fi + +PROVIDER_URL="https:\/\/github.com\/terraform-providers\/terraform-provider-ignition\/issues" + +$SED "s/GH-([0-9]+)/\[#\1\]\($PROVIDER_URL\/\1\)/g" -e 's/\[\[#(.+)([0-9])\)]$/(\[#\1\2))/g' CHANGELOG.md + +rm CHANGELOG.md.bak diff --git a/shuttles/terraform/terraform-provider-helm/scripts/errcheck.sh b/shuttles/terraform/terraform-provider-helm/scripts/errcheck.sh new file mode 100755 index 0000000..2589dc8 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/scripts/errcheck.sh @@ -0,0 +1,27 @@ +#!/usr/bin/env bash +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + + +# Check gofmt +echo "==> Checking for unchecked errors..." + +if ! which errcheck > /dev/null; then + echo "==> Installing errcheck..." + go get -u github.com/kisielk/errcheck +fi + +err_files=$(errcheck -ignoretests \ + -ignore 'github.com/hashicorp/terraform/helper/schema:Set' \ + -ignore 'bytes:.*' \ + -ignore 'io:Close|Write' \ + $(go list ./...| grep -v /vendor/)) + +if [[ -n ${err_files} ]]; then + echo 'Unchecked errors found in the following places:' + echo "${err_files}" + echo "Please handle returned errors. You can check directly with \`make errcheck\`" + exit 1 +fi + +exit 0 diff --git a/shuttles/terraform/terraform-provider-helm/scripts/fix-vendoring.sh b/shuttles/terraform/terraform-provider-helm/scripts/fix-vendoring.sh new file mode 100755 index 0000000..970f910 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/scripts/fix-vendoring.sh @@ -0,0 +1,25 @@ +#!/usr/bin/env bash + +# Copyright 2016 The Kubernetes Authors All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Copies the current versions of apimachinery and client-go out of the +# main kubernetes repo. These repos are currently out of sync and not +# versioned. +set -euo pipefail + + +rm -rf ./vendor/k8s.io/{api,kube-aggregator,apiserver,apimachinery,client-go,metrics} + +cp -r ./vendor/k8s.io/kubernetes/staging/src/k8s.io/{api,kube-aggregator,apiserver,apimachinery,client-go,metrics} ./vendor/k8s.io diff --git a/shuttles/terraform/terraform-provider-helm/scripts/get-version-matrix.sh b/shuttles/terraform/terraform-provider-helm/scripts/get-version-matrix.sh new file mode 100755 index 0000000..57c6c6a --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/scripts/get-version-matrix.sh @@ -0,0 +1,12 @@ +#!/bin/bash +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + + +function get_latest_version() { + curl -s https://api.github.com/repos/hashicorp/terraform/git/refs/tags | \ + jq ".[] | .ref | split(\"/\") | .[2] | select(. | startswith(\"$1\"))" | \ + sort -V -r | head -1 +} + +echo "matrix=[$(get_latest_version v1.0), $(get_latest_version v1.3), $(get_latest_version v1.5), $(get_latest_version v1.7), $(get_latest_version v1.9), $(get_latest_version v1.10), $(get_latest_version v1.11), $(get_latest_version v1.12)]" >> "$GITHUB_OUTPUT" diff --git a/shuttles/terraform/terraform-provider-helm/scripts/gofmtcheck.sh b/shuttles/terraform/terraform-provider-helm/scripts/gofmtcheck.sh new file mode 100755 index 0000000..26b3ff6 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/scripts/gofmtcheck.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + + +# Check gofmt +echo "==> Checking that code complies with gofmt requirements..." +gofmt_files=$(gofmt -l `find . -name '*.go' | grep -v vendor`) +if [[ -n ${gofmt_files} ]]; then + echo 'gofmt needs running on the following files:' + echo "${gofmt_files}" + echo "You can use the command: \`make fmt\` to reformat code." + exit 1 +fi + +exit 0 diff --git a/shuttles/terraform/terraform-provider-helm/scripts/gogetcookie.sh b/shuttles/terraform/terraform-provider-helm/scripts/gogetcookie.sh new file mode 100755 index 0000000..b7bb88c --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/scripts/gogetcookie.sh @@ -0,0 +1,15 @@ +#!/bin/bash +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + +eval 'set +o history' 2>/dev/null || setopt HIST_IGNORE_SPACE 2>/dev/null +touch ~/.gitcookies +chmod 0600 ~/.gitcookies + +git config --global http.cookiefile ~/.gitcookies + +tr , \\t <<\__END__ >>~/.gitcookies +go.googlesource.com,FALSE,/,TRUE,2147483647,o,git-alex.somesan.gmail.com=1/ezYFnzxl__DgpHATkUdNGxHHoEg54KtNQxYBhzCkyNw +go-review.googlesource.com,FALSE,/,TRUE,2147483647,o,git-alex.somesan.gmail.com=1/ezYFnzxl__DgpHATkUdNGxHHoEg54KtNQxYBhzCkyNw +__END__ +eval 'set -o history' 2>/dev/null || unsetopt HIST_IGNORE_SPACE 2>/dev/null diff --git a/shuttles/terraform/terraform-provider-helm/scripts/markdown-link-check.sh b/shuttles/terraform/terraform-provider-helm/scripts/markdown-link-check.sh new file mode 100755 index 0000000..1281fa3 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/scripts/markdown-link-check.sh @@ -0,0 +1,77 @@ +#!/usr/bin/env bash +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + +# Local script runner for recursive markdown-link-check. +# Runs a dockerized version of this program: https://github.com/tcort/markdown-link-check +# Based on: https://github.com/gaurav-nelson/github-action-markdown-link-check/blob/master/entrypoint.sh +set -o errexit +set -o errtrace +set -o nounset +set -o pipefail +trap 'echo "ERROR at line ${LINENO}"' ERR + +# Allow users to optionally specify additional docker options, path, +# or docker alternative (such as podman). +DOCKER=${1:-`command -v docker`} +DOCKER_RUN_OPTS=${2:-} +DOCKER_VOLUME_OPTS=${3:-} +PROVIDER_DIR=${4:-} + +if [ -z "${PROVIDER_DIR}" ]; then + echo "Please specify the directory containing the helm provider" + exit 1 +fi + +echo "==> Checking Markdown links..." + +error_file="markdown-link-check-errors.txt" +output_file="markdown-link-check-output.txt" + +rm -f "./${error_file}" "./${output_file}" + +${DOCKER} run ${DOCKER_RUN_OPTS} --rm -t \ + -v ${PROVIDER_DIR}:/github/workspace:${DOCKER_VOLUME_OPTS} \ + -w /github/workspace \ + --entrypoint /usr/bin/find \ + docker.io/robertbeal/markdown-link-checker \ + docs/resources docs/data-sources \( -type f -name "*.md" -or -name "*.markdown" \) -exec markdown-link-check --config .markdownlinkcheck.json --quiet --verbose {} \; \ + | tee -a "${output_file}" + +touch "${error_file}" +PREVIOUS_LINE="" +while IFS= read -r LINE; do + if [[ $LINE = *"FILE"* ]]; then + PREVIOUS_LINE=$LINE + if [[ $(tail -1 "${error_file}") != *FILE* ]]; then + echo -e "\n" >> "${error_file}" + echo "$LINE" >> "${error_file}" + fi + elif [[ $LINE = *"✖"* ]] && [[ $PREVIOUS_LINE = *"FILE"* ]]; then + echo "$LINE" >> "${error_file}" + else + PREVIOUS_LINE="" + fi +done < "${output_file}" + +if grep -q "ERROR:" "${output_file}"; then + echo -e "==================> MARKDOWN LINK CHECK FAILED <==================" + if [[ $(tail -1 "${error_file}") = *FILE* ]]; then + sed '$d' "${error_file}" + else + cat "${error_file}" + fi + printf "\n" + echo -e "==================================================================" + exit 1 +else + echo -e "==================> MARKDOWN LINK CHECK SUCCESS <==================" + printf "\n" + echo -e "[✔] All links are good!" + printf "\n" + echo -e "===================================================================" +fi + +rm -f "./${error_file}" "./${output_file}" + +exit 0 diff --git a/shuttles/terraform/terraform-provider-helm/templates/data-sources/template.md.tmpl b/shuttles/terraform/terraform-provider-helm/templates/data-sources/template.md.tmpl new file mode 100644 index 0000000..9a6e2c3 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/templates/data-sources/template.md.tmpl @@ -0,0 +1,31 @@ +--- +page_title: "helm: helm_template" +sidebar_current: "docs-helm-template" +description: |- + +--- +# Data Source: {{ .Name }} + +Render chart templates locally. + +`helm_template` renders chart templates locally and exposes the rendered manifests in the data source attributes. `helm_template` mimics the functionality of the `helm template` command. + +The arguments aim to be identical to the `helm_release` resource. + +For further details on the `helm template` command, refer to the [Helm documentation](https://helm.sh/docs/helm/helm_template/). + +{{ .SchemaMarkdown }} + +## Example Usage + +### Render all chart templates + +The following example renders all templates of the `mariadb` chart of the official Helm stable repository. Concatenated manifests are exposed as output variable `mariadb_instance_manifest`. + +{{tffile "examples/data-sources/template/example_1.tf"}} + +### Render selected chart templates + +The following example renders only the templates `master-statefulset.yaml` and `master-svc.yaml` of the `mariadb` chart of the official Helm stable repository. + +{{tffile "examples/data-sources/template/example_2.tf"}} diff --git a/shuttles/terraform/terraform-provider-helm/templates/guides/v2-upgrade-guide.md b/shuttles/terraform/terraform-provider-helm/templates/guides/v2-upgrade-guide.md new file mode 100644 index 0000000..2065c02 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/templates/guides/v2-upgrade-guide.md @@ -0,0 +1,72 @@ +--- +layout: "helm" +page_title: "Helm: Upgrade Guide for Helm Provider v2.0.0" +description: |- + This guide covers the changes introduced in v2.0.0 of the Helm provider and what you may need to do to upgrade your configuration. +--- + +# Upgrading to v2.0.0 of the Helm provider + +This guide covers the changes introduced in v2.0.0 of the Helm provider and what you may need to do to upgrade your configuration. + +## Changes in v2.0.0 + +### Changes to Kubernetes credentials supplied in the provider block + +We have made several changes to the way access to Kubernetes is configured in the provider block. + +1. The `load_config_file` attribute has been removed. +2. Support for the `KUBECONFIG` environment variable has been dropped and replaced with `KUBE_CONFIG_PATH`. +3. The `config_path` attribute will no longer default to `~/.kube/config` and must be set explicitly. + +The above changes have been made to encourage the best practise of configuring access to Kubernetes in the provider block explicitly, instead of relying upon default paths or `KUBECONFIG` being set. We have done this because allowing the provider to configure its access to Kubernetes implicitly caused confusion with a subset of our users. It also created risk for users who use Terraform to manage multiple clusters. Requiring explicit configuring for kubernetes in the provider block eliminates the possibility that the configuration will be applied to the wrong cluster. + +You will therefore need to explicity configure access to your Kubernetes cluster in the provider block going forward. For many users this will simply mean specifying the `config_path` attribute in the provider block. Users already explicitly configuring the provider should not be affected by this change, but will need to remove the `load_config_file` attribute if they are currently using it. + +When running Terraform inside a Kubernetes cluster no provider configuration is neccessary, as the provider will detect that is has access to a service account token. + +### Removal of the `helm_repository` data source + +This feature of the provider caused a fair bit of confusion and was a source of instability as data sources are not supposed to be stateful. This data source performed a stateful operation that modified the filesystem, mirroring similar functionality to the `helm repo add` command. It has been the recommendation for some time to configure repository information explicity at the `helm_resource` level and so the data source has been removed. See the example below. + +```hcl +resource "helm_release" "redis" { + name = "redis" + + repository = "https://charts.bitnami.com/bitnami" + chart = "redis" +} +``` + +The provider will continue to work with repositories that are configured with `helm repo add` before Terraform is run. + +### Removal of `set_string` in the `helm_release` resource + +The addition of a `type` attribute to the `set` block has rendered `set_string` superfluous so it has been removed. See the example below on how to set a string using the `set` block. This is used when the type of a value is an ambigious (e.g strings containing only numbers, true, false) and we want it to be explicitly parsed as a string. + +```hcl +resource "helm_release" "redis" { + name = "redis" + + repository = "https://charts.bitnami.com/bitnami" + chart = "redis" + + set { + name = "test.value" + value = "123456" + type = "string" + } +} +``` + +### Dropped support for Terraform 0.11 + +All builds of the Helm provider going forward will no longer work with Terraform 0.11. See [Upgrade Guides](https://www.terraform.io/upgrade-guides/index.html) for how to migrate your configurations to a newer version of Terraform. + +### Upgrade to v2 of the Terraform Plugin SDK + +Contributors to the provider will be interested to know this upgrade has brought the latest version of the [Terraform Plugin SDK](https://github.com/hashicorp/terraform-plugin-sdk) which introduced a number of enhancements to the developer experience. Details of the changes introduced can be found under [Extending Terraform](https://www.terraform.io/docs/extend/guides/v2-upgrade-guide.html). + +## Helm 2 + +We removed support in the provider for Helm 2 earlier this year. In accordance with the [Helm v2 deprecation timeline](https://helm.sh/blog/helm-v2-deprecation-timeline/) we will no longer be accepting PRs or handling issues that relate to Helm 2 going forward. diff --git a/shuttles/terraform/terraform-provider-helm/templates/index.md.tmpl b/shuttles/terraform/terraform-provider-helm/templates/index.md.tmpl new file mode 100644 index 0000000..2bad79b --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/templates/index.md.tmpl @@ -0,0 +1,126 @@ +--- +page_title: "Provider: Helm" +sidebar_current: "docs-helm-index" +description: |- + The Helm provider is used to deploy software packages in Kubernetes. The provider needs to be configured with the proper credentials before it can be used. +--- + +{{/* This template serves as a starting point for documentation generation, and can be customized with hardcoded values and/or doc gen templates. + +For example, the {{ .SchemaMarkdown }} template can be used to replace manual schema documentation if descriptions of schema attributes are added in the provider source code. */ -}} + +# Helm Provider + +The Helm provider is used to deploy software packages in Kubernetes. The provider needs to be configured with the proper credentials before it can be used. + +Try the [hands-on tutorial](https://learn.hashicorp.com/tutorials/terraform/helm-provider?in=terraform/kubernetes) on the Helm provider on the HashiCorp Learn site. + +## Resources + +* [Resource: helm_release](r/release.md) + +## Data Sources + +* [Data Source: helm_template](d/template.html) + +## Example Usage + +{{tffile "examples/example_1.tf"}} + +## Requirements + +~> NOTE: The provider does not use the `KUBECONFIG` environment variable by default. See the attribute reference below for the environment variables that map to provider block attributes. + +- You must have a Kubernetes cluster available. We support version 1.14.0 or higher. + +## Authentication + +The Helm provider can get its configuration in two ways: + +1. *Explicitly* by supplying attributes to the provider block. This includes: + * [Using a kubeconfig file](#file-config) + * [Supplying credentials](#credentials-config) + * [Exec plugins](#exec-plugins) +2. *Implicitly* through environment variables. This includes: + * [Using the in-cluster config](#in-cluster-config) + +For a full list of supported provider authentication arguments and their corresponding environment variables, see the [argument reference](#argument-reference) below. + +### File config + +The easiest way is to supply a path to your kubeconfig file using the `config_path` attribute or using the `KUBE_CONFIG_PATH` environment variable. A kubeconfig file may have multiple contexts. If `config_context` is not specified, the provider will use the `default` context. + +{{tffile "examples/example_2.tf"}} + +The provider also supports multiple paths in the same way that kubectl does using the `config_paths` attribute or `KUBE_CONFIG_PATHS` environment variable. + +{{tffile "examples/example_3.tf"}} + +### Credentials config + +You can also configure the host, basic auth credentials, and client certificate authentication explicitly or through environment variables. + +{{tffile "examples/example_4.tf"}} + +### In-cluster Config + +The provider uses the `KUBERNETES_SERVICE_HOST` and `KUBERNETES_SERVICE_PORT` environment variables to detect when it is running inside a cluster, so in this case you do not need to specify any attributes in the provider block if you want to connect to the local kubernetes cluster. + +If you want to connect to a different cluster than the one terraform is running inside, configure the provider as [above](#credentials-config). + +## Exec plugins + +Some cloud providers have short-lived authentication tokens that can expire relatively quickly. To ensure the Kubernetes provider is receiving valid credentials, an exec-based plugin can be used to fetch a new token before initializing the provider. For example, on EKS, the command `eks get-token` can be used: + +{{tffile "examples/example_5.tf"}} + +For example, to [authenticate with GKE](https://registry.terraform.io/providers/hashicorp/google/latest/docs/guides/using_gke_with_terraform#using-the-kubernetes-and-helm-providers), the `gke-cloud-auth-plugin` can be used: + +{{tffile "examples/example_6.tf"}} + +## Argument Reference + +The following arguments are supported: + +* `debug` - (Optional) - Debug indicates whether or not Helm is running in Debug mode. Defaults to `false`. +* `plugins_path` - (Optional) The path to the plugins directory. Defaults to `HELM_PLUGINS` env if it is set, otherwise uses the default path set by helm. +* `registry_config_path` - (Optional) The path to the registry config file. Defaults to `HELM_REGISTRY_CONFIG` env if it is set, otherwise uses the default path set by helm. +* `repository_config_path` - (Optional) The path to the file containing repository names and URLs. Defaults to `HELM_REPOSITORY_CONFIG` env if it is set, otherwise uses the default path set by helm. +* `repository_cache` - (Optional) The path to the file containing cached repository indexes. Defaults to `HELM_REPOSITORY_CACHE` env if it is set, otherwise uses the default path set by helm. +* `helm_driver` - (Optional) "The backend storage driver. Valid values are: `configmap`, `secret`, `memory`, `sql`. Defaults to `secret`. Note: Regarding the sql driver, as of helm v3.2.0 SQL support exists only for the postgres dialect. The connection string can be configured by setting the `HELM_DRIVER_SQL_CONNECTION_STRING` environment variable e.g. `HELM_DRIVER_SQL_CONNECTION_STRING=postgres://username:password@host/dbname` more info [here](https://pkg.go.dev/github.com/lib/pq). +* `burst_limit` - (Optional) The helm burst limit to use. Set this value higher if your cluster has many CRDs. Default: `100` +* `kubernetes` - Kubernetes configuration block. +* `registry` - Private OCI registry configuration block. Can be specified multiple times. + +The `kubernetes` block supports: + +* `config_path` - (Optional) Path to the kube config file. Can be sourced from `KUBE_CONFIG_PATH`. +* `config_paths` - (Optional) A list of paths to the kube config files. Can be sourced from `KUBE_CONFIG_PATHS`. +* `host` - (Optional) The hostname (in form of URI) of the Kubernetes API. Can be sourced from `KUBE_HOST`. +* `username` - (Optional) The username to use for HTTP basic authentication when accessing the Kubernetes API. Can be sourced from `KUBE_USER`. +* `password` - (Optional) The password to use for HTTP basic authentication when accessing the Kubernetes API. Can be sourced from `KUBE_PASSWORD`. +* `token` - (Optional) The bearer token to use for authentication when accessing the Kubernetes API. Can be sourced from `KUBE_TOKEN`. +* `insecure` - (Optional) Whether server should be accessed without verifying the TLS certificate. Can be sourced from `KUBE_INSECURE`. +* `tls_server_name` - (Optional) Server name passed to the server for SNI and is used in the client to check server certificates against. Can be sourced from `KUBE_TLS_SERVER_NAME`. +* `client_certificate` - (Optional) PEM-encoded client certificate for TLS authentication. Can be sourced from `KUBE_CLIENT_CERT_DATA`. +* `client_key` - (Optional) PEM-encoded client certificate key for TLS authentication. Can be sourced from `KUBE_CLIENT_KEY_DATA`. +* `cluster_ca_certificate` - (Optional) PEM-encoded root certificates bundle for TLS authentication. Can be sourced from `KUBE_CLUSTER_CA_CERT_DATA`. +* `config_context` - (Optional) Context to choose from the config file. Can be sourced from `KUBE_CTX`. +* `proxy_url` - (Optional) URL to the proxy to be used for all API requests. URLs with "http", "https", and "socks5" schemes are supported. Can be sourced from `KUBE_PROXY_URL`. +* `exec` - (Optional) Configuration block to use an [exec-based credential plugin](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#client-go-credential-plugins), e.g. call an external command to receive user credentials. + * `api_version` - (Required) API version to use when decoding the ExecCredentials resource, e.g. `client.authentication.k8s.io/v1beta1`. + * `command` - (Required) Command to execute. + * `args` - (Optional) List of arguments to pass when executing the plugin. + * `env` - (Optional) Map of environment variables to set when executing the plugin. + +The `registry` block has options: + +* `url` - (Required) url to the registry in format `oci://host:port` +* `username` - (Required) username to registry +* `password` - (Required) password to registry + +## Experiments + +The provider takes an `experiments` block that allows you enable experimental features by setting them to `true`. + +* `manifest` - Enable storing of the rendered manifest for `helm_release` so the full diff of what is changing can been seen in the plan. diff --git a/shuttles/terraform/terraform-provider-helm/templates/resources/release.md.tmpl b/shuttles/terraform/terraform-provider-helm/templates/resources/release.md.tmpl new file mode 100644 index 0000000..f920590 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/templates/resources/release.md.tmpl @@ -0,0 +1,123 @@ +--- +page_title: "helm: helm_release" +sidebar_current: "docs-helm-release" +description: |- + +--- +# Resource: {{ .Name }} + +A Release is an instance of a chart running in a Kubernetes cluster. + +A Chart is a Helm package. It contains all of the resource definitions necessary to run an application, tool, or service inside of a Kubernetes cluster. + +`helm_release` describes the desired status of a chart in a kubernetes cluster. + +{{ .SchemaMarkdown }} + + +## Example Usage - Chart Repository + +{{tffile "examples/resources/release/example_1.tf"}} + +## Example Usage - Local Chart + +In case a Chart is not available from a repository, a path may be used: + +{{tffile "examples/resources/release/example_2.tf"}} + +## Example Usage - Chart URL + +An absolute URL to the .tgz of the Chart may also be used: + +{{tffile "examples/resources/release/example_3.tf"}} + +## Example Usage - Chart Repository configured from OCI Registry + +Provider supports grabbing charts from an OCI repository: + +{{tffile "examples/resources/release/example_4.tf"}} + +## Example Usage - Chart Repository configured using GCS/S3 + +The provider also supports helm plugins such as GCS and S3 that add S3/GCS helm repositories by using `helm plugin install` + +{{tffile "examples/resources/release/example_5.tf"}} + +{{tffile "examples/resources/release/example_6.tf"}} + +## Example Usage - Chart Repository configured outside of Terraform + +The provider also supports repositories that are added to the local machine outside of Terraform by running `helm repo add` + +{{tffile "examples/resources/release/example_7.tf"}} + +The `set`, and `set_sensitive` blocks support: + +* `name` - (Required) full name of the variable to be set. +* `value` - (Required) value of the variable to be set. +* `type` - (Optional) type of the variable to be set. Valid options are `auto`, `string`, and `literal`. + +Since Terraform Utilizes HCL as well as Helm using the Helm Template Language, it's necessary to escape the `{}`, `[]`, `.`, and `,` characters twice in order for it to be parsed. `name` should also be set to the `value path`, and `value` is the desired value that will be set. + +{{tffile "examples/resources/release/example_8.tf"}} + +{{tffile "examples/resources/release/example_9.tf"}} + +{{tffile "examples/resources/release/example_10.tf"}} + +{{tffile "examples/resources/release/example_11.tf"}} + +The `postrender` block supports two attributes: + +* `binary_path` - (Required) relative or full path to command binary. +* `args` - (Optional) a list of arguments to supply to the post-renderer. + +## Upgrade Mode Notes + +When using the Helm CLI directly, it is possible to use `helm upgrade --install` to +_idempotently_ install a release. For example, `helm upgrade --install mariadb charts/mariadb --verson 7.1.0` +will check to see if there is already a release called `mariadb`: if there is, ensure that it is set to version +7.1.0, and if there is not, install that version from scratch. (See the documentation for the +[helm upgrade](https://helm.sh/docs/helm/helm_upgrade) command for more details.) + + **NOTE:** The mechanics of this approach are subtly different from the defaults and you can easily produce unexpected or undesirable results if you are not careful: +using this approach in production is not necessarily recommended! + +If upgrade mode is enabled by setting the `upgrade_install` attribute to `true`, the provider will first check to see +if a release with the given name already exists. If the release does not already exist, the provider will perform a +from-scratch installation of the chart. In this case, all resource attributes are honored. + +However, if the release _does_ already exist, the provider will attempt to upgrade the release to +the state defined in the resource, using the same strategy as the [helm upgrade](https://helm.sh/docs/helm/helm_upgrade) +command. + +When using `upgrade_install`, the `version` attribute is used to determine the version of the chart to install or +upgrade to. If the `version` attribute is not set, the provider will attempt to determine the version of the chart +from the existing release and will use that version for the upgrade: this is to ensure that using `upgrade_install` +does not inadvertently change the version of the chart being used. + +**CRITICAL**: The user-supplied values passed to the chart in the new revision will be the ones specified in the +`helm_release` resource, not the values used in the original installation of the chart. This means that if +you are using `upgrade_install` to manage a release that was originally installed with a different set of values, +you must ensure that the values in the `helm_release` resource are correct, or you may inadvertently change the +configuration of the release. Additionally, since there is no existing terraform state to compare against, you +must manually inspect the installed release's values with the `helm get values` CLI command. + +**IMPORTANT**: Even if you are "upgrading" to the same version of the chart that is already present in the cluster, +the `helm_release` resource will still show as "changed" in the terraform plan output, because there is no existing +state for it to compare against. This also means that in the apply stage, the provider will in fact reinstall the +chart, which means that if there are any +[deployment](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/), +[daemonset](https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/) or +[statefulset](https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/) resources in the chart, they will +be replaced, which will cause a rolling update of the pods. + +## Import + +A Helm Release resource can be imported using its namespace and name e.g. + +```shell +$ terraform import helm_release.example default/example-name +``` + +~> **NOTE:** Since the `repository` attribute is not being persisted as metadata by helm, it will not be set to any value by default. All other provider specific attributes will be set to their default values and they can be overriden after running `apply` using the resource definition configuration. diff --git a/shuttles/terraform/terraform-provider-helm/terraform-registry-manifest.json b/shuttles/terraform/terraform-provider-helm/terraform-registry-manifest.json new file mode 100644 index 0000000..1931b0e --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/terraform-registry-manifest.json @@ -0,0 +1,6 @@ +{ + "version": 1, + "metadata": { + "protocol_versions": ["5.0"] + } +} diff --git a/shuttles/terraform/terraform-provider-helm/tools/tools.go b/shuttles/terraform/terraform-provider-helm/tools/tools.go new file mode 100644 index 0000000..307faf2 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/tools/tools.go @@ -0,0 +1,11 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + +//go:build tools +// +build tools + +package tools + +import ( + _ "github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs" +) diff --git a/shuttles/terraform/terraform-provider-helm/version/VERSION b/shuttles/terraform/terraform-provider-helm/version/VERSION new file mode 100644 index 0000000..b502146 --- /dev/null +++ b/shuttles/terraform/terraform-provider-helm/version/VERSION @@ -0,0 +1 @@ +3.0.2 diff --git a/shuttles/terraform/test-zitadel-jwt.sh b/shuttles/terraform/test-zitadel-jwt.sh new file mode 100755 index 0000000..7c350f5 --- /dev/null +++ b/shuttles/terraform/test-zitadel-jwt.sh @@ -0,0 +1,85 @@ +#!/bin/bash + +# Check if jq is installed +if ! command -v jq &> /dev/null; then + echo "jq is required but not installed. Install it first." + exit 1 +fi + +# Get Zitadel domain from ingress +ZITADEL_DOMAIN="zitadel.neptune.fourlights.dev" +echo "Zitadel Domain: $ZITADEL_DOMAIN" + +# Read service account details +SA_USER_ID=$(jq -r '.userId' /tmp/zitadel-sa.json) +SA_KEY_ID=$(jq -r '.keyId' /tmp/zitadel-sa.json) + +# Extract private key to a file +jq -r '.key' ./zitadel-admin-sa.json > /tmp/zitadel-private-key.pem + +# Create JWT header and payload +HEADER=$(echo -n '{"alg":"RS256","typ":"JWT","kid":"'$SA_KEY_ID'"}' | base64 -w 0 | tr '+/' '-_' | tr -d '=') +NOW=$(date +%s) +EXP=$((NOW + 3600)) # 1 hour expiration + +PAYLOAD=$(echo -n '{ + "iss": "'$SA_USER_ID'", + "sub": "'$SA_USER_ID'", + "aud": ["https://'$ZITADEL_DOMAIN'"], + "exp": '$EXP', + "iat": '$NOW' +}' | base64 -w 0 | tr '+/' '-_' | tr -d '=') + +# Create signature +SIGNATURE=$(echo -n "${HEADER}.${PAYLOAD}" | openssl dgst -sha256 -sign /tmp/zitadel-private-key.pem | base64 -w 0 | tr '+/' '-_' | tr -d '=') + +# Combine to create JWT +JWT="${HEADER}.${PAYLOAD}.${SIGNATURE}" + +echo "JWT token generated!" +echo "" + +# Exchange JWT for access token +echo "Exchanging JWT for access token..." +TOKEN_RESPONSE=$(curl -s -X POST "https://${ZITADEL_DOMAIN}/oauth/v2/token" \ + -H "Content-Type: application/x-www-form-urlencoded" \ + -d "grant_type=urn:ietf:params:oauth:grant-type:jwt-bearer" \ + -d "scope=openid profile email urn:zitadel:iam:org:project:id:zitadel:aud" \ + -d "assertion=${JWT}") + +echo "Token Response:" +echo $TOKEN_RESPONSE | jq '.' + +# Extract access token +ACCESS_TOKEN=$(echo $TOKEN_RESPONSE | jq -r '.access_token') + +if [ "$ACCESS_TOKEN" == "null" ] || [ -z "$ACCESS_TOKEN" ]; then + echo "Failed to get access token!" + exit 1 +fi + +echo "" +echo "Testing healthz endpoint..." +# Test healthz endpoint +HEALTH_RESPONSE=$(curl -s -w "\nHTTP_STATUS:%{http_code}" \ + -H "Authorization: Bearer ${ACCESS_TOKEN}" \ + "https://${ZITADEL_DOMAIN}/management/v1/healthz") + +HTTP_STATUS=$(echo "$HEALTH_RESPONSE" | grep "HTTP_STATUS:" | cut -d':' -f2) +BODY=$(echo "$HEALTH_RESPONSE" | sed '/HTTP_STATUS:/d') + +echo "Health Check Response:" +echo "Status Code: $HTTP_STATUS" +echo "Body: $BODY" + +# Clean up +rm -f /tmp/zitadel-sa.json /tmp/zitadel-private-key.pem + +if [ "$HTTP_STATUS" == "200" ]; then + echo "" + echo "✅ Health check successful!" +else + echo "" + echo "❌ Health check failed!" +fi + diff --git a/shuttles/terraform/zitadel-admin-sa.json b/shuttles/terraform/zitadel-admin-sa.json new file mode 100755 index 0000000..59573da --- /dev/null +++ b/shuttles/terraform/zitadel-admin-sa.json @@ -0,0 +1 @@ +{"type":"serviceaccount","keyId":"325785339216659468","key":"-----BEGIN RSA PRIVATE KEY-----\nMIIEpQIBAAKCAQEArG6ZrATATfby2fqOjPfReezyGA72hNWCSTR9bPPhqvFlHL2R\n1DAv4Y+jTBsKPdivkHbK7F3PEJ4auKsf/Sea5AY/3gBJDK4+DXTtJH7pN3ymUfeg\nwTlPHPpsStxFARKkLuFr2ayidJKu36rhLa7Q1tcZtMNiWKxDSOQtpJ8qmPboqDut\nyw51BbFZasp1IlYy3IqF3/SLo3bZQ/hjk3HRFXWaXGOGId0ddGX569ShaQwwcv4r\nPjTPyb/tXtnIaWcXCXkdvfAeKG5u/f4bRphYXgBDPM+PzTElCw+UZs/jEV3Vw0z8\n3WF53OuTdcZIEEug0PWuyITbsDxSUG45ToLvmQIDAQABAoIBAQCSHQ5e84+5AR98\nkpKk5YI+HQhwVo2SthG20qHN50M8xVz247Rk54hLTJoFbYxaJ/ltIxyE+mDyJedi\nwK9Up3Da9Gi+R+OeuS+f24rvuBMLj7aoEnvIADYHyjRlow1eAVva1e28AEuRGJLS\nuUwil9YjlxYTVNVLan2BkMkUjENeZcX32Atxf5zUTIxjJRuqEn/OrGfEE80vzeDg\nDeuWgIFkxo4wVYz+FxiTaR9QotQL2h9B2VY1B6ESLyCqqr3QAuPsnXcuY0+bTR9H\nWJNORHxHjVD3/Qt/AeMFDSy+BqHLqj6ijDd0mMg8UIR/xRBKvyxhkFrnFNoZRa5x\nOTFulqV5AoGBAOWu9fZFZkxqecBqaAD8UPXITYz1WO83vJzAFS05C08RhhOv1M4j\nBEXuSezxfJX1kTWjwcroK8wQRSWzBOg5S8l1Tz59ETK7tUbtpuHN/e616dDivyL4\nUSaCkIP5/nUuupmwwm1mw7ab0MY2gWK7mf/1J0sQm9bCPnE92nE+JUnrAoGBAMAw\nWZtXB1JTR5mE6xfkWUHUuTj4yiCOv2yDOrLTHwKyQnhcdYGcYa0ANw0ujcE9VUHf\nyEFnF5l15jF+laemZlnHTq/RwREQvtLo31SCHAmWowr3eE3yGpgB1ZTlSLHLm2DR\naQUCWzZDc8RUmvEdRKqLhMv1IR1s7YjBCn+8wyeLAoGBAOCTwkuab/wn4AQUBr1v\n+HlZ8Pnyq5K7nOBnsE0Xicc2CzMUqa8k7fiylfXn6Tl3cxRPmh0cBjbxcar678Fg\nxImm+mTPRRGmGAnSNWp0T+YoWQa1rs4ynqZY45Uny3Yoyqub+X+fC55xnCEzCi/P\n3zQ2MMVk5/uE0ilHoV84tJ0hAoGAAOc5RJWgHy7tAzewsygLk1eglzf0GzsQgz4K\npJSBbM3RqiclFjrZ6qo5mAJEAEh9ghW/Jy+I2NvI/SqPIX6StJFPOVxO//mILA2U\nHx2NbC4dDgwjsJoWreg0TMLXGJ7QWCAj0jY0n4ipnp6XK9LrY7HMKfk48p50b1QY\n7IjCkgkCgYEAgU76RTXtxCfU4fTZ/q+NkYPm7AWu3u7V1g0WOQPD5RGJmsUyl5Uy\n0zNPXWy7tLdYfNuG8Ef08B3fHJBib83NPvz1cH9lttvfp9KDxrZzQyU9zIIguqPI\ngxvoaZ8lyf97OOVUAcbRLkrNQfmHWN4AlKpdWvpOjd00qVtPRTQ8x3s=\n-----END RSA PRIVATE KEY-----\n","expirationDate":"2026-01-01T00:00:00Z","userId":"325785339216593932"}