hashicorp / terraform-cdk

Define infrastructure resources using programming constructs and provision them using HashiCorp Terraform
https://www.terraform.io/cdktf
Mozilla Public License 2.0
4.88k stars 456 forks source link

Cannot load plugins #3694

Closed paymog closed 3 months ago

paymog commented 3 months ago

Expected Behavior

Plugins should load as expected (and they were just a few minutes ago).

Actual Behavior

I get the following output

goldsky-infra-dev  Initializing the backend...
goldsky-infra-dev
                   Successfully configured the backend "remote"! Terraform will automatically
                   use this backend unless the backend configuration changes.
goldsky-infra-dev  Initializing provider plugins...
goldsky-infra-dev  - Finding hashicorp/helm versions matching "2.10.1"...
goldsky-infra-dev  - Finding hashicorp/http versions matching "2.1.0"...
goldsky-infra-dev  - Finding hashicorp/kubernetes versions matching "2.31.0"...
goldsky-infra-dev  - Finding hashicorp/random versions matching "3.1.3"...
goldsky-infra-dev  - Finding hashicorp/tls versions matching "3.1.0"...
goldsky-infra-dev  - Finding hashicorp/aws versions matching "5.52.0"...
goldsky-infra-dev  - Finding dopplerhq/doppler versions matching "1.1.6"...
goldsky-infra-dev  - Installing hashicorp/helm v2.10.1...
goldsky-infra-dev  - Installed hashicorp/helm v2.10.1 (signed by HashiCorp)
goldsky-infra-dev  - Installing hashicorp/http v2.1.0...
goldsky-infra-dev  - Installed hashicorp/http v2.1.0 (signed by HashiCorp)
goldsky-infra-dev  - Installing hashicorp/kubernetes v2.31.0...
goldsky-infra-dev  - Installed hashicorp/kubernetes v2.31.0 (signed by HashiCorp)
goldsky-infra-dev  - Installing hashicorp/random v3.1.3...
goldsky-infra-dev  - Installed hashicorp/random v3.1.3 (signed by HashiCorp)
goldsky-infra-dev  - Installing hashicorp/tls v3.1.0...
goldsky-infra-dev  - Installed hashicorp/tls v3.1.0 (signed by HashiCorp)
goldsky-infra-dev  - Installing hashicorp/aws v5.52.0...
goldsky-infra-dev  - Installed hashicorp/aws v5.52.0 (signed by HashiCorp)
goldsky-infra-dev  - Installing dopplerhq/doppler v1.1.6...
goldsky-infra-dev  - Installed dopplerhq/doppler v1.1.6 (self-signed, key ID D13E9DC04ACCB5E6)
                   Partner and community providers are signed by their developers.
                   If you'd like to know more about provider signing, you can read about it here:
                   https://www.terraform.io/docs/cli/plugins/signing.html
goldsky-infra-dev  Terraform has created a lock file .terraform.lock.hcl to record the provider
                   selections it made above. Include this file in your version control repository
                   so that Terraform can guarantee to make the same selections by default when
                   you run "terraform init" in the future.

                   Terraform has been successfully initialized!

                   You may now begin working with Terraform. Try running "terraform plan" to see
                   any changes that are required for your infrastructure. All Terraform commands
                   should now work.

                   If you ever set or change modules or backend configuration for Terraform,
                   rerun this command to reinitialize your working directory. If you forget, other
                   commands will detect it and remind you to do so if necessary.
goldsky-infra-dev  - Fetching dopplerhq/doppler 1.1.6 for linux_amd64...
goldsky-infra-dev  - Retrieved dopplerhq/doppler 1.1.6 for linux_amd64 (self-signed, key ID D13E9DC04ACCB5E6)
goldsky-infra-dev  - Fetching hashicorp/helm 2.10.1 for linux_amd64...
goldsky-infra-dev  - Retrieved hashicorp/helm 2.10.1 for linux_amd64 (signed by HashiCorp)
goldsky-infra-dev  - Fetching hashicorp/http 2.1.0 for linux_amd64...
goldsky-infra-dev  - Retrieved hashicorp/http 2.1.0 for linux_amd64 (signed by HashiCorp)
goldsky-infra-dev  - Fetching hashicorp/kubernetes 2.31.0 for linux_amd64...
goldsky-infra-dev  - Retrieved hashicorp/kubernetes 2.31.0 for linux_amd64 (signed by HashiCorp)
goldsky-infra-dev  - Fetching hashicorp/random 3.1.3 for linux_amd64...
goldsky-infra-dev  - Retrieved hashicorp/random 3.1.3 for linux_amd64 (signed by HashiCorp)
goldsky-infra-dev  - Fetching hashicorp/tls 3.1.0 for linux_amd64...
goldsky-infra-dev  - Retrieved hashicorp/tls 3.1.0 for linux_amd64 (signed by HashiCorp)
goldsky-infra-dev  - Fetching hashicorp/aws 5.52.0 for linux_amd64...
goldsky-infra-dev  - Retrieved hashicorp/aws 5.52.0 for linux_amd64 (signed by HashiCorp)
goldsky-infra-dev  - Obtained hashicorp/tls checksums for linux_amd64; Additional checksums for this platform are now tracked in the lock file
                   - Obtained hashicorp/aws checksums for linux_amd64; Additional checksums for this platform are now tracked in the lock file
                   - Obtained dopplerhq/doppler checksums for linux_amd64; Additional checksums for this platform are now tracked in the lock file
                   - Obtained hashicorp/helm checksums for linux_amd64; Additional checksums for this platform are now tracked in the lock file
                   - Obtained hashicorp/http checksums for linux_amd64; Additional checksums for this platform are now tracked in the lock file
                   - Obtained hashicorp/kubernetes checksums for linux_amd64; Additional checksums for this platform are now tracked in the lock file
                   - Obtained hashicorp/random checksums for linux_amd64; Additional checksums for this platform are now tracked in the lock file

                   Success! Terraform has updated the lock file.

                   Review the changes in .terraform.lock.hcl and then commit to your
                   version control system to retain the new checksums.
goldsky-infra-dev  ╷
                   │ Error: Failed to load plugin schemas
                   │
                   │ Error while loading schemas for plugin components: 2 problems:
                   │
                   │ - Failed to obtain provider schema: Could not load the schema for provider
                   │ registry.terraform.io/hashicorp/aws: failed to instantiate provider
                   │ "registry.terraform.io/hashicorp/aws" to obtain schema: Unrecognized remote
                   │ plugin message:
                   │ Failed to read any lines from plugin's stdout
                   │ This usually means
                   │   the plugin was not compiled for this architecture,
                   │   the plugin is missing dynamic-link libraries necessary to run,
                   │   the plugin is not executable by this process due to file permissions, or
                   │   the plugin failed to negotiate the initial go-plugin protocol handshake
                   │
goldsky-infra-dev  │ Additional notes about plugin:
                   │   Path: .terraform/providers/registry.terraform.io/hashicorp/aws/5.52.0/darwin_arm64/terraform-provider-aws_v5.52.0_x5
                   │   Mode: -rwxr-xr-x
                   │   Owner: 502 [paymahn] (current: 502 [paymahn])
                   │   Group: 20 [staff] (current: 20 [staff])
                   │   MachO architecture: CpuArm64 (current architecture: arm64)
                   │ .
                   │ - Failed to obtain provider schema: Could not load the schema for provider
                   │ registry.terraform.io/hashicorp/tls: failed to instantiate provider
                   │ "registry.terraform.io/hashicorp/tls" to obtain schema: Unrecognized remote
                   │ plugin message:
                   │ Failed to read any lines from plugin's stdout
                   │ This usually means
                   │   the plugin was not compiled for this architecture,
                   │   the plugin is missing dynamic-link libraries necessary to run,
goldsky-infra-dev  │   the plugin is not executable by this process due to file permissions, or
                   │   the plugin failed to negotiate the initial go-plugin protocol handshake
                   │
                   │ Additional notes about plugin:
                   │   Path: .terraform/providers/registry.terraform.io/hashicorp/tls/3.1.0/darwin_arm64/terraform-provider-tls_v3.1.0_x5
                   │   Mode: -rwxr-xr-x
                   │   Owner: 502 [paymahn] (current: 502 [paymahn])
                   │   Group: 20 [staff] (current: 20 [staff])
                   │   MachO architecture: CpuArm64 (current architecture: arm64)
                   │ ..
                   ╵

0 Stacks deploying     1 Stack done     0 Stacks waiting

Steps to Reproduce

Not sure how to reproduce

Versions

 ❯❯❯ npx cdktf debug
cdktf debug
language: typescript
cdktf-cli: 0.20.8
node: v18.17.0
cdktf: 0.20.8
constructs: 10.3.0
jsii: null
terraform: 1.9.3
arch: arm64
os: darwin 23.5.0
providers
aws@~> 5.52 (LOCAL)
        terraform provider version: 5.57.0
kubernetes@ ~> 2.31.0 (LOCAL)
        terraform provider version: 2.31.0
http@ ~> 2.1.0 (LOCAL)
        terraform provider version: 2.1.0
tls@ ~> 3.1.0 (LOCAL)
        terraform provider version: 3.1.0
random@ ~> 3.1.0 (LOCAL)
        terraform provider version: 3.1.3
gavinbunney/kubectl@~> 1.14.0 (LOCAL)
        terraform provider version: 1.14.0
DopplerHQ/doppler@1.1.6 (LOCAL)
        terraform provider version: 1.1.6
helm@undefined (LOCAL)
        terraform provider version: 2.14.0
@cdktf/provider-aws (PREBUILT)
        terraform provider version: 5.52.0
        prebuilt provider version: 19.21.0
        cdktf version: ^0.20.0
@cdktf/provider-kubernetes (PREBUILT)
        terraform provider version: 2.31.0
        prebuilt provider version: 11.6.0
        cdktf version: ^0.20.0

Providers

 ❮❮❮ npx cdktf provider list
┌─────────────────────┬──────────────────┬─────────┬────────────┬────────────────────────────┬─────────────────┐
│ Provider Name       │ Provider Version │ CDKTF   │ Constraint │ Package Name               │ Package Version │
├─────────────────────┼──────────────────┼─────────┼────────────┼────────────────────────────┼─────────────────┤
│ aws                 │ 5.57.0           │         │ ~> 5.52    │                            │                 │
├─────────────────────┼──────────────────┼─────────┼────────────┼────────────────────────────┼─────────────────┤
│ kubernetes          │ 2.31.0           │         │  ~> 2.31.0 │                            │                 │
├─────────────────────┼──────────────────┼─────────┼────────────┼────────────────────────────┼─────────────────┤
│ http                │ 2.1.0            │         │  ~> 2.1.0  │                            │                 │
├─────────────────────┼──────────────────┼─────────┼────────────┼────────────────────────────┼─────────────────┤
│ tls                 │ 3.1.0            │         │  ~> 3.1.0  │                            │                 │
├─────────────────────┼──────────────────┼─────────┼────────────┼────────────────────────────┼─────────────────┤
│ random              │ 3.1.3            │         │  ~> 3.1.0  │                            │                 │
├─────────────────────┼──────────────────┼─────────┼────────────┼────────────────────────────┼─────────────────┤
│ gavinbunney/kubectl │ 1.14.0           │         │ ~> 1.14.0  │                            │                 │
├─────────────────────┼──────────────────┼─────────┼────────────┼────────────────────────────┼─────────────────┤
│ DopplerHQ/doppler   │ 1.1.6            │         │ 1.1.6      │                            │                 │
├─────────────────────┼──────────────────┼─────────┼────────────┼────────────────────────────┼─────────────────┤
│ helm                │ 2.14.0           │         │            │                            │                 │
├─────────────────────┼──────────────────┼─────────┼────────────┼────────────────────────────┼─────────────────┤
│ aws                 │ 5.52.0           │ ^0.20.0 │            │ @cdktf/provider-aws        │ 19.21.0         │
├─────────────────────┼──────────────────┼─────────┼────────────┼────────────────────────────┼─────────────────┤
│ kubernetes          │ 2.31.0           │ ^0.20.0 │            │ @cdktf/provider-kubernetes │ 11.6.0          │
└─────────────────────┴──────────────────┴─────────┴────────────┴────────────────────────────┴─────────────────┘

Gist

No response

Possible Solutions

No response

Workarounds

No response

Anything Else?

No response

References

No response

Help Wanted

Community Note

paymog commented 3 months ago

Also can't run cdktf get either. Here are logs with debug output.

11:20AM /Users/paymahn/code/goldsky/goldsky-infra  ✘ 1 dev ✭
 ❯❯❯ TF_LOG=DEBUG npx cdktf get
[2024-08-05T11:20:07.309] [ERROR] default - 2024-08-05T11:20:06.493-0500 [INFO]  Terraform version: 1.9.3
2024-08-05T11:20:06.493-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:06.493-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:06.493-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:06.493-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:06.493-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:06.493-0500 [INFO]  CLI args: []string{"terraform", "version", "-json"}
2024-08-05T11:20:06.493-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:06.493-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2024-08-05T11:20:06.493-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json
2024-08-05T11:20:06.493-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:06.493-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:06.493-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:06.493-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
2024-08-05T11:20:06.493-0500 [INFO]  CLI command args: []string{"version", "-json"}

2024-08-05T11:20:06.493-0500 [INFO]  Terraform version: 1.9.3
2024-08-05T11:20:06.493-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:06.493-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:06.493-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:06.493-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:06.493-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:06.493-0500 [INFO]  CLI args: []string{"terraform", "version", "-json"}
2024-08-05T11:20:06.493-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:06.493-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2024-08-05T11:20:06.493-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json
2024-08-05T11:20:06.493-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:06.493-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:06.493-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:06.493-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
2024-08-05T11:20:06.493-0500 [INFO]  CLI command args: []string{"version", "-json"}
[2024-08-05T11:20:07.310] [ERROR] default - 2024-08-05T11:20:06.679-0500 [INFO]  Terraform version: 1.9.3
2024-08-05T11:20:06.679-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:06.679-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:06.679-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:06.679-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:06.679-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:06.679-0500 [INFO]  CLI args: []string{"terraform", "version", "-json"}
2024-08-05T11:20:06.679-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:06.679-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2024-08-05T11:20:06.679-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json
2024-08-05T11:20:06.680-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:06.680-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:06.680-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:06.680-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
2024-08-05T11:20:06.680-0500 [INFO]  CLI command args: []string{"version", "-json"}

2024-08-05T11:20:06.679-0500 [INFO]  Terraform version: 1.9.3
2024-08-05T11:20:06.679-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:06.679-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:06.679-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:06.679-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:06.679-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:06.679-0500 [INFO]  CLI args: []string{"terraform", "version", "-json"}
2024-08-05T11:20:06.679-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:06.679-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2024-08-05T11:20:06.679-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json
2024-08-05T11:20:06.680-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:06.680-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:06.680-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:06.680-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
2024-08-05T11:20:06.680-0500 [INFO]  CLI command args: []string{"version", "-json"}
[2024-08-05T11:20:07.316] [ERROR] default - 2024-08-05T11:20:07.142-0500 [INFO]  Terraform version: 1.9.3
2024-08-05T11:20:07.142-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:07.142-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:07.142-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:07.142-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:07.142-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:07.142-0500 [INFO]  CLI args: []string{"terraform", "version", "-json"}
2024-08-05T11:20:07.142-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:07.142-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2024-08-05T11:20:07.142-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json
2024-08-05T11:20:07.142-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:07.142-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:07.142-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.142-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.142-0500 [INFO]  CLI command args: []string{"version", "-json"}

2024-08-05T11:20:07.142-0500 [INFO]  Terraform version: 1.9.3
2024-08-05T11:20:07.142-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:07.142-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:07.142-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:07.142-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:07.142-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:07.142-0500 [INFO]  CLI args: []string{"terraform", "version", "-json"}
2024-08-05T11:20:07.142-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:07.142-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2024-08-05T11:20:07.142-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json
2024-08-05T11:20:07.142-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:07.142-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:07.142-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.142-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.142-0500 [INFO]  CLI command args: []string{"version", "-json"}
[2024-08-05T11:20:07.789] [ERROR] default - 2024-08-05T11:20:07.788-0500 [INFO]  Terraform version: 1.9.3

[2024-08-05T11:20:07.789] [ERROR] default - 2024-08-05T11:20:07.788-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:07.788-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:07.788-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:07.788-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:07.788-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:07.788-0500 [INFO]  CLI args: []string{"terraform", "-v"}
2024-08-05T11:20:07.788-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:07.789-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2024-08-05T11:20:07.789-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json
2024-08-05T11:20:07.789-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:07.789-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:07.789-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.789-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.789-0500 [INFO]  CLI command args: []string{"version", "-v"}

⠋ downloading and generating modules and providers...
[2024-08-05T11:20:07.859] [ERROR] default - 2024-08-05T11:20:07.859-0500 [INFO]  Terraform version: 1.9.3
2024-08-05T11:20:07.859-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:07.859-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:07.859-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:07.859-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:07.859-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:07.859-0500 [INFO]  CLI args: []string{"terraform", "init"}
2024-08-05T11:20:07.859-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:07.859-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2024-08-05T11:20:07.859-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json

2024-08-05T11:20:07.859-0500 [INFO]  Terraform version: 1.9.3
2024-08-05T11:20:07.859-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:07.859-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:07.859-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:07.859-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:07.859-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:07.859-0500 [INFO]  CLI args: []string{"terraform", "init"}
2024-08-05T11:20:07.859-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:07.859-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2024-08-05T11:20:07.859-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json
[2024-08-05T11:20:07.860] [ERROR] default - 2024-08-05T11:20:07.859-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:07.859-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:07.859-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.859-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins

2024-08-05T11:20:07.859-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:07.859-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:07.859-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.859-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
[2024-08-05T11:20:07.861] [ERROR] default - 2024-08-05T11:20:07.861-0500 [INFO]  CLI command args: []string{"init"}

2024-08-05T11:20:07.861-0500 [INFO]  CLI command args: []string{"init"}
[2024-08-05T11:20:07.862] [ERROR] default - 2024-08-05T11:20:07.862-0500 [DEBUG] checking for provisioner in "."

2024-08-05T11:20:07.862-0500 [DEBUG] checking for provisioner in "."
[2024-08-05T11:20:07.863] [ERROR] default - 2024-08-05T11:20:07.862-0500 [INFO]  Terraform version: 1.9.3
2024-08-05T11:20:07.862-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:07.862-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:07.862-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:07.862-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:07.862-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:07.862-0500 [INFO]  CLI args: []string{"terraform", "init"}
2024-08-05T11:20:07.862-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:07.862-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.

2024-08-05T11:20:07.862-0500 [INFO]  Terraform version: 1.9.3
2024-08-05T11:20:07.862-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:07.862-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:07.862-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:07.862-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:07.862-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:07.862-0500 [INFO]  CLI args: []string{"terraform", "init"}
2024-08-05T11:20:07.862-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:07.862-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
[2024-08-05T11:20:07.863] [ERROR] default - 2024-08-05T11:20:07.863-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json
2024-08-05T11:20:07.863-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:07.863-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:07.863-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.863-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins

2024-08-05T11:20:07.863-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json
2024-08-05T11:20:07.863-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:07.863-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:07.863-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.863-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
[2024-08-05T11:20:07.864] [ERROR] default - 2024-08-05T11:20:07.863-0500 [INFO]  CLI command args: []string{"init"}
2024-08-05T11:20:07.864-0500 [DEBUG] checking for provisioner in "."

2024-08-05T11:20:07.863-0500 [INFO]  CLI command args: []string{"init"}
2024-08-05T11:20:07.864-0500 [DEBUG] checking for provisioner in "."
[2024-08-05T11:20:07.867] [ERROR] default - 2024-08-05T11:20:07.866-0500 [INFO]  Terraform version: 1.9.3
2024-08-05T11:20:07.866-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:07.866-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:07.866-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:07.866-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:07.866-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:07.866-0500 [INFO]  CLI args: []string{"terraform", "init"}
2024-08-05T11:20:07.866-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:07.866-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2024-08-05T11:20:07.866-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json
2024-08-05T11:20:07.867-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:07.867-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:07.867-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.867-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins

2024-08-05T11:20:07.866-0500 [INFO]  Terraform version: 1.9.3
2024-08-05T11:20:07.866-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:07.866-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:07.866-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:07.866-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:07.866-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:07.866-0500 [INFO]  CLI args: []string{"terraform", "init"}
2024-08-05T11:20:07.866-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:07.866-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2024-08-05T11:20:07.866-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json
2024-08-05T11:20:07.867-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:07.867-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:07.867-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.867-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
[2024-08-05T11:20:07.868] [ERROR] default - 2024-08-05T11:20:07.868-0500 [INFO]  CLI command args: []string{"init"}

2024-08-05T11:20:07.868-0500 [INFO]  CLI command args: []string{"init"}
[2024-08-05T11:20:07.868] [ERROR] default - 2024-08-05T11:20:07.868-0500 [DEBUG] checking for provisioner in "."

2024-08-05T11:20:07.868-0500 [DEBUG] checking for provisioner in "."
[2024-08-05T11:20:07.869] [ERROR] default - 2024-08-05T11:20:07.869-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"

2024-08-05T11:20:07.869-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"
[2024-08-05T11:20:07.870] [ERROR] default - 2024-08-05T11:20:07.870-0500 [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json

2024-08-05T11:20:07.870-0500 [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json
[2024-08-05T11:20:07.870] [ERROR] default - 2024-08-05T11:20:07.870-0500 [INFO]  Terraform version: 1.9.3
2024-08-05T11:20:07.870-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:07.870-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:07.870-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:07.870-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:07.870-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:07.870-0500 [INFO]  CLI args: []string{"terraform", "init"}
2024-08-05T11:20:07.870-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:07.870-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2024-08-05T11:20:07.870-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json

2024-08-05T11:20:07.870-0500 [INFO]  Terraform version: 1.9.3
2024-08-05T11:20:07.870-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:07.870-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:07.870-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:07.870-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:07.870-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:07.870-0500 [INFO]  CLI args: []string{"terraform", "init"}
2024-08-05T11:20:07.870-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:07.870-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2024-08-05T11:20:07.870-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json
[2024-08-05T11:20:07.870] [ERROR] default - 2024-08-05T11:20:07.870-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:07.870-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins

2024-08-05T11:20:07.870-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:07.870-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
[2024-08-05T11:20:07.870] [ERROR] default - 2024-08-05T11:20:07.870-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.870-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins

2024-08-05T11:20:07.870-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.870-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
[2024-08-05T11:20:07.871] [ERROR] default - 2024-08-05T11:20:07.870-0500 [INFO]  CLI command args: []string{"init"}

2024-08-05T11:20:07.870-0500 [INFO]  CLI command args: []string{"init"}
[2024-08-05T11:20:07.871] [ERROR] default - 2024-08-05T11:20:07.871-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"

2024-08-05T11:20:07.871-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"
[2024-08-05T11:20:07.871] [ERROR] default - 2024-08-05T11:20:07.871-0500 [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json

2024-08-05T11:20:07.871-0500 [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json
[2024-08-05T11:20:07.871] [ERROR] default - 2024-08-05T11:20:07.871-0500 [DEBUG] checking for provisioner in "."

2024-08-05T11:20:07.871-0500 [DEBUG] checking for provisioner in "."
[2024-08-05T11:20:07.871] [ERROR] default - 2024-08-05T11:20:07.871-0500 [INFO]  Terraform version: 1.9.3

2024-08-05T11:20:07.871-0500 [INFO]  Terraform version: 1.9.3
[2024-08-05T11:20:07.871] [ERROR] default - 2024-08-05T11:20:07.871-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:07.871-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0

2024-08-05T11:20:07.871-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:07.871-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
[2024-08-05T11:20:07.871] [ERROR] default - 2024-08-05T11:20:07.871-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:07.871-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:07.871-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:07.871-0500 [INFO]  CLI args: []string{"terraform", "init"}
2024-08-05T11:20:07.871-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:07.871-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.

2024-08-05T11:20:07.871-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:07.871-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:07.871-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:07.871-0500 [INFO]  CLI args: []string{"terraform", "init"}
2024-08-05T11:20:07.871-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:07.871-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
[2024-08-05T11:20:07.871] [ERROR] default - 2024-08-05T11:20:07.871-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json

2024-08-05T11:20:07.871-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json
[2024-08-05T11:20:07.871] [ERROR] default - 2024-08-05T11:20:07.871-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:07.871-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins

2024-08-05T11:20:07.871-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:07.871-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
[2024-08-05T11:20:07.871] [ERROR] default - 2024-08-05T11:20:07.871-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.871-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins

2024-08-05T11:20:07.871-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.871-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
[2024-08-05T11:20:07.872] [ERROR] default - 2024-08-05T11:20:07.872-0500 [INFO]  CLI command args: []string{"init"}

2024-08-05T11:20:07.872-0500 [INFO]  CLI command args: []string{"init"}
[2024-08-05T11:20:07.872] [ERROR] default - 2024-08-05T11:20:07.872-0500 [INFO]  Terraform version: 1.9.3
2024-08-05T11:20:07.872-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:07.872-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:07.872-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:07.872-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:07.872-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:07.872-0500 [INFO]  CLI args: []string{"terraform", "init"}
2024-08-05T11:20:07.872-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:07.872-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.

2024-08-05T11:20:07.872-0500 [INFO]  Terraform version: 1.9.3
2024-08-05T11:20:07.872-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:07.872-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:07.872-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:07.872-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:07.872-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:07.872-0500 [INFO]  CLI args: []string{"terraform", "init"}
2024-08-05T11:20:07.872-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:07.872-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
[2024-08-05T11:20:07.872] [ERROR] default - 2024-08-05T11:20:07.872-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json

2024-08-05T11:20:07.872-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json
[2024-08-05T11:20:07.872] [ERROR] default - 2024-08-05T11:20:07.872-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:07.872-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins

2024-08-05T11:20:07.872-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:07.872-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
[2024-08-05T11:20:07.872] [ERROR] default - 2024-08-05T11:20:07.872-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.872-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins

2024-08-05T11:20:07.872-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.872-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
[2024-08-05T11:20:07.872] [ERROR] default - 2024-08-05T11:20:07.872-0500 [DEBUG] checking for provisioner in "."

2024-08-05T11:20:07.872-0500 [DEBUG] checking for provisioner in "."
[2024-08-05T11:20:07.872] [ERROR] default - 2024-08-05T11:20:07.872-0500 [INFO]  CLI command args: []string{"init"}

2024-08-05T11:20:07.872-0500 [INFO]  CLI command args: []string{"init"}
[2024-08-05T11:20:07.873] [ERROR] default - 2024-08-05T11:20:07.873-0500 [DEBUG] checking for provisioner in "."

2024-08-05T11:20:07.873-0500 [DEBUG] checking for provisioner in "."
[2024-08-05T11:20:07.876] [ERROR] default - 2024-08-05T11:20:07.876-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"
2024-08-05T11:20:07.876-0500 [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json

2024-08-05T11:20:07.876-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"
2024-08-05T11:20:07.876-0500 [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json
[2024-08-05T11:20:07.879] [ERROR] default - 2024-08-05T11:20:07.878-0500 [INFO]  Terraform version: 1.9.3

2024-08-05T11:20:07.878-0500 [INFO]  Terraform version: 1.9.3
[2024-08-05T11:20:07.879] [ERROR] default - 2024-08-05T11:20:07.879-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:07.879-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:07.879-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:07.879-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:07.879-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:07.879-0500 [INFO]  CLI args: []string{"terraform", "init"}
2024-08-05T11:20:07.879-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:07.879-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.

2024-08-05T11:20:07.879-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:07.879-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:07.879-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:07.879-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:07.879-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:07.879-0500 [INFO]  CLI args: []string{"terraform", "init"}
2024-08-05T11:20:07.879-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:07.879-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
[2024-08-05T11:20:07.879] [ERROR] default - 2024-08-05T11:20:07.879-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json

2024-08-05T11:20:07.879-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json
[2024-08-05T11:20:07.879] [ERROR] default - 2024-08-05T11:20:07.879-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:07.879-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins

2024-08-05T11:20:07.879-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:07.879-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
[2024-08-05T11:20:07.879] [ERROR] default - 2024-08-05T11:20:07.879-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.879-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins

2024-08-05T11:20:07.879-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.879-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
[2024-08-05T11:20:07.879] [ERROR] default - 2024-08-05T11:20:07.879-0500 [INFO]  CLI command args: []string{"init"}

2024-08-05T11:20:07.879-0500 [INFO]  CLI command args: []string{"init"}
[2024-08-05T11:20:07.880] [ERROR] default - 2024-08-05T11:20:07.880-0500 [DEBUG] checking for provisioner in "."

2024-08-05T11:20:07.880-0500 [DEBUG] checking for provisioner in "."
[2024-08-05T11:20:07.881] [ERROR] default - 2024-08-05T11:20:07.881-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"

2024-08-05T11:20:07.881-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"
[2024-08-05T11:20:07.881] [ERROR] default - 2024-08-05T11:20:07.881-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"

2024-08-05T11:20:07.881-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"
[2024-08-05T11:20:07.881] [ERROR] default - 2024-08-05T11:20:07.881-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"

2024-08-05T11:20:07.881-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"
[2024-08-05T11:20:07.881] [ERROR] default - 2024-08-05T11:20:07.881-0500 [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json

2024-08-05T11:20:07.881-0500 [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json
[2024-08-05T11:20:07.881] [ERROR] default - 2024-08-05T11:20:07.881-0500 [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json

2024-08-05T11:20:07.881-0500 [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json
[2024-08-05T11:20:07.881] [ERROR] default - 2024-08-05T11:20:07.881-0500 [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json

2024-08-05T11:20:07.881-0500 [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json
[2024-08-05T11:20:07.884] [ERROR] default - 2024-08-05T11:20:07.883-0500 [INFO]  Terraform version: 1.9.3

2024-08-05T11:20:07.883-0500 [INFO]  Terraform version: 1.9.3
[2024-08-05T11:20:07.884] [ERROR] default - 2024-08-05T11:20:07.884-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:07.884-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:07.884-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:07.884-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:07.884-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:07.884-0500 [INFO]  CLI args: []string{"terraform", "init"}
2024-08-05T11:20:07.884-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:07.884-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.

2024-08-05T11:20:07.884-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:07.884-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:07.884-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:07.884-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:07.884-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:07.884-0500 [INFO]  CLI args: []string{"terraform", "init"}
2024-08-05T11:20:07.884-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:07.884-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
[2024-08-05T11:20:07.884] [ERROR] default - 2024-08-05T11:20:07.884-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json

2024-08-05T11:20:07.884-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json
[2024-08-05T11:20:07.884] [ERROR] default - 2024-08-05T11:20:07.884-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins

2024-08-05T11:20:07.884-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
[2024-08-05T11:20:07.884] [ERROR] default - 2024-08-05T11:20:07.884-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:07.884-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.884-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins

2024-08-05T11:20:07.884-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:07.884-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:07.884-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
[2024-08-05T11:20:07.884] [ERROR] default - 2024-08-05T11:20:07.884-0500 [INFO]  CLI command args: []string{"init"}

2024-08-05T11:20:07.884-0500 [INFO]  CLI command args: []string{"init"}
[2024-08-05T11:20:07.885] [ERROR] default - 2024-08-05T11:20:07.884-0500 [DEBUG] checking for provisioner in "."

2024-08-05T11:20:07.884-0500 [DEBUG] checking for provisioner in "."
[2024-08-05T11:20:07.885] [ERROR] default - 2024-08-05T11:20:07.885-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"

2024-08-05T11:20:07.885-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"
[2024-08-05T11:20:07.885] [ERROR] default - 2024-08-05T11:20:07.885-0500 [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json

2024-08-05T11:20:07.885-0500 [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json
[2024-08-05T11:20:07.889] [ERROR] default - 2024-08-05T11:20:07.889-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"

2024-08-05T11:20:07.889-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"
[2024-08-05T11:20:07.889] [ERROR] default - 2024-08-05T11:20:07.889-0500 [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json

⠙ downloading and generating modules and providers...
[2024-08-05T11:20:07.931] [ERROR] default - 2024-08-05T11:20:07.931-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/kubernetes/versions

2024-08-05T11:20:07.931-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/kubernetes/versions
[2024-08-05T11:20:07.932] [ERROR] default - 2024-08-05T11:20:07.932-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/dopplerhq/doppler/versions

2024-08-05T11:20:07.932-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/dopplerhq/doppler/versions
[2024-08-05T11:20:07.936] [ERROR] default - 2024-08-05T11:20:07.936-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/http/versions

2024-08-05T11:20:07.936-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/http/versions
[2024-08-05T11:20:07.949] [ERROR] default - 2024-08-05T11:20:07.949-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/tls/versions

2024-08-05T11:20:07.949-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/tls/versions
[2024-08-05T11:20:07.949] [ERROR] default - 2024-08-05T11:20:07.949-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/random/versions

2024-08-05T11:20:07.949-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/random/versions
[2024-08-05T11:20:07.949] [ERROR] default - 2024-08-05T11:20:07.949-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/gavinbunney/kubectl/versions

2024-08-05T11:20:07.949-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/gavinbunney/kubectl/versions
[2024-08-05T11:20:07.949] [ERROR] default - 2024-08-05T11:20:07.949-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/aws/versions

2024-08-05T11:20:07.949-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/aws/versions
[2024-08-05T11:20:07.949] [ERROR] default - 2024-08-05T11:20:07.949-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/helm/versions

2024-08-05T11:20:07.949-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/helm/versions
[2024-08-05T11:20:07.977] [ERROR] default - 2024-08-05T11:20:07.977-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/kubernetes/2.31.0/download/darwin/arm64

2024-08-05T11:20:07.977-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/kubernetes/2.31.0/download/darwin/arm64
[2024-08-05T11:20:07.979] [ERROR] default - 2024-08-05T11:20:07.979-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/dopplerhq/doppler/1.1.6/download/darwin/arm64

2024-08-05T11:20:07.979-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/dopplerhq/doppler/1.1.6/download/darwin/arm64
[2024-08-05T11:20:07.984] [ERROR] default - 2024-08-05T11:20:07.984-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/http/2.1.0/download/darwin/arm64

⠹ downloading and generating modules and providers...
[2024-08-05T11:20:08.003] [ERROR] default - 2024-08-05T11:20:08.003-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/tls/3.1.0/download/darwin/arm64

2024-08-05T11:20:08.003-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/tls/3.1.0/download/darwin/arm64
[2024-08-05T11:20:08.003] [ERROR] default - 2024-08-05T11:20:08.003-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/helm/2.14.0/download/darwin/arm64

2024-08-05T11:20:08.003-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/helm/2.14.0/download/darwin/arm64
[2024-08-05T11:20:08.005] [ERROR] default - 2024-08-05T11:20:08.005-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/random/3.1.3/download/darwin/arm64

2024-08-05T11:20:08.005-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/random/3.1.3/download/darwin/arm64
[2024-08-05T11:20:08.006] [ERROR] default - 2024-08-05T11:20:08.006-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/gavinbunney/kubectl/1.14.0/download/darwin/arm64

2024-08-05T11:20:08.006-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/gavinbunney/kubectl/1.14.0/download/darwin/arm64
[2024-08-05T11:20:08.006] [ERROR] default - 2024-08-05T11:20:08.006-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/aws/5.61.0/download/darwin/arm64

2024-08-05T11:20:08.006-0500 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/aws/5.61.0/download/darwin/arm64
[2024-08-05T11:20:08.019] [ERROR] default - 2024-08-05T11:20:08.019-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-kubernetes/2.31.0/terraform-provider-kubernetes_2.31.0_SHA256SUMS

2024-08-05T11:20:08.019-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-kubernetes/2.31.0/terraform-provider-kubernetes_2.31.0_SHA256SUMS
[2024-08-05T11:20:08.021] [ERROR] default - 2024-08-05T11:20:08.021-0500 [DEBUG] GET https://github.com/DopplerHQ/terraform-provider-doppler/releases/download/v1.1.6/terraform-provider-doppler_1.1.6_SHA256SUMS

2024-08-05T11:20:08.021-0500 [DEBUG] GET https://github.com/DopplerHQ/terraform-provider-doppler/releases/download/v1.1.6/terraform-provider-doppler_1.1.6_SHA256SUMS
[2024-08-05T11:20:08.033] [ERROR] default - 2024-08-05T11:20:08.033-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-http/2.1.0/terraform-provider-http_2.1.0_SHA256SUMS

2024-08-05T11:20:08.033-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-http/2.1.0/terraform-provider-http_2.1.0_SHA256SUMS
[2024-08-05T11:20:08.055] [ERROR] default - 2024-08-05T11:20:08.054-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-random/3.1.3/terraform-provider-random_3.1.3_SHA256SUMS

2024-08-05T11:20:08.054-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-random/3.1.3/terraform-provider-random_3.1.3_SHA256SUMS
[2024-08-05T11:20:08.055] [ERROR] default - 2024-08-05T11:20:08.054-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-aws/5.61.0/terraform-provider-aws_5.61.0_SHA256SUMS

2024-08-05T11:20:08.054-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-aws/5.61.0/terraform-provider-aws_5.61.0_SHA256SUMS
[2024-08-05T11:20:08.055] [ERROR] default - 2024-08-05T11:20:08.054-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-helm/2.14.0/terraform-provider-helm_2.14.0_SHA256SUMS

2024-08-05T11:20:08.054-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-helm/2.14.0/terraform-provider-helm_2.14.0_SHA256SUMS
[2024-08-05T11:20:08.056] [ERROR] default - 2024-08-05T11:20:08.056-0500 [DEBUG] GET https://github.com/gavinbunney/terraform-provider-kubectl/releases/download/v1.14.0/terraform-provider-kubectl_1.14.0_SHA256SUMS

2024-08-05T11:20:08.056-0500 [DEBUG] GET https://github.com/gavinbunney/terraform-provider-kubectl/releases/download/v1.14.0/terraform-provider-kubectl_1.14.0_SHA256SUMS
[2024-08-05T11:20:08.056] [ERROR] default - 2024-08-05T11:20:08.056-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-tls/3.1.0/terraform-provider-tls_3.1.0_SHA256SUMS

2024-08-05T11:20:08.056-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-tls/3.1.0/terraform-provider-tls_3.1.0_SHA256SUMS
[2024-08-05T11:20:08.066] [ERROR] default - 2024-08-05T11:20:08.066-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-kubernetes/2.31.0/terraform-provider-kubernetes_2.31.0_SHA256SUMS.72D7468F.sig

⠸ downloading and generating modules and providers...
[2024-08-05T11:20:08.071] [ERROR] default - 2024-08-05T11:20:08.071-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-http/2.1.0/terraform-provider-http_2.1.0_SHA256SUMS.72D7468F.sig

2024-08-05T11:20:08.071-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-http/2.1.0/terraform-provider-http_2.1.0_SHA256SUMS.72D7468F.sig
[2024-08-05T11:20:08.096] [ERROR] default - 2024-08-05T11:20:08.096-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-tls/3.1.0/terraform-provider-tls_3.1.0_SHA256SUMS.72D7468F.sig

2024-08-05T11:20:08.096-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-tls/3.1.0/terraform-provider-tls_3.1.0_SHA256SUMS.72D7468F.sig
[2024-08-05T11:20:08.102] [ERROR] default - 2024-08-05T11:20:08.102-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-helm/2.14.0/terraform-provider-helm_2.14.0_SHA256SUMS.72D7468F.sig

2024-08-05T11:20:08.102-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-helm/2.14.0/terraform-provider-helm_2.14.0_SHA256SUMS.72D7468F.sig
[2024-08-05T11:20:08.103] [ERROR] default - 2024-08-05T11:20:08.103-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-aws/5.61.0/terraform-provider-aws_5.61.0_SHA256SUMS.72D7468F.sig

2024-08-05T11:20:08.103-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-aws/5.61.0/terraform-provider-aws_5.61.0_SHA256SUMS.72D7468F.sig
[2024-08-05T11:20:08.104] [ERROR] default - 2024-08-05T11:20:08.104-0500 [DEBUG] GET https://releases.hashicorp.com/terraform-provider-random/3.1.3/terraform-provider-random_3.1.3_SHA256SUMS.72D7468F.sig

⠴ downloading and generating modules and providers...
[2024-08-05T11:20:08.303] [ERROR] default - 2024-08-05T11:20:08.303-0500 [DEBUG] GET https://github.com/DopplerHQ/terraform-provider-doppler/releases/download/v1.1.6/terraform-provider-doppler_1.1.6_SHA256SUMS.sig

⠧ downloading and generating modules and providers...
[2024-08-05T11:20:08.415] [ERROR] default - 2024-08-05T11:20:08.415-0500 [DEBUG] GET https://github.com/gavinbunney/terraform-provider-kubectl/releases/download/v1.14.0/terraform-provider-kubectl_1.14.0_SHA256SUMS.sig

⠸ downloading and generating modules and providers...
[2024-08-05T11:20:08.924] [ERROR] default - 2024-08-05T11:20:08.923-0500 [DEBUG] Provider signed by 34365D9472D7468F HashiCorp Security (hashicorp.com/security) <security@hashicorp.com>

2024-08-05T11:20:08.923-0500 [DEBUG] Provider signed by 34365D9472D7468F HashiCorp Security (hashicorp.com/security) <security@hashicorp.com>
[2024-08-05T11:20:08.931] [ERROR] default - 2024-08-05T11:20:08.930-0500 [DEBUG] Provider signed by 34365D9472D7468F HashiCorp Security (hashicorp.com/security) <security@hashicorp.com>

2024-08-05T11:20:08.930-0500 [DEBUG] Provider signed by 34365D9472D7468F HashiCorp Security (hashicorp.com/security) <security@hashicorp.com>
[2024-08-05T11:20:08.938] [ERROR] default - 2024-08-05T11:20:08.938-0500 [DEBUG] Provider signed by 34365D9472D7468F HashiCorp Security (hashicorp.com/security) <security@hashicorp.com>

⠴ downloading and generating modules and providers...
[2024-08-05T11:20:09.066] [ERROR] default - 2024-08-05T11:20:09.066-0500 [INFO]  Terraform version: 1.9.3

2024-08-05T11:20:09.066-0500 [INFO]  Terraform version: 1.9.3
[2024-08-05T11:20:09.066] [ERROR] default - 2024-08-05T11:20:09.066-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:09.066-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:09.066-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:09.066-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:09.066-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:09.066-0500 [INFO]  CLI args: []string{"terraform", "providers", "schema", "-json"}
2024-08-05T11:20:09.066-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:09.066-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.

2024-08-05T11:20:09.066-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:09.066-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:09.066-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:09.066-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:09.066-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:09.066-0500 [INFO]  CLI args: []string{"terraform", "providers", "schema", "-json"}
2024-08-05T11:20:09.066-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:09.066-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
[2024-08-05T11:20:09.067] [ERROR] default - 2024-08-05T11:20:09.067-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json

2024-08-05T11:20:09.067-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json
[2024-08-05T11:20:09.067] [ERROR] default - 2024-08-05T11:20:09.067-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:09.067-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:09.067-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:09.067-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins

2024-08-05T11:20:09.067-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:09.067-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:09.067-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:09.067-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
[2024-08-05T11:20:09.067] [ERROR] default - 2024-08-05T11:20:09.067-0500 [INFO]  CLI command args: []string{"providers", "schema", "-json"}

2024-08-05T11:20:09.067-0500 [INFO]  CLI command args: []string{"providers", "schema", "-json"}
[2024-08-05T11:20:09.068] [ERROR] default - 2024-08-05T11:20:09.068-0500 [INFO]  Terraform version: 1.9.3

2024-08-05T11:20:09.068-0500 [INFO]  Terraform version: 1.9.3
[2024-08-05T11:20:09.069] [ERROR] default - 2024-08-05T11:20:09.068-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:09.068-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:09.068-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:09.068-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:09.068-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:09.068-0500 [INFO]  CLI args: []string{"terraform", "providers", "schema", "-json"}
2024-08-05T11:20:09.068-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:09.068-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.

2024-08-05T11:20:09.068-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:09.068-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:09.068-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:09.068-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:09.068-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:09.068-0500 [INFO]  CLI args: []string{"terraform", "providers", "schema", "-json"}
2024-08-05T11:20:09.068-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:09.068-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
[2024-08-05T11:20:09.069] [ERROR] default - 2024-08-05T11:20:09.069-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json

2024-08-05T11:20:09.069-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json
[2024-08-05T11:20:09.069] [ERROR] default - 2024-08-05T11:20:09.069-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:09.069-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:09.069-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:09.069-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins

2024-08-05T11:20:09.069-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-05T11:20:09.069-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:09.069-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:09.069-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
[2024-08-05T11:20:09.069] [ERROR] default - 2024-08-05T11:20:09.069-0500 [INFO]  CLI command args: []string{"providers", "schema", "-json"}

2024-08-05T11:20:09.069-0500 [INFO]  CLI command args: []string{"providers", "schema", "-json"}
[2024-08-05T11:20:09.076] [ERROR] default - 2024-08-05T11:20:09.076-0500 [DEBUG] checking for provisioner in "."

2024-08-05T11:20:09.076-0500 [DEBUG] checking for provisioner in "."
[2024-08-05T11:20:09.079] [ERROR] default - 2024-08-05T11:20:09.078-0500 [DEBUG] checking for provisioner in "."

2024-08-05T11:20:09.078-0500 [DEBUG] checking for provisioner in "."
[2024-08-05T11:20:09.081] [ERROR] default - 2024-08-05T11:20:09.081-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"

2024-08-05T11:20:09.081-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"
[2024-08-05T11:20:09.081] [ERROR] default - 2024-08-05T11:20:09.081-0500 [DEBUG] created provider logger: level=debug

2024-08-05T11:20:09.081-0500 [DEBUG] created provider logger: level=debug
[2024-08-05T11:20:09.081] [ERROR] default - 2024-08-05T11:20:09.081-0500 [INFO]  provider: configuring client automatic mTLS

2024-08-05T11:20:09.081-0500 [INFO]  provider: configuring client automatic mTLS
[2024-08-05T11:20:09.083] [ERROR] default - 2024-08-05T11:20:09.083-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"

2024-08-05T11:20:09.083-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"
[2024-08-05T11:20:09.084] [ERROR] default - 2024-08-05T11:20:09.084-0500 [DEBUG] created provider logger: level=debug

2024-08-05T11:20:09.084-0500 [DEBUG] created provider logger: level=debug
[2024-08-05T11:20:09.084] [ERROR] default - 2024-08-05T11:20:09.084-0500 [INFO]  provider: configuring client automatic mTLS

2024-08-05T11:20:09.084-0500 [INFO]  provider: configuring client automatic mTLS
[2024-08-05T11:20:09.084] [ERROR] default - 2024-08-05T11:20:09.084-0500 [INFO]  Terraform version: 1.9.3

2024-08-05T11:20:09.084-0500 [INFO]  Terraform version: 1.9.3
[2024-08-05T11:20:09.085] [ERROR] default - 2024-08-05T11:20:09.085-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:09.085-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:09.085-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:09.085-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:09.085-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:09.085-0500 [INFO]  CLI args: []string{"terraform", "providers", "schema", "-json"}

2024-08-05T11:20:09.085-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0
2024-08-05T11:20:09.085-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0
2024-08-05T11:20:09.085-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-08-05T11:20:09.085-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4
2024-08-05T11:20:09.085-0500 [INFO]  Go runtime version: go1.22.5
2024-08-05T11:20:09.085-0500 [INFO]  CLI args: []string{"terraform", "providers", "schema", "-json"}
[2024-08-05T11:20:09.085] [ERROR] default - 2024-08-05T11:20:09.085-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:09.085-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.

2024-08-05T11:20:09.085-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc
2024-08-05T11:20:09.085-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
[2024-08-05T11:20:09.085] [ERROR] default - 2024-08-05T11:20:09.085-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json

2024-08-05T11:20:09.085-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json
[2024-08-05T11:20:09.085] [ERROR] default - 2024-08-05T11:20:09.085-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins

2024-08-05T11:20:09.085-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
[2024-08-05T11:20:09.085] [ERROR] default - 2024-08-05T11:20:09.085-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:09.085-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:09.085-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins

2024-08-05T11:20:09.085-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins
2024-08-05T11:20:09.085-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins
2024-08-05T11:20:09.085-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
[2024-08-05T11:20:09.085] [ERROR] default - 2024-08-05T11:20:09.085-0500 [INFO]  CLI command args: []string{"providers", "schema", "-json"}

2024-08-05T11:20:09.085-0500 [INFO]  CLI command args: []string{"providers", "schema", "-json"}
[2024-08-05T11:20:09.088] [ERROR] default - 2024-08-05T11:20:09.088-0500 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/http/2.1.0/darwin_arm64/terraform-provider-http_v2.1.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/http/2.1.0/darwin_arm64/terraform-provider-http_v2.1.0_x5"]

2024-08-05T11:20:09.088-0500 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/http/2.1.0/darwin_arm64/terraform-provider-http_v2.1.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/http/2.1.0/darwin_arm64/terraform-provider-http_v2.1.0_x5"]
[2024-08-05T11:20:09.090] [ERROR] default - 2024-08-05T11:20:09.089-0500 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/http/2.1.0/darwin_arm64/terraform-provider-http_v2.1.0_x5 pid=43740

2024-08-05T11:20:09.089-0500 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/http/2.1.0/darwin_arm64/terraform-provider-http_v2.1.0_x5 pid=43740
[2024-08-05T11:20:09.090] [ERROR] default - 2024-08-05T11:20:09.090-0500 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/http/2.1.0/darwin_arm64/terraform-provider-http_v2.1.0_x5

2024-08-05T11:20:09.090-0500 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/http/2.1.0/darwin_arm64/terraform-provider-http_v2.1.0_x5
[2024-08-05T11:20:09.090] [ERROR] default - 2024-08-05T11:20:09.090-0500 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.3/darwin_arm64/terraform-provider-random_v3.1.3_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.1.3/darwin_arm64/terraform-provider-random_v3.1.3_x5"]

2024-08-05T11:20:09.090-0500 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.3/darwin_arm64/terraform-provider-random_v3.1.3_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.1.3/darwin_arm64/terraform-provider-random_v3.1.3_x5"]
[2024-08-05T11:20:09.092] [ERROR] default - 2024-08-05T11:20:09.092-0500 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.3/darwin_arm64/terraform-provider-random_v3.1.3_x5 pid=43741

2024-08-05T11:20:09.092-0500 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.3/darwin_arm64/terraform-provider-random_v3.1.3_x5 pid=43741
[2024-08-05T11:20:09.092] [ERROR] default - 2024-08-05T11:20:09.092-0500 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.3/darwin_arm64/terraform-provider-random_v3.1.3_x5

2024-08-05T11:20:09.092-0500 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.3/darwin_arm64/terraform-provider-random_v3.1.3_x5
[2024-08-05T11:20:09.093] [ERROR] default - 2024-08-05T11:20:09.093-0500 [DEBUG] checking for provisioner in "."

2024-08-05T11:20:09.093-0500 [DEBUG] checking for provisioner in "."
[2024-08-05T11:20:09.098] [ERROR] default - 2024-08-05T11:20:09.098-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"

2024-08-05T11:20:09.098-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"
[2024-08-05T11:20:09.099] [ERROR] default - 2024-08-05T11:20:09.099-0500 [DEBUG] created provider logger: level=debug

2024-08-05T11:20:09.099-0500 [DEBUG] created provider logger: level=debug
[2024-08-05T11:20:09.099] [ERROR] default - 2024-08-05T11:20:09.099-0500 [INFO]  provider: configuring client automatic mTLS

2024-08-05T11:20:09.099-0500 [INFO]  provider: configuring client automatic mTLS
[2024-08-05T11:20:09.105] [ERROR] default - 2024-08-05T11:20:09.105-0500 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/tls/3.1.0/darwin_arm64/terraform-provider-tls_v3.1.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/tls/3.1.0/darwin_arm64/terraform-provider-tls_v3.1.0_x5"]

2024-08-05T11:20:09.105-0500 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/tls/3.1.0/darwin_arm64/terraform-provider-tls_v3.1.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/tls/3.1.0/darwin_arm64/terraform-provider-tls_v3.1.0_x5"]
[2024-08-05T11:20:09.107] [ERROR] default - 2024-08-05T11:20:09.107-0500 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/tls/3.1.0/darwin_arm64/terraform-provider-tls_v3.1.0_x5 pid=43742

2024-08-05T11:20:09.107-0500 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/tls/3.1.0/darwin_arm64/terraform-provider-tls_v3.1.0_x5 pid=43742
[2024-08-05T11:20:09.107] [ERROR] default - 2024-08-05T11:20:09.107-0500 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/tls/3.1.0/darwin_arm64/terraform-provider-tls_v3.1.0_x5

2024-08-05T11:20:09.107-0500 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/tls/3.1.0/darwin_arm64/terraform-provider-tls_v3.1.0_x5
[2024-08-05T11:20:09.107] [ERROR] default - 2024-08-05T11:20:09.107-0500 [ERROR] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/tls/3.1.0/darwin_arm64/terraform-provider-tls_v3.1.0_x5 id=43742 error="signal: killed"

2024-08-05T11:20:09.107-0500 [ERROR] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/tls/3.1.0/darwin_arm64/terraform-provider-tls_v3.1.0_x5 id=43742 error="signal: killed"
[2024-08-05T11:20:09.112] [ERROR] default - ╷
│ Error: Failed to load plugin schemas
│
│ Error while loading schemas for plugin components: Failed to obtain
│ provider schema: Could not load the schema for provider
│ registry.terraform.io/hashicorp/tls: failed to instantiate provider
│ "registry.terraform.io/hashicorp/tls" to obtain schema: Unrecognized remote
│ plugin message:
│ Failed to read any lines from plugin's stdout
│ This usually means
│   the plugin was not compiled for this architecture,
│   the plugin is missing dynamic-link libraries necessary to run,
│   the plugin is not executable by this process due to file permissions, or
│   the plugin failed to negotiate the initial go-plugin protocol handshake
│
│ Additional notes about plugin:
│   Path: .terraform/providers/registry.terraform.io/hashicorp/tls/3.1.0/darwin_arm64/terraform-provider-tls_v3.1.0_x5
│   Mode: -rwxr-xr-x
│   Owner: 502 [paymahn] (current: 502 [paymahn])
│   Group: 20 [staff] (current: 20 [staff])
│   MachO architecture: CpuArm64 (current architecture: arm64)
│ ..
╵

2024-08-05T11:20:09.112-0500 [WARN]  provider: plugin failed to exit gracefully

╷
│ Error: Failed to load plugin schemas
│
│ Error while loading schemas for plugin components: Failed to obtain
│ provider schema: Could not load the schema for provider
│ registry.terraform.io/hashicorp/tls: failed to instantiate provider
│ "registry.terraform.io/hashicorp/tls" to obtain schema: Unrecognized remote
│ plugin message:
│ Failed to read any lines from plugin's stdout
│ This usually means
│   the plugin was not compiled for this architecture,
│   the plugin is missing dynamic-link libraries necessary to run,
│   the plugin is not executable by this process due to file permissions, or
│   the plugin failed to negotiate the initial go-plugin protocol handshake
│
│ Additional notes about plugin:
│   Path: .terraform/providers/registry.terraform.io/hashicorp/tls/3.1.0/darwin_arm64/terraform-provider-tls_v3.1.0_x5
│   Mode: -rwxr-xr-x
│   Owner: 502 [paymahn] (current: 502 [paymahn])
│   Group: 20 [staff] (current: 20 [staff])
│   MachO architecture: CpuArm64 (current architecture: arm64)
│ ..
╵

Error: non-zero exit code 1
    at ChildProcess.<anonymous> (/Users/paymahn/code/goldsky/goldsky-infra/node_modules/cdktf-cli/bundle/bin/cmds/handlers.js:96:51560)
    at Object.onceWrapper (node:events:629:26)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.emit (node:domain:489:12)
    at maybeClose (node:internal/child_process:1091:16)
    at Socket.<anonymous> (node:internal/child_process:449:11)
    at Socket.emit (node:events:514:28)
    at Socket.emit (node:domain:489:12)
    at Pipe.<anonymous> (node:net:323:12) {
  stderr: '2024-08-05T11:20:09.084-0500 [INFO]  Terraform version: 1.9.3\n' +
    '2024-08-05T11:20:09.085-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.51.0\n' +
    '2024-08-05T11:20:09.085-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.20.0\n' +
    '2024-08-05T11:20:09.085-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1\n' +
    '2024-08-05T11:20:09.085-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.4\n' +
    '2024-08-05T11:20:09.085-0500 [INFO]  Go runtime version: go1.22.5\n' +
    '2024-08-05T11:20:09.085-0500 [INFO]  CLI args: []string{"terraform", "providers", "schema", "-json"}\n' +
    '2024-08-05T11:20:09.085-0500 [DEBUG] Attempting to open CLI config file: /Users/paymahn/.terraformrc\n' +
    "2024-08-05T11:20:09.085-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.\n" +
    '2024-08-05T11:20:09.085-0500 [INFO]  Loading CLI configuration from /Users/paymahn/.terraform.d/credentials.tfrc.json\n' +
    '2024-08-05T11:20:09.085-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins\n' +
    '2024-08-05T11:20:09.085-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/.terraform.d/plugins\n' +
    '2024-08-05T11:20:09.085-0500 [DEBUG] ignoring non-existing provider search directory /Users/paymahn/Library/Application Support/io.terraform/plugins\n' +
    '2024-08-05T11:20:09.085-0500 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins\n' +
    '2024-08-05T11:20:09.085-0500 [INFO]  CLI command args: []string{"providers", "schema", "-json"}\n' +
    '2024-08-05T11:20:09.093-0500 [DEBUG] checking for provisioner in "."\n' +
    '2024-08-05T11:20:09.098-0500 [DEBUG] checking for provisioner in "/opt/homebrew/bin"\n' +
    '2024-08-05T11:20:09.099-0500 [DEBUG] created provider logger: level=debug\n' +
    '2024-08-05T11:20:09.099-0500 [INFO]  provider: configuring client automatic mTLS\n' +
    '2024-08-05T11:20:09.105-0500 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/tls/3.1.0/darwin_arm64/terraform-provider-tls_v3.1.0_x5 args=[".terraform/providers/registry.terraform.io/hashicorp/tls/3.1.0/darwin_arm64/terraform-provider-tls_v3.1.0_x5"]\n' +
    '2024-08-05T11:20:09.107-0500 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/tls/3.1.0/darwin_arm64/terraform-provider-tls_v3.1.0_x5 pid=43742\n' +
    '2024-08-05T11:20:09.107-0500 [DEBUG] provider: waiting for RPC address: plugin=.terraform/providers/registry.terraform.io/hashicorp/tls/3.1.0/darwin_arm64/terraform-provider-tls_v3.1.0_x5\n' +
    '2024-08-05T11:20:09.107-0500 [ERROR] provider: plugin process exited: plugin=.terraform/providers/registry.terraform.io/hashicorp/tls/3.1.0/darwin_arm64/terraform-provider-tls_v3.1.0_x5 id=43742 error="signal: killed"\n' +
    '\x1B[31m\x1B[31m╷\x1B[0m\x1B[0m\n' +
    '\x1B[31m│\x1B[0m \x1B[0m\x1B[1m\x1B[31mError: \x1B[0m\x1B[0m\x1B[1mFailed to load plugin schemas\x1B[0m\n' +
    '\x1B[31m│\x1B[0m \x1B[0m\n' +
    '\x1B[31m│\x1B[0m \x1B[0m\x1B[0mError while loading schemas for plugin components: Failed to obtain\n' +
    '\x1B[31m│\x1B[0m \x1B[0mprovider schema: Could not load the schema for provider\n' +
    '\x1B[31m│\x1B[0m \x1B[0mregistry.terraform.io/hashicorp/tls: failed to instantiate provider\n' +
    '\x1B[31m│\x1B[0m \x1B[0m"registry.terraform.io/hashicorp/tls" to obtain schema: Unrecognized remote\n' +
    '\x1B[31m│\x1B[0m \x1B[0mplugin message: \n' +
    "\x1B[31m│\x1B[0m \x1B[0mFailed to read any lines from plugin's stdout\n" +
    '\x1B[31m│\x1B[0m \x1B[0mThis usually means\n' +
    '\x1B[31m│\x1B[0m \x1B[0m  the plugin was not compiled for this architecture,\n' +
    '\x1B[31m│\x1B[0m \x1B[0m  the plugin is missing dynamic-link libraries necessary to run,\n' +
    '\x1B[31m│\x1B[0m \x1B[0m  the plugin is not executable by this process due to file permissions, or\n' +
    '\x1B[31m│\x1B[0m \x1B[0m  the plugin failed to negotiate the initial go-plugin protocol handshake\n' +
    '\x1B[31m│\x1B[0m \x1B[0m\n' +
    '\x1B[31m│\x1B[0m \x1B[0mAdditional notes about plugin:\n' +
    '\x1B[31m│\x1B[0m \x1B[0m  Path: .terraform/providers/registry.terraform.io/hashicorp/tls/3.1.0/darwin_arm64/terraform-provider-tls_v3.1.0_x5\n' +
    '\x1B[31m│\x1B[0m \x1B[0m  Mode: -rwxr-xr-x\n' +
    '\x1B[31m│\x1B[0m \x1B[0m  Owner: 502 [paymahn] (current: 502 [paymahn])\n' +
    '\x1B[31m│\x1B[0m \x1B[0m  Group: 20 [staff] (current: 20 [staff])\n' +
    '\x1B[31m│\x1B[0m \x1B[0m  MachO architecture: CpuArm64 (current architecture: arm64)\n' +
    '\x1B[31m│\x1B[0m \x1B[0m..\n' +
    '\x1B[31m╵\x1B[0m\x1B[0m\n' +
    '\x1B[0m\x1B[0m\n' +
    '2024-08-05T11:20:09.112-0500 [WARN]  provider: plugin failed to exit gracefully\n'
}
⠴ downloading and generating modules and providers...
Error: non-zero exit code 1
paymog commented 3 months ago

Seems that upgrading my aws and tls providers and also upgrading the npm dependency on the aws package resolved the issue.

github-actions[bot] commented 2 months ago

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've 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.