Created
February 10, 2021 18:49
-
-
Save reegnz/757384aa0f57476cde2b29d1bb5a421f to your computer and use it in GitHub Desktop.
terraform github provider issue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
provider "github" { | |
# using environment variables: | |
# GITHUB_ORGANIZATION | |
# GITHUB_BASE_URL | |
# GITHUB_TOKEN | |
} | |
resource "github_team" "team" { | |
name = "test-team" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2021/02/10 19:45:54 [INFO] Terraform version: 0.14.5 | |
2021/02/10 19:45:54 [INFO] Go runtime version: go1.15.6 | |
2021/02/10 19:45:54 [INFO] CLI args: []string{"/Users/zoltanreegn/.asdf/installs/terraform/0.14.5/bin/terraform", "init"} | |
2021/02/10 19:45:54 [DEBUG] Attempting to open CLI config file: /Users/zoltanreegn/.terraformrc | |
2021/02/10 19:45:54 Loading CLI configuration from /Users/zoltanreegn/.terraformrc | |
2021/02/10 19:45:54 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins | |
2021/02/10 19:45:54 [DEBUG] ignoring non-existing provider search directory /Users/zoltanreegn/.terraform.d/plugins | |
2021/02/10 19:45:54 [DEBUG] ignoring non-existing provider search directory /Users/zoltanreegn/Library/Application Support/io.terraform/plugins | |
2021/02/10 19:45:54 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins | |
2021/02/10 19:45:54 [INFO] Checkpoint disabled. Not running. | |
2021/02/10 19:45:54 [INFO] CLI command args: []string{"init"} | |
2021/02/10 19:45:54 [TRACE] Meta.Backend: no config given or present on disk, so returning nil config | |
2021/02/10 19:45:54 [TRACE] Meta.Backend: backend has not previously been initialized in this working directory | |
2021/02/10 19:45:54 [DEBUG] New state was assigned lineage "53ed5068-1c3a-d732-d196-5de14337f464" | |
2021/02/10 19:45:54 [TRACE] Meta.Backend: using default local state only (no backend configuration, and no existing initialized backend) | |
2021/02/10 19:45:54 [TRACE] Meta.Backend: instantiated backend of type <nil> | |
2021/02/10 19:45:54 [TRACE] providercache.fillMetaCache: scanning directory .terraform/providers | |
2021/02/10 19:45:54 [TRACE] getproviders.SearchLocalDirectory: failed to resolve symlinks for .terraform/providers: lstat .terraform: no such file or directory | |
2021/02/10 19:45:54 [TRACE] providercache.fillMetaCache: error while scanning directory .terraform/providers: cannot search .terraform/providers: lstat .terraform/providers: no such file or directory | |
2021/02/10 19:45:54 [TRACE] providercache.fillMetaCache: scanning directory .terraform/providers | |
2021/02/10 19:45:54 [TRACE] getproviders.SearchLocalDirectory: failed to resolve symlinks for .terraform/providers: lstat .terraform: no such file or directory | |
2021/02/10 19:45:54 [TRACE] providercache.fillMetaCache: error while scanning directory .terraform/providers: cannot search .terraform/providers: lstat .terraform/providers: no such file or directory | |
2021/02/10 19:45:54 [WARN] Failed to determine selected providers: 2 errors occurred: | |
* there is no package for registry.terraform.io/hashicorp/github 4.3.2 cached in .terraform/providers | |
* there is no package for registry.terraform.io/integrations/github 4.3.2 cached in .terraform/providers | |
2021/02/10 19:45:54 [DEBUG] checking for provisioner in "." | |
2021/02/10 19:45:54 [DEBUG] checking for provisioner in "/Users/zoltanreegn/.asdf/installs/terraform/0.14.5/bin" | |
2021/02/10 19:45:54 [INFO] Failed to read plugin lock file .terraform/plugins/darwin_amd64/lock.json: open .terraform/plugins/darwin_amd64/lock.json: no such file or directory | |
2021/02/10 19:45:54 [TRACE] Meta.Backend: backend <nil> does not support operations, so wrapping it in a local backend | |
2021/02/10 19:45:54 [TRACE] backend/local: state manager for workspace "default" will: | |
- read initial snapshot from terraform.tfstate | |
- write new snapshots to terraform.tfstate | |
- create any backup at terraform.tfstate.backup | |
2021/02/10 19:45:54 [TRACE] statemgr.Filesystem: reading initial snapshot from terraform.tfstate | |
2021/02/10 19:45:54 [TRACE] statemgr.Filesystem: snapshot file has nil snapshot, but that's okay | |
2021/02/10 19:45:54 [TRACE] statemgr.Filesystem: read nil snapshot | |
2021/02/10 19:45:54 [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json | |
2021/02/10 19:45:54 [TRACE] HTTP client GET request to https://registry.terraform.io/.well-known/terraform.json | |
2021/02/10 19:45:54 [DEBUG] GET https://registry.terraform.io/v1/providers/integrations/github/versions | |
2021/02/10 19:45:54 [TRACE] HTTP client GET request to https://registry.terraform.io/v1/providers/integrations/github/versions | |
2021/02/10 19:45:54 [TRACE] providercache.fillMetaCache: scanning directory /Users/zoltanreegn/.terraform.d/plugin-cache | |
2021/02/10 19:45:54 [TRACE] getproviders.SearchLocalDirectory: /Users/zoltanreegn/.terraform.d/plugin-cache is a symlink to /Users/zoltanreegn/.terraform.d/plugin-cache | |
2021/02/10 19:45:54 [TRACE] getproviders.SearchLocalDirectory: found registry.terraform.io/integrations/github v4.3.2 for darwin_amd64 at /Users/zoltanreegn/.terraform.d/plugin-cache/registry.terraform.io/integrations/github/4.3.2/darwin_amd64 | |
2021/02/10 19:45:54 [TRACE] providercache.fillMetaCache: including /Users/zoltanreegn/.terraform.d/plugin-cache/registry.terraform.io/integrations/github/4.3.2/darwin_amd64 as a candidate package for registry.terraform.io/integrations/github 4.3.2 | |
2021/02/10 19:45:54 [TRACE] providercache.Dir.LinkFromOtherCache: linking registry.terraform.io/integrations/github v4.3.2 from existing cache /Users/zoltanreegn/.terraform.d/plugin-cache/registry.terraform.io/integrations/github/4.3.2/darwin_amd64 to .terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64 | |
2021/02/10 19:45:54 [TRACE] providercache.fillMetaCache: scanning directory .terraform/providers | |
2021/02/10 19:45:54 [TRACE] getproviders.SearchLocalDirectory: .terraform/providers is a symlink to .terraform/providers | |
2021/02/10 19:45:54 [TRACE] getproviders.SearchLocalDirectory: found registry.terraform.io/integrations/github v4.3.2 for darwin_amd64 at .terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64 | |
2021/02/10 19:45:54 [TRACE] providercache.fillMetaCache: including .terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64 as a candidate package for registry.terraform.io/integrations/github 4.3.2 | |
2021/02/10 19:46:01 [INFO] Terraform version: 0.14.5 | |
2021/02/10 19:46:01 [INFO] Go runtime version: go1.15.6 | |
2021/02/10 19:46:01 [INFO] CLI args: []string{"/Users/zoltanreegn/.asdf/installs/terraform/0.14.5/bin/terraform", "apply"} | |
2021/02/10 19:46:01 [DEBUG] Attempting to open CLI config file: /Users/zoltanreegn/.terraformrc | |
2021/02/10 19:46:01 Loading CLI configuration from /Users/zoltanreegn/.terraformrc | |
2021/02/10 19:46:01 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins | |
2021/02/10 19:46:01 [DEBUG] ignoring non-existing provider search directory /Users/zoltanreegn/.terraform.d/plugins | |
2021/02/10 19:46:01 [DEBUG] ignoring non-existing provider search directory /Users/zoltanreegn/Library/Application Support/io.terraform/plugins | |
2021/02/10 19:46:01 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins | |
2021/02/10 19:46:01 [INFO] Checkpoint disabled. Not running. | |
2021/02/10 19:46:01 [INFO] CLI command args: []string{"apply"} | |
2021/02/10 19:46:01 [TRACE] Meta.Backend: no config given or present on disk, so returning nil config | |
2021/02/10 19:46:01 [TRACE] Meta.Backend: backend has not previously been initialized in this working directory | |
2021/02/10 19:46:01 [DEBUG] New state was assigned lineage "9fabe696-f9bf-0f53-4c98-047de062f440" | |
2021/02/10 19:46:01 [TRACE] Meta.Backend: using default local state only (no backend configuration, and no existing initialized backend) | |
2021/02/10 19:46:01 [TRACE] Meta.Backend: instantiated backend of type <nil> | |
2021/02/10 19:46:01 [TRACE] providercache.fillMetaCache: scanning directory .terraform/providers | |
2021/02/10 19:46:01 [TRACE] getproviders.SearchLocalDirectory: .terraform/providers is a symlink to .terraform/providers | |
2021/02/10 19:46:01 [TRACE] getproviders.SearchLocalDirectory: found registry.terraform.io/integrations/github v4.3.2 for darwin_amd64 at .terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64 | |
2021/02/10 19:46:01 [TRACE] providercache.fillMetaCache: including .terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64 as a candidate package for registry.terraform.io/integrations/github 4.3.2 | |
2021/02/10 19:46:01 [TRACE] providercache.fillMetaCache: using cached result from previous scan of .terraform/providers | |
2021/02/10 19:46:01 [WARN] Failed to determine selected providers: 1 error occurred: | |
* there is no package for registry.terraform.io/hashicorp/github 4.3.2 cached in .terraform/providers | |
2021/02/10 19:46:01 [DEBUG] checking for provisioner in "." | |
2021/02/10 19:46:01 [DEBUG] checking for provisioner in "/Users/zoltanreegn/.asdf/installs/terraform/0.14.5/bin" | |
2021/02/10 19:46:01 [INFO] Failed to read plugin lock file .terraform/plugins/darwin_amd64/lock.json: open .terraform/plugins/darwin_amd64/lock.json: no such file or directory | |
2021/02/10 19:46:01 [TRACE] Meta.Backend: backend <nil> does not support operations, so wrapping it in a local backend | |
2021/02/10 19:46:01 [INFO] backend/local: starting Apply operation | |
2021/02/10 19:46:01 [TRACE] backend/local: requesting state manager for workspace "default" | |
2021/02/10 19:46:01 [TRACE] backend/local: state manager for workspace "default" will: | |
- read initial snapshot from terraform.tfstate | |
- write new snapshots to terraform.tfstate | |
- create any backup at terraform.tfstate.backup | |
2021/02/10 19:46:01 [TRACE] backend/local: requesting state lock for workspace "default" | |
2021/02/10 19:46:01 [TRACE] statemgr.Filesystem: preparing to manage state snapshots at terraform.tfstate | |
2021/02/10 19:46:01 [TRACE] statemgr.Filesystem: no previously-stored snapshot exists | |
2021/02/10 19:46:01 [TRACE] statemgr.Filesystem: locking terraform.tfstate using fcntl flock | |
2021/02/10 19:46:01 [TRACE] statemgr.Filesystem: writing lock metadata to .terraform.tfstate.lock.info | |
2021/02/10 19:46:01 [TRACE] backend/local: reading remote state for workspace "default" | |
2021/02/10 19:46:01 [TRACE] statemgr.Filesystem: reading latest snapshot from terraform.tfstate | |
2021/02/10 19:46:01 [TRACE] statemgr.Filesystem: snapshot file has nil snapshot, but that's okay | |
2021/02/10 19:46:01 [TRACE] statemgr.Filesystem: read nil snapshot | |
2021/02/10 19:46:01 [TRACE] backend/local: retrieving local state snapshot for workspace "default" | |
2021/02/10 19:46:01 [TRACE] backend/local: building context for current working directory | |
2021/02/10 19:46:01 [TRACE] terraform.NewContext: starting | |
2021/02/10 19:46:01 [TRACE] terraform.NewContext: loading provider schemas | |
2021/02/10 19:46:01 [TRACE] LoadSchemas: retrieving schema for provider type "registry.terraform.io/integrations/github" | |
2021-02-10T19:46:01.101+0100 [INFO] plugin: configuring client automatic mTLS | |
2021-02-10T19:46:01.123+0100 [DEBUG] plugin: starting plugin: path=.terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64/terraform-provider-github_v4.3.2 args=[.terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64/terraform-provider-github_v4.3.2] | |
2021-02-10T19:46:01.125+0100 [DEBUG] plugin: plugin started: path=.terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64/terraform-provider-github_v4.3.2 pid=31272 | |
2021-02-10T19:46:01.125+0100 [DEBUG] plugin: waiting for RPC address: path=.terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64/terraform-provider-github_v4.3.2 | |
2021-02-10T19:46:01.135+0100 [INFO] plugin.terraform-provider-github_v4.3.2: configuring server automatic mTLS: timestamp=2021-02-10T19:46:01.134+0100 | |
2021-02-10T19:46:01.157+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: plugin address: address=/var/folders/h3/q7k460c5535_rdgh_y7fc8jw0000gn/T/plugin671725983 network=unix timestamp=2021-02-10T19:46:01.157+0100 | |
2021-02-10T19:46:01.157+0100 [DEBUG] plugin: using plugin: version=5 | |
2021/02/10 19:46:01 [TRACE] GRPCProvider: GetSchema | |
2021-02-10T19:46:01.203+0100 [TRACE] plugin.stdio: waiting for stdio data | |
2021-02-10T19:46:01.203+0100 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unimplemented desc = unknown service plugin.GRPCStdio" | |
2021/02/10 19:46:01 [TRACE] No provider meta schema returned | |
2021/02/10 19:46:01 [TRACE] GRPCProvider: Close | |
2021-02-10T19:46:01.207+0100 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64/terraform-provider-github_v4.3.2 pid=31272 | |
2021-02-10T19:46:01.207+0100 [DEBUG] plugin: plugin exited | |
2021/02/10 19:46:01 [TRACE] terraform.NewContext: complete | |
2021/02/10 19:46:01 [TRACE] backend/local: finished building terraform.Context | |
2021/02/10 19:46:01 [TRACE] backend/local: requesting interactive input, if necessary | |
2021/02/10 19:46:01 [TRACE] Context.Input: Prompting for provider arguments | |
2021/02/10 19:46:01 [TRACE] Context.Input: Provider provider.github declared at main.tf:1,1-18 | |
2021/02/10 19:46:01 [TRACE] Context.Input: Input for provider.github: map[string]cty.Value{} | |
2021/02/10 19:46:01 [TRACE] backend/local: running validation operation | |
2021/02/10 19:46:01 [INFO] terraform: building graph: GraphTypeValidate | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.ConfigTransformer | |
2021/02/10 19:46:01 [TRACE] ConfigTransformer: Starting for path: | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.ConfigTransformer with new graph: | |
github_team.team - *terraform.NodeValidatableResource | |
------ | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.RootVariableTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.RootVariableTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.ModuleVariableTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.ModuleVariableTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.LocalTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.LocalTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.OutputTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.OutputTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.OrphanResourceInstanceTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.OrphanResourceInstanceTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.StateTransformer | |
2021/02/10 19:46:01 [TRACE] StateTransformer: state is empty, so nothing to do | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.StateTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.OrphanOutputTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.OrphanOutputTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.AttachResourceConfigTransformer | |
2021/02/10 19:46:01 [TRACE] AttachResourceConfigTransformer: attaching to "github_team.team" (*terraform.NodeValidatableResource) config from main.tf:17,1-30 | |
2021/02/10 19:46:01 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to github_team.team | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.AttachResourceConfigTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.MissingProvisionerTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.MissingProvisionerTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.ProvisionerTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.ProvisionerTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.graphTransformerMulti | |
2021/02/10 19:46:01 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderConfigTransformer | |
2021/02/10 19:46:01 [TRACE] ProviderConfigTransformer: attaching to "provider[\"registry.terraform.io/integrations/github\"]" provider configuration from main.tf:1,1-18 | |
2021/02/10 19:46:01 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderConfigTransformer with new graph: | |
github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 19:46:01 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.MissingProviderTransformer | |
2021/02/10 19:46:01 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.MissingProviderTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderTransformer | |
2021/02/10 19:46:01 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/integrations/github"] serving github_team.team | |
2021/02/10 19:46:01 [DEBUG] ProviderTransformer: "github_team.team" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/integrations/github"] | |
2021/02/10 19:46:01 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderTransformer with new graph: | |
github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 19:46:01 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.PruneProviderTransformer | |
2021/02/10 19:46:01 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.PruneProviderTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ParentProviderTransformer | |
2021/02/10 19:46:01 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ParentProviderTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.graphTransformerMulti with new graph: | |
github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.RemovedModuleTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.RemovedModuleTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.AttachSchemaTransformer | |
2021/02/10 19:46:01 [TRACE] AttachSchemaTransformer: attaching resource schema to github_team.team | |
2021/02/10 19:46:01 [TRACE] AttachSchemaTransformer: attaching provider config schema to provider["registry.terraform.io/integrations/github"] | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.AttachSchemaTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.ModuleExpansionTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.ModuleExpansionTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2021/02/10 19:46:01 [DEBUG] ReferenceTransformer: "github_team.team" references: [] | |
2021/02/10 19:46:01 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/integrations/github\"]" references: [] | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.ReferenceTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.AttachDependenciesTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.AttachDependenciesTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.attachDataResourceDependenciesTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.attachDataResourceDependenciesTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.ForcedCBDTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.ForcedCBDTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.CountBoundaryTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.CountBoundaryTransformer with new graph: | |
github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.CloseProviderTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.CloseProviderTransformer with new graph: | |
github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.CloseRootModuleTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.CloseRootModuleTransformer with new graph: | |
github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
root - *terraform.nodeCloseModule | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
------ | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.TransitiveReductionTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.TransitiveReductionTransformer with new graph: | |
github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
github_team.team - *terraform.NodeValidatableResource | |
root - *terraform.nodeCloseModule | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
------ | |
2021/02/10 19:46:01 [DEBUG] Starting graph walk: walkValidate | |
2021/02/10 19:46:01 [TRACE] dag/walk: visiting "provider[\"registry.terraform.io/integrations/github\"]" | |
2021/02/10 19:46:01 [TRACE] vertex "provider[\"registry.terraform.io/integrations/github\"]": starting visit (*terraform.NodeApplyableProvider) | |
2021-02-10T19:46:01.208+0100 [INFO] plugin: configuring client automatic mTLS | |
2021-02-10T19:46:01.230+0100 [DEBUG] plugin: starting plugin: path=.terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64/terraform-provider-github_v4.3.2 args=[.terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64/terraform-provider-github_v4.3.2] | |
2021-02-10T19:46:01.232+0100 [DEBUG] plugin: plugin started: path=.terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64/terraform-provider-github_v4.3.2 pid=31273 | |
2021-02-10T19:46:01.232+0100 [DEBUG] plugin: waiting for RPC address: path=.terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64/terraform-provider-github_v4.3.2 | |
2021-02-10T19:46:01.241+0100 [INFO] plugin.terraform-provider-github_v4.3.2: configuring server automatic mTLS: timestamp=2021-02-10T19:46:01.241+0100 | |
2021-02-10T19:46:01.264+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: plugin address: address=/var/folders/h3/q7k460c5535_rdgh_y7fc8jw0000gn/T/plugin977754532 network=unix timestamp=2021-02-10T19:46:01.264+0100 | |
2021-02-10T19:46:01.264+0100 [DEBUG] plugin: using plugin: version=5 | |
2021/02/10 19:46:01 [TRACE] BuiltinEvalContext: Initialized "provider[\"registry.terraform.io/integrations/github\"]" provider for provider["registry.terraform.io/integrations/github"] | |
2021/02/10 19:46:01 [TRACE] buildProviderConfig for provider["registry.terraform.io/integrations/github"]: using explicit config only | |
2021/02/10 19:46:01 [TRACE] GRPCProvider: GetSchema | |
2021-02-10T19:46:01.311+0100 [TRACE] plugin.stdio: waiting for stdio data | |
2021-02-10T19:46:01.311+0100 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unimplemented desc = unknown service plugin.GRPCStdio" | |
2021/02/10 19:46:01 [TRACE] No provider meta schema returned | |
2021/02/10 19:46:01 [TRACE] GRPCProvider: PrepareProviderConfig | |
2021/02/10 19:46:01 [TRACE] vertex "provider[\"registry.terraform.io/integrations/github\"]": visit complete | |
2021/02/10 19:46:01 [TRACE] dag/walk: visiting "github_team.team" | |
2021/02/10 19:46:01 [TRACE] vertex "github_team.team": starting visit (*terraform.NodeValidatableResource) | |
2021/02/10 19:46:01 [TRACE] GRPCProvider: ValidateResourceTypeConfig | |
2021/02/10 19:46:01 [TRACE] vertex "github_team.team": visit complete | |
2021/02/10 19:46:01 [TRACE] dag/walk: visiting "meta.count-boundary (EachMode fixup)" | |
2021/02/10 19:46:01 [TRACE] vertex "meta.count-boundary (EachMode fixup)": starting visit (*terraform.NodeCountBoundary) | |
2021/02/10 19:46:01 [TRACE] vertex "meta.count-boundary (EachMode fixup)": visit complete | |
2021/02/10 19:46:01 [TRACE] dag/walk: visiting "provider[\"registry.terraform.io/integrations/github\"] (close)" | |
2021/02/10 19:46:01 [TRACE] vertex "provider[\"registry.terraform.io/integrations/github\"] (close)": starting visit (*terraform.graphNodeCloseProvider) | |
2021/02/10 19:46:01 [TRACE] GRPCProvider: Close | |
2021-02-10T19:46:01.316+0100 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64/terraform-provider-github_v4.3.2 pid=31273 | |
2021-02-10T19:46:01.316+0100 [DEBUG] plugin: plugin exited | |
2021/02/10 19:46:01 [TRACE] vertex "provider[\"registry.terraform.io/integrations/github\"] (close)": visit complete | |
2021/02/10 19:46:01 [TRACE] dag/walk: visiting "root" | |
2021/02/10 19:46:01 [TRACE] vertex "root": starting visit (*terraform.nodeCloseModule) | |
2021/02/10 19:46:01 [TRACE] vertex "root": visit complete | |
2021/02/10 19:46:01 [INFO] backend/local: apply calling Plan | |
2021/02/10 19:46:01 [INFO] terraform: building graph: GraphTypePlan | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.ConfigTransformer | |
2021/02/10 19:46:01 [TRACE] ConfigTransformer: Starting for path: | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.ConfigTransformer with new graph: | |
github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
------ | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.RootVariableTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.RootVariableTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.ModuleVariableTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.ModuleVariableTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.LocalTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.LocalTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.OutputTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.OutputTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.OrphanResourceInstanceTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.OrphanResourceInstanceTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.StateTransformer | |
2021/02/10 19:46:01 [TRACE] StateTransformer: state is empty, so nothing to do | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.StateTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.OrphanOutputTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.OrphanOutputTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.AttachResourceConfigTransformer | |
2021/02/10 19:46:01 [TRACE] AttachResourceConfigTransformer: attaching to "github_team.team (expand)" (*terraform.nodeExpandPlannableResource) config from main.tf:17,1-30 | |
2021/02/10 19:46:01 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to github_team.team (expand) | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.AttachResourceConfigTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.MissingProvisionerTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.MissingProvisionerTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.ProvisionerTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.ProvisionerTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.graphTransformerMulti | |
2021/02/10 19:46:01 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderConfigTransformer | |
2021/02/10 19:46:01 [TRACE] ProviderConfigTransformer: attaching to "provider[\"registry.terraform.io/integrations/github\"]" provider configuration from main.tf:1,1-18 | |
2021/02/10 19:46:01 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderConfigTransformer with new graph: | |
github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 19:46:01 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.MissingProviderTransformer | |
2021/02/10 19:46:01 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.MissingProviderTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderTransformer | |
2021/02/10 19:46:01 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/integrations/github"] serving github_team.team (expand) | |
2021/02/10 19:46:01 [DEBUG] ProviderTransformer: "github_team.team (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/integrations/github"] | |
2021/02/10 19:46:01 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderTransformer with new graph: | |
github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 19:46:01 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.PruneProviderTransformer | |
2021/02/10 19:46:01 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.PruneProviderTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ParentProviderTransformer | |
2021/02/10 19:46:01 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ParentProviderTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.graphTransformerMulti with new graph: | |
github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.RemovedModuleTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.RemovedModuleTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.AttachSchemaTransformer | |
2021/02/10 19:46:01 [TRACE] AttachSchemaTransformer: attaching resource schema to github_team.team (expand) | |
2021/02/10 19:46:01 [TRACE] AttachSchemaTransformer: attaching provider config schema to provider["registry.terraform.io/integrations/github"] | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.AttachSchemaTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.ModuleExpansionTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.ModuleExpansionTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2021/02/10 19:46:01 [DEBUG] ReferenceTransformer: "github_team.team (expand)" references: [] | |
2021/02/10 19:46:01 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/integrations/github\"]" references: [] | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.ReferenceTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.AttachDependenciesTransformer | |
2021/02/10 19:46:01 [TRACE] AttachDependenciesTransformer: github_team.team depends on [] | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.AttachDependenciesTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.attachDataResourceDependenciesTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.attachDataResourceDependenciesTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.ForcedCBDTransformer | |
2021/02/10 19:46:01 [TRACE] ForcedCBDTransformer: "github_team.team (expand)" (*terraform.nodeExpandPlannableResource) has no CBD descendent, so skipping | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.ForcedCBDTransformer (no changes) | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.CountBoundaryTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.CountBoundaryTransformer with new graph: | |
github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.CloseProviderTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.CloseProviderTransformer with new graph: | |
github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.CloseRootModuleTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.CloseRootModuleTransformer with new graph: | |
github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
root - *terraform.nodeCloseModule | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
------ | |
2021/02/10 19:46:01 [TRACE] Executing graph transform *terraform.TransitiveReductionTransformer | |
2021/02/10 19:46:01 [TRACE] Completed graph transform *terraform.TransitiveReductionTransformer with new graph: | |
github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
root - *terraform.nodeCloseModule | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
------ | |
2021/02/10 19:46:01 [DEBUG] Starting graph walk: walkPlan | |
2021/02/10 19:46:01 [TRACE] dag/walk: visiting "provider[\"registry.terraform.io/integrations/github\"]" | |
2021/02/10 19:46:01 [TRACE] vertex "provider[\"registry.terraform.io/integrations/github\"]": starting visit (*terraform.NodeApplyableProvider) | |
2021-02-10T19:46:01.317+0100 [INFO] plugin: configuring client automatic mTLS | |
2021-02-10T19:46:01.338+0100 [DEBUG] plugin: starting plugin: path=.terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64/terraform-provider-github_v4.3.2 args=[.terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64/terraform-provider-github_v4.3.2] | |
2021-02-10T19:46:01.340+0100 [DEBUG] plugin: plugin started: path=.terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64/terraform-provider-github_v4.3.2 pid=31274 | |
2021-02-10T19:46:01.340+0100 [DEBUG] plugin: waiting for RPC address: path=.terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64/terraform-provider-github_v4.3.2 | |
2021-02-10T19:46:01.350+0100 [INFO] plugin.terraform-provider-github_v4.3.2: configuring server automatic mTLS: timestamp=2021-02-10T19:46:01.349+0100 | |
2021-02-10T19:46:01.372+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: plugin address: address=/var/folders/h3/q7k460c5535_rdgh_y7fc8jw0000gn/T/plugin850701705 network=unix timestamp=2021-02-10T19:46:01.372+0100 | |
2021-02-10T19:46:01.372+0100 [DEBUG] plugin: using plugin: version=5 | |
2021/02/10 19:46:01 [TRACE] BuiltinEvalContext: Initialized "provider[\"registry.terraform.io/integrations/github\"]" provider for provider["registry.terraform.io/integrations/github"] | |
2021/02/10 19:46:01 [TRACE] buildProviderConfig for provider["registry.terraform.io/integrations/github"]: using explicit config only | |
2021/02/10 19:46:01 [TRACE] GRPCProvider: GetSchema | |
2021-02-10T19:46:01.417+0100 [TRACE] plugin.stdio: waiting for stdio data | |
2021-02-10T19:46:01.418+0100 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unimplemented desc = unknown service plugin.GRPCStdio" | |
2021/02/10 19:46:01 [TRACE] No provider meta schema returned | |
2021/02/10 19:46:01 [TRACE] GRPCProvider: Configure | |
2021-02-10T19:46:01.420+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 19:46:01 [DEBUG] Github API Request Details: | |
2021-02-10T19:46:01.420+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ---[ REQUEST ]--------------------------------------- | |
2021-02-10T19:46:01.420+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: GET /api/v3/orgs/reegnz-test HTTP/1.1 | |
2021-02-10T19:46:01.420+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Host: redacted.example.com | |
2021-02-10T19:46:01.420+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: User-Agent: go-github | |
2021-02-10T19:46:01.420+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Accept: application/vnd.github.surtur-preview+json | |
2021-02-10T19:46:01.420+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Accept-Encoding: gzip | |
2021-02-10T19:46:01.420+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T19:46:01.420+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T19:46:01.420+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ----------------------------------------------------- | |
2021-02-10T19:46:01.420+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 19:46:01 [TRACE] Acquiring lock for GitHub API request (%!q(<nil>)) | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 19:46:02 [TRACE] Releasing lock for GitHub API request (%!q(<nil>)) | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 19:46:02 [DEBUG] Github API Response Details: | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ---[ RESPONSE ]-------------------------------------- | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: HTTP/1.1 200 OK | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Transfer-Encoding: chunked | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Access-Control-Allow-Origin: * | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Cache-Control: private, max-age=60, s-maxage=60 | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Content-Security-Policy: default-src 'none' | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Content-Type: application/json; charset=utf-8 | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Date: Wed, 10 Feb 2021 18:46:02 GMT | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Etag: W/"16b1891548f4d06098acc32811abe5bb" | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Last-Modified: Wed, 03 Feb 2021 13:54:36 GMT | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Server: GitHub.com | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Status: 200 OK | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Strict-Transport-Security: max-age=31536000; includeSubdomains | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Vary: Accept, Authorization, Cookie, X-GitHub-OTP | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Accepted-Oauth-Scopes: admin:org, read:org, repo, user, write:org | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Content-Type-Options: nosniff | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Frame-Options: deny | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Enterprise-Version: 2.20.17 | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Media-Type: github.surtur-preview; format=json | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Request-Id: 43c1a97c-18dc-45c8-b9f3-a9fdd5767dd4 | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Oauth-Scopes: admin:org, admin:org_hook, admin:repo_hook, repo | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Runtime-Rack: 0.199939 | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Xss-Protection: 1; mode=block | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 663 | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: { | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "login": "reegnz-test", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "id": 3234, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "node_id": "MDEyOk9yZ2FuaXphdGlvbjMyMzQ=", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "url": "https://redacted.example.com/api/v3/orgs/reegnz-test", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "repos_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/repos", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "events_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/events", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "hooks_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/hooks", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "issues_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/issues", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/members{/member}", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "public_members_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/public_members{/member}", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "avatar_url": "https://redacted.example.com/avatars/u/3234?", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "description": "", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "name": "reegnz-test", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "company": null, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "blog": null, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "location": null, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "email": "[email protected]", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "has_organization_projects": true, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "has_repository_projects": true, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "public_repos": 0, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "public_gists": 0, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "followers": 0, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "following": 0, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "html_url": "https://redacted.example.com/reegnz-test", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "created_at": "2021-02-03T13:48:08Z", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "updated_at": "2021-02-03T13:54:36Z", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "type": "Organization", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "total_private_repos": 1, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "owned_private_repos": 1, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "private_gists": 0, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "disk_usage": 0, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "collaborators": 0, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "billing_email": "", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "default_repository_permission": "read", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_can_create_repositories": true, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "two_factor_requirement_enabled": false, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_allowed_repository_creation_type": "all", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_can_create_public_repositories": true, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_can_create_private_repositories": true, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_can_create_internal_repositories": true, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "plan": { | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "name": "enterprise", | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "space": 976562499, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "private_repos": 999999999999, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "filled_seats": 1, | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "seats": 0 | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: } | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: } | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 0 | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T19:46:02.247+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ----------------------------------------------------- | |
2021/02/10 19:46:02 [TRACE] vertex "provider[\"registry.terraform.io/integrations/github\"]": visit complete | |
2021/02/10 19:46:02 [TRACE] dag/walk: visiting "github_team.team (expand)" | |
2021/02/10 19:46:02 [TRACE] vertex "github_team.team (expand)": starting visit (*terraform.nodeExpandPlannableResource) | |
2021/02/10 19:46:02 [TRACE] vertex "github_team.team (expand)": expanding dynamic subgraph | |
2021/02/10 19:46:02 [TRACE] vertex "github_team.team (expand)": entering dynamic subgraph | |
2021/02/10 19:46:02 [TRACE] dag/walk: visiting "github_team.team" | |
2021/02/10 19:46:02 [TRACE] vertex "github_team.team": starting visit (*terraform.NodePlannableResource) | |
2021/02/10 19:46:02 [TRACE] vertex "github_team.team": expanding dynamic subgraph | |
2021/02/10 19:46:02 [TRACE] Executing graph transform *terraform.ResourceCountTransformer | |
2021/02/10 19:46:02 [TRACE] ResourceCountTransformer: adding github_team.team as *terraform.NodePlannableResourceInstance | |
2021/02/10 19:46:02 [TRACE] Completed graph transform *terraform.ResourceCountTransformer with new graph: | |
github_team.team - *terraform.NodePlannableResourceInstance | |
------ | |
2021/02/10 19:46:02 [TRACE] Executing graph transform *terraform.OrphanResourceInstanceCountTransformer | |
2021/02/10 19:46:02 [TRACE] Completed graph transform *terraform.OrphanResourceInstanceCountTransformer (no changes) | |
2021/02/10 19:46:02 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2021/02/10 19:46:02 [DEBUG] Resource instance state not found for node "github_team.team", instance github_team.team | |
2021/02/10 19:46:02 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2021/02/10 19:46:02 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2021/02/10 19:46:02 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2021/02/10 19:46:02 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2021/02/10 19:46:02 [DEBUG] ReferenceTransformer: "github_team.team" references: [] | |
2021/02/10 19:46:02 [TRACE] Completed graph transform *terraform.ReferenceTransformer (no changes) | |
2021/02/10 19:46:02 [TRACE] Executing graph transform *terraform.RootTransformer | |
2021/02/10 19:46:02 [TRACE] Completed graph transform *terraform.RootTransformer (no changes) | |
2021/02/10 19:46:02 [TRACE] vertex "github_team.team": entering dynamic subgraph | |
2021/02/10 19:46:02 [TRACE] dag/walk: visiting "github_team.team" | |
2021/02/10 19:46:02 [TRACE] vertex "github_team.team": starting visit (*terraform.NodePlannableResourceInstance) | |
2021/02/10 19:46:02 [TRACE] ReadResourceInstanceState: reading state for github_team.team | |
2021/02/10 19:46:02 [TRACE] ReadResourceInstanceState: no state present for github_team.team | |
2021/02/10 19:46:02 [DEBUG] refresh: github_team.team: no state, so not refreshing | |
2021/02/10 19:46:02 [TRACE] EvalWriteState: using RefreshState for github_team.team | |
2021/02/10 19:46:02 [TRACE] EvalWriteState: removing state object for github_team.team | |
2021/02/10 19:46:02 [TRACE] Re-validating config for "github_team.team" | |
2021/02/10 19:46:02 [TRACE] GRPCProvider: ValidateResourceTypeConfig | |
2021/02/10 19:46:02 [TRACE] GRPCProvider: PlanResourceChange | |
2021/02/10 19:46:02 [WARN] Provider "registry.terraform.io/integrations/github" produced an invalid plan for github_team.team, 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: | |
- .privacy: planned value cty.StringVal("secret") does not match config value cty.NullVal(cty.String) | |
2021/02/10 19:46:02 [TRACE] EvalWriteState: writing current state object for github_team.team | |
2021/02/10 19:46:02 [TRACE] EvalWriteDiff: recorded Create change for github_team.team | |
2021/02/10 19:46:02 [TRACE] vertex "github_team.team": visit complete | |
2021/02/10 19:46:02 [TRACE] vertex "github_team.team": dynamic subgraph completed successfully | |
2021/02/10 19:46:02 [TRACE] vertex "github_team.team": visit complete | |
2021/02/10 19:46:02 [TRACE] vertex "github_team.team (expand)": dynamic subgraph completed successfully | |
2021/02/10 19:46:02 [TRACE] vertex "github_team.team (expand)": visit complete | |
2021/02/10 19:46:02 [TRACE] dag/walk: visiting "meta.count-boundary (EachMode fixup)" | |
2021/02/10 19:46:02 [TRACE] vertex "meta.count-boundary (EachMode fixup)": starting visit (*terraform.NodeCountBoundary) | |
2021/02/10 19:46:02 [TRACE] dag/walk: visiting "provider[\"registry.terraform.io/integrations/github\"] (close)" | |
2021/02/10 19:46:02 [TRACE] vertex "provider[\"registry.terraform.io/integrations/github\"] (close)": starting visit (*terraform.graphNodeCloseProvider) | |
2021/02/10 19:46:02 [TRACE] vertex "meta.count-boundary (EachMode fixup)": visit complete | |
2021/02/10 19:46:02 [TRACE] GRPCProvider: Close | |
2021-02-10T19:46:02.252+0100 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64/terraform-provider-github_v4.3.2 pid=31274 | |
2021-02-10T19:46:02.252+0100 [DEBUG] plugin: plugin exited | |
2021/02/10 19:46:02 [TRACE] vertex "provider[\"registry.terraform.io/integrations/github\"] (close)": visit complete | |
2021/02/10 19:46:02 [TRACE] dag/walk: visiting "root" | |
2021/02/10 19:46:02 [TRACE] vertex "root": starting visit (*terraform.nodeCloseModule) | |
2021/02/10 19:46:02 [TRACE] vertex "root": visit complete | |
2021/02/10 19:46:02 [DEBUG] command: asking for input: "Do you want to perform these actions?" | |
2021/02/10 19:46:03 [INFO] backend/local: apply calling Apply | |
2021/02/10 19:46:03 [INFO] terraform: building graph: GraphTypeApply | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.ConfigTransformer | |
2021/02/10 19:46:03 [TRACE] ConfigTransformer: Starting for path: | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.ConfigTransformer with new graph: | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
------ | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.RootVariableTransformer | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.RootVariableTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.ModuleVariableTransformer | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.ModuleVariableTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.LocalTransformer | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.LocalTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.OutputTransformer | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.OutputTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.DiffTransformer | |
2021/02/10 19:46:03 [TRACE] DiffTransformer starting | |
2021/02/10 19:46:03 [TRACE] DiffTransformer: found Create change for github_team.team | |
2021/02/10 19:46:03 [TRACE] DiffTransformer: github_team.team will be represented by github_team.team | |
2021/02/10 19:46:03 [TRACE] DiffTransformer complete | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.DiffTransformer with new graph: | |
github_team.team - *terraform.NodeApplyableResourceInstance | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
------ | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2021/02/10 19:46:03 [DEBUG] Resource state not found for node "github_team.team", instance github_team.team | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.OrphanOutputTransformer | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.OrphanOutputTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.AttachResourceConfigTransformer | |
2021/02/10 19:46:03 [TRACE] AttachResourceConfigTransformer: attaching to "github_team.team (expand)" (*terraform.nodeExpandApplyableResource) config from main.tf:17,1-30 | |
2021/02/10 19:46:03 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to github_team.team (expand) | |
2021/02/10 19:46:03 [TRACE] AttachResourceConfigTransformer: attaching to "github_team.team" (*terraform.NodeApplyableResourceInstance) config from main.tf:17,1-30 | |
2021/02/10 19:46:03 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to github_team.team | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.AttachResourceConfigTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.MissingProvisionerTransformer | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.MissingProvisionerTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.ProvisionerTransformer | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.ProvisionerTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.graphTransformerMulti | |
2021/02/10 19:46:03 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderConfigTransformer | |
2021/02/10 19:46:03 [TRACE] ProviderConfigTransformer: attaching to "provider[\"registry.terraform.io/integrations/github\"]" provider configuration from main.tf:1,1-18 | |
2021/02/10 19:46:03 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderConfigTransformer with new graph: | |
github_team.team - *terraform.NodeApplyableResourceInstance | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 19:46:03 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.MissingProviderTransformer | |
2021/02/10 19:46:03 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.MissingProviderTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderTransformer | |
2021/02/10 19:46:03 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/integrations/github"] serving github_team.team (expand) | |
2021/02/10 19:46:03 [DEBUG] ProviderTransformer: "github_team.team (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/integrations/github"] | |
2021/02/10 19:46:03 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/integrations/github"] serving github_team.team | |
2021/02/10 19:46:03 [DEBUG] ProviderTransformer: "github_team.team" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/integrations/github"] | |
2021/02/10 19:46:03 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderTransformer with new graph: | |
github_team.team - *terraform.NodeApplyableResourceInstance | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 19:46:03 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.PruneProviderTransformer | |
2021/02/10 19:46:03 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.PruneProviderTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ParentProviderTransformer | |
2021/02/10 19:46:03 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ParentProviderTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.graphTransformerMulti with new graph: | |
github_team.team - *terraform.NodeApplyableResourceInstance | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.RemovedModuleTransformer | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.RemovedModuleTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.AttachSchemaTransformer | |
2021/02/10 19:46:03 [TRACE] AttachSchemaTransformer: attaching resource schema to github_team.team | |
2021/02/10 19:46:03 [TRACE] AttachSchemaTransformer: attaching provider config schema to provider["registry.terraform.io/integrations/github"] | |
2021/02/10 19:46:03 [TRACE] AttachSchemaTransformer: attaching resource schema to github_team.team (expand) | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.AttachSchemaTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.ModuleExpansionTransformer | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.ModuleExpansionTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2021/02/10 19:46:03 [DEBUG] ReferenceTransformer: "github_team.team (expand)" references: [] | |
2021/02/10 19:46:03 [DEBUG] ReferenceTransformer: "github_team.team" references: [] | |
2021/02/10 19:46:03 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/integrations/github\"]" references: [] | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.ReferenceTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.AttachDependenciesTransformer | |
2021/02/10 19:46:03 [TRACE] AttachDependenciesTransformer: github_team.team depends on [] | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.AttachDependenciesTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.ForcedCBDTransformer | |
2021/02/10 19:46:03 [TRACE] ForcedCBDTransformer: "github_team.team" (*terraform.NodeApplyableResourceInstance) has no CBD descendent, so skipping | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.ForcedCBDTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.DestroyEdgeTransformer | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.DestroyEdgeTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.CBDEdgeTransformer | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.CBDEdgeTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.pruneUnusedNodesTransformer | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.pruneUnusedNodesTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.CountBoundaryTransformer | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.CountBoundaryTransformer with new graph: | |
github_team.team - *terraform.NodeApplyableResourceInstance | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
github_team.team - *terraform.NodeApplyableResourceInstance | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.CloseProviderTransformer | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.CloseProviderTransformer with new graph: | |
github_team.team - *terraform.NodeApplyableResourceInstance | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
github_team.team - *terraform.NodeApplyableResourceInstance | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
github_team.team - *terraform.NodeApplyableResourceInstance | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.CloseProvisionerTransformer | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.CloseProvisionerTransformer (no changes) | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.CloseRootModuleTransformer | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.CloseRootModuleTransformer with new graph: | |
github_team.team - *terraform.NodeApplyableResourceInstance | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
github_team.team - *terraform.NodeApplyableResourceInstance | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
github_team.team - *terraform.NodeApplyableResourceInstance | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
root - *terraform.nodeCloseModule | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
------ | |
2021/02/10 19:46:03 [TRACE] Executing graph transform *terraform.TransitiveReductionTransformer | |
2021/02/10 19:46:03 [TRACE] Completed graph transform *terraform.TransitiveReductionTransformer with new graph: | |
github_team.team - *terraform.NodeApplyableResourceInstance | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
github_team.team (expand) - *terraform.nodeExpandApplyableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
github_team.team - *terraform.NodeApplyableResourceInstance | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
github_team.team - *terraform.NodeApplyableResourceInstance | |
root - *terraform.nodeCloseModule | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
------ | |
2021/02/10 19:46:03 [DEBUG] Starting graph walk: walkApply | |
2021/02/10 19:46:03 [TRACE] dag/walk: visiting "provider[\"registry.terraform.io/integrations/github\"]" | |
2021/02/10 19:46:03 [TRACE] vertex "provider[\"registry.terraform.io/integrations/github\"]": starting visit (*terraform.NodeApplyableProvider) | |
2021-02-10T19:46:03.743+0100 [INFO] plugin: configuring client automatic mTLS | |
2021-02-10T19:46:03.773+0100 [DEBUG] plugin: starting plugin: path=.terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64/terraform-provider-github_v4.3.2 args=[.terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64/terraform-provider-github_v4.3.2] | |
2021-02-10T19:46:03.776+0100 [DEBUG] plugin: plugin started: path=.terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64/terraform-provider-github_v4.3.2 pid=31286 | |
2021-02-10T19:46:03.776+0100 [DEBUG] plugin: waiting for RPC address: path=.terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64/terraform-provider-github_v4.3.2 | |
2021-02-10T19:46:03.788+0100 [INFO] plugin.terraform-provider-github_v4.3.2: configuring server automatic mTLS: timestamp=2021-02-10T19:46:03.787+0100 | |
2021-02-10T19:46:03.816+0100 [DEBUG] plugin: using plugin: version=5 | |
2021-02-10T19:46:03.816+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: plugin address: address=/var/folders/h3/q7k460c5535_rdgh_y7fc8jw0000gn/T/plugin067061733 network=unix timestamp=2021-02-10T19:46:03.816+0100 | |
2021-02-10T19:46:03.865+0100 [TRACE] plugin.stdio: waiting for stdio data | |
2021/02/10 19:46:03 [TRACE] BuiltinEvalContext: Initialized "provider[\"registry.terraform.io/integrations/github\"]" provider for provider["registry.terraform.io/integrations/github"] | |
2021/02/10 19:46:03 [TRACE] buildProviderConfig for provider["registry.terraform.io/integrations/github"]: using explicit config only | |
2021/02/10 19:46:03 [TRACE] GRPCProvider: GetSchema | |
2021-02-10T19:46:03.865+0100 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unimplemented desc = unknown service plugin.GRPCStdio" | |
2021/02/10 19:46:03 [TRACE] No provider meta schema returned | |
2021/02/10 19:46:03 [TRACE] GRPCProvider: Configure | |
2021-02-10T19:46:03.868+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 19:46:03 [DEBUG] Github API Request Details: | |
2021-02-10T19:46:03.868+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ---[ REQUEST ]--------------------------------------- | |
2021-02-10T19:46:03.868+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: GET /api/v3/orgs/reegnz-test HTTP/1.1 | |
2021-02-10T19:46:03.868+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Host: redacted.example.com | |
2021-02-10T19:46:03.868+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: User-Agent: go-github | |
2021-02-10T19:46:03.868+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Accept: application/vnd.github.surtur-preview+json | |
2021-02-10T19:46:03.868+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Accept-Encoding: gzip | |
2021-02-10T19:46:03.868+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T19:46:03.868+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T19:46:03.868+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ----------------------------------------------------- | |
2021-02-10T19:46:03.868+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 19:46:03 [TRACE] Acquiring lock for GitHub API request (%!q(<nil>)) | |
2021-02-10T19:46:04.556+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 19:46:04 [TRACE] Releasing lock for GitHub API request (%!q(<nil>)) | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 19:46:04 [DEBUG] Github API Response Details: | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ---[ RESPONSE ]-------------------------------------- | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: HTTP/1.1 200 OK | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Transfer-Encoding: chunked | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Access-Control-Allow-Origin: * | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Cache-Control: private, max-age=60, s-maxage=60 | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Content-Security-Policy: default-src 'none' | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Content-Type: application/json; charset=utf-8 | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Date: Wed, 10 Feb 2021 18:46:04 GMT | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Etag: W/"16b1891548f4d06098acc32811abe5bb" | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Last-Modified: Wed, 03 Feb 2021 13:54:36 GMT | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Server: GitHub.com | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Status: 200 OK | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Strict-Transport-Security: max-age=31536000; includeSubdomains | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Vary: Accept, Authorization, Cookie, X-GitHub-OTP | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Accepted-Oauth-Scopes: admin:org, read:org, repo, user, write:org | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Content-Type-Options: nosniff | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Frame-Options: deny | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Enterprise-Version: 2.20.17 | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Media-Type: github.surtur-preview; format=json | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Request-Id: 3231cdf0-64bc-4623-811a-f8d7f2ea9e42 | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Oauth-Scopes: admin:org, admin:org_hook, admin:repo_hook, repo | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Runtime-Rack: 0.054813 | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Xss-Protection: 1; mode=block | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 663 | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: { | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "login": "reegnz-test", | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "id": 3234, | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "node_id": "MDEyOk9yZ2FuaXphdGlvbjMyMzQ=", | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "url": "https://redacted.example.com/api/v3/orgs/reegnz-test", | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "repos_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/repos", | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "events_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/events", | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "hooks_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/hooks", | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "issues_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/issues", | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/members{/member}", | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "public_members_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/public_members{/member}", | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "avatar_url": "https://redacted.example.com/avatars/u/3234?", | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "description": "", | |
2021-02-10T19:46:04.557+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "name": "reegnz-test", | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "company": null, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "blog": null, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "location": null, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "email": "[email protected]", | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "has_organization_projects": true, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "has_repository_projects": true, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "public_repos": 0, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "public_gists": 0, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "followers": 0, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "following": 0, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "html_url": "https://redacted.example.com/reegnz-test", | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "created_at": "2021-02-03T13:48:08Z", | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "updated_at": "2021-02-03T13:54:36Z", | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "type": "Organization", | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "total_private_repos": 1, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "owned_private_repos": 1, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "private_gists": 0, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "disk_usage": 0, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "collaborators": 0, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "billing_email": "", | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "default_repository_permission": "read", | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_can_create_repositories": true, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "two_factor_requirement_enabled": false, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_allowed_repository_creation_type": "all", | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_can_create_public_repositories": true, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_can_create_private_repositories": true, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_can_create_internal_repositories": true, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "plan": { | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "name": "enterprise", | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "space": 976562499, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "private_repos": 999999999999, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "filled_seats": 1, | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "seats": 0 | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: } | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: } | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 0 | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T19:46:04.558+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ----------------------------------------------------- | |
2021/02/10 19:46:04 [TRACE] vertex "provider[\"registry.terraform.io/integrations/github\"]": visit complete | |
2021/02/10 19:46:04 [TRACE] dag/walk: visiting "github_team.team (expand)" | |
2021/02/10 19:46:04 [TRACE] vertex "github_team.team (expand)": starting visit (*terraform.nodeExpandApplyableResource) | |
2021/02/10 19:46:04 [TRACE] vertex "github_team.team (expand)": expanding dynamic subgraph | |
2021/02/10 19:46:04 [TRACE] vertex "github_team.team (expand)": entering dynamic subgraph | |
2021/02/10 19:46:04 [TRACE] dag/walk: visiting "github_team.team" | |
2021/02/10 19:46:04 [TRACE] vertex "github_team.team": starting visit (*terraform.NodeApplyableResource) | |
2021/02/10 19:46:04 [TRACE] vertex "github_team.team": visit complete | |
2021/02/10 19:46:04 [TRACE] vertex "github_team.team (expand)": dynamic subgraph completed successfully | |
2021/02/10 19:46:04 [TRACE] vertex "github_team.team (expand)": visit complete | |
2021/02/10 19:46:04 [TRACE] dag/walk: visiting "github_team.team" | |
2021/02/10 19:46:04 [TRACE] vertex "github_team.team": starting visit (*terraform.NodeApplyableResourceInstance) | |
2021/02/10 19:46:04 [TRACE] EvalReadDiff: Read Create change from plan for github_team.team | |
2021/02/10 19:46:04 [TRACE] EvalReadState: reading state for github_team.team | |
2021/02/10 19:46:04 [TRACE] EvalReadState: no state present for github_team.team | |
2021/02/10 19:46:04 [TRACE] EvalReadDiff: Read Create change from plan for github_team.team | |
2021/02/10 19:46:04 [TRACE] Re-validating config for "github_team.team" | |
2021/02/10 19:46:04 [TRACE] GRPCProvider: ValidateResourceTypeConfig | |
2021/02/10 19:46:04 [TRACE] GRPCProvider: PlanResourceChange | |
2021/02/10 19:46:04 [WARN] Provider "registry.terraform.io/integrations/github" produced an invalid plan for github_team.team, 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: | |
- .privacy: planned value cty.StringVal("secret") does not match config value cty.NullVal(cty.String) | |
2021/02/10 19:46:04 [TRACE] EvalCheckPlannedChange: Verifying that actual change (action Create) matches planned change (action Create) | |
2021/02/10 19:46:04 [TRACE] EvalReadState: reading state for github_team.team | |
2021/02/10 19:46:04 [TRACE] EvalReadState: no state present for github_team.team | |
2021/02/10 19:46:04 [DEBUG] EvalApply: ProviderMeta config value set | |
2021/02/10 19:46:04 [DEBUG] github_team.team: applying the planned Create change | |
2021/02/10 19:46:04 [TRACE] GRPCProvider: ApplyResourceChange | |
2021-02-10T19:46:04.560+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 19:46:04 [DEBUG] Creating team: test-team (reegnz-test) | |
2021-02-10T19:46:04.561+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 19:46:04 [DEBUG] Github API Request Details: | |
2021-02-10T19:46:04.561+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ---[ REQUEST ]--------------------------------------- | |
2021-02-10T19:46:04.561+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: POST /api/v3/orgs/reegnz-test/teams HTTP/1.1 | |
2021-02-10T19:46:04.561+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Host: redacted.example.com | |
2021-02-10T19:46:04.561+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: User-Agent: go-github | |
2021-02-10T19:46:04.561+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Content-Length: 57 | |
2021-02-10T19:46:04.561+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Accept: application/vnd.github.v3+json | |
2021-02-10T19:46:04.561+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Content-Type: application/json | |
2021-02-10T19:46:04.561+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Accept-Encoding: gzip | |
2021-02-10T19:46:04.561+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T19:46:04.561+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: { | |
2021-02-10T19:46:04.561+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "name": "test-team", | |
2021-02-10T19:46:04.561+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "description": "", | |
2021-02-10T19:46:04.561+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "privacy": "secret" | |
2021-02-10T19:46:04.561+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: } | |
2021-02-10T19:46:04.561+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T19:46:04.561+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ----------------------------------------------------- | |
2021-02-10T19:46:04.561+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 19:46:04 [TRACE] Acquiring lock for GitHub API request (%!q(<nil>)) | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 19:46:05 [TRACE] Releasing lock for GitHub API request (%!q(<nil>)) | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 19:46:05 [DEBUG] Github API Response Details: | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ---[ RESPONSE ]-------------------------------------- | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: HTTP/1.1 201 Created | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Content-Length: 1674 | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Access-Control-Allow-Origin: * | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Cache-Control: private, max-age=60, s-maxage=60 | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Content-Security-Policy: default-src 'none' | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Content-Type: application/json; charset=utf-8 | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Date: Wed, 10 Feb 2021 18:46:04 GMT | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Etag: "15c8a3583ee3cf7afb0ef2527f889814" | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Location: https://redacted.example.com/api/v3/teams/434 | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Server: GitHub.com | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Status: 201 Created | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Strict-Transport-Security: max-age=31536000; includeSubdomains | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Vary: Accept, Authorization, Cookie, X-GitHub-OTP | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Accepted-Oauth-Scopes: admin:org, repo | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Content-Type-Options: nosniff | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Frame-Options: deny | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Enterprise-Version: 2.20.17 | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Media-Type: github.v3; format=json | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Request-Id: b1a6569c-db49-4abd-91f5-f22fce610db6 | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Oauth-Scopes: admin:org, admin:org_hook, admin:repo_hook, repo | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Runtime-Rack: 0.276670 | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Xss-Protection: 1; mode=block | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: { | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "name": "test-team", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "id": 434, | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "node_id": "MDQ6VGVhbTQzNA==", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "slug": "test-team", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "description": "", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "privacy": "secret", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "url": "https://redacted.example.com/api/v3/teams/434", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "html_url": "https://redacted.example.com/orgs/reegnz-test/teams/test-team", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_url": "https://redacted.example.com/api/v3/teams/434/members{/member}", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "repositories_url": "https://redacted.example.com/api/v3/teams/434/repos", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "permission": "pull", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "parent": null, | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "created_at": "2021-02-10T18:46:04Z", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "updated_at": "2021-02-10T18:46:04Z", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_count": 1, | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "repos_count": 0, | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "organization": { | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "login": "reegnz-test", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "id": 3234, | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "node_id": "MDEyOk9yZ2FuaXphdGlvbjMyMzQ=", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "url": "https://redacted.example.com/api/v3/orgs/reegnz-test", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "repos_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/repos", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "events_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/events", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "hooks_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/hooks", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "issues_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/issues", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/members{/member}", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "public_members_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/public_members{/member}", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "avatar_url": "https://redacted.example.com/avatars/u/3234", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "description": "", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "name": "reegnz-test", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "company": null, | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "blog": "", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "location": null, | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "email": "[email protected]", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "has_organization_projects": true, | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "has_repository_projects": true, | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "public_repos": 0, | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "public_gists": 0, | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "followers": 0, | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "following": 0, | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "html_url": "https://redacted.example.com/reegnz-test", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "created_at": "2021-02-03T13:48:08Z", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "updated_at": "2021-02-03T13:54:36Z", | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "type": "Organization" | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: } | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: } | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ----------------------------------------------------- | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 19:46:05 [DEBUG] Reading team: 434 | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 19:46:05 [DEBUG] Github API Request Details: | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ---[ REQUEST ]--------------------------------------- | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: GET /api/v3/organizations/3234/team/434 HTTP/1.1 | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Host: redacted.example.com | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: User-Agent: go-github | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Accept: application/vnd.github.v3+json | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Accept-Encoding: gzip | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ----------------------------------------------------- | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 19:46:05 [TRACE] Acquiring lock for GitHub API request ("434") | |
2021-02-10T19:46:05.026+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 19:46:05 [DEBUG] Sleeping 1s between write operations | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 19:46:06 [TRACE] Releasing lock for GitHub API request ("434") | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 19:46:06 [DEBUG] Github API Response Details: | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ---[ RESPONSE ]-------------------------------------- | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: HTTP/1.1 404 Not Found | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Transfer-Encoding: chunked | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Access-Control-Allow-Origin: * | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Content-Security-Policy: default-src 'none' | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Content-Type: application/json; charset=utf-8 | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Date: Wed, 10 Feb 2021 18:46:06 GMT | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Server: GitHub.com | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Status: 404 Not Found | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Strict-Transport-Security: max-age=31536000; includeSubdomains | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Accepted-Oauth-Scopes: repo | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Content-Type-Options: nosniff | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Frame-Options: deny | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Enterprise-Version: 2.20.17 | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Media-Type: github.v3; format=json | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Request-Id: 506b4883-9554-4d17-a5e8-71ea2c3b1450 | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Oauth-Scopes: admin:org, admin:org_hook, admin:repo_hook, repo | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Runtime-Rack: 0.024994 | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Xss-Protection: 1; mode=block | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 5d | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: { | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "message": "Not Found", | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "documentation_url": "https://developer.github.com/enterprise/2.20/v3" | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: } | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 0 | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ----------------------------------------------------- | |
2021-02-10T19:46:06.223+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 19:46:06 [WARN] Removing team 434 from state because it no longer exists in GitHub | |
2021/02/10 19:46:06 [DEBUG] github_team.team: apply errored, but we're indicating that via the Error pointer rather than returning it: Provider produced inconsistent result after apply: When applying changes to github_team.team, provider "registry.terraform.io/integrations/github" produced an unexpected new value: Root resource was present, but now absent. | |
This is a bug in the provider, which should be reported in the provider's own issue tracker. | |
2021/02/10 19:46:06 [TRACE] EvalMaybeTainted: github_team.team encountered an error during creation, so it is now marked as tainted | |
2021/02/10 19:46:06 [TRACE] EvalWriteState: removing state object for github_team.team | |
2021/02/10 19:46:06 [TRACE] EvalApplyProvisioners: github_team.team has no state, so skipping provisioners | |
2021/02/10 19:46:06 [TRACE] EvalMaybeTainted: github_team.team encountered an error during creation, so it is now marked as tainted | |
2021/02/10 19:46:06 [TRACE] EvalWriteState: removing state object for github_team.team | |
2021/02/10 19:46:06 [TRACE] vertex "github_team.team": visit complete | |
2021/02/10 19:46:06 [TRACE] dag/walk: upstream of "meta.count-boundary (EachMode fixup)" errored, so skipping | |
2021/02/10 19:46:06 [TRACE] dag/walk: upstream of "provider[\"registry.terraform.io/integrations/github\"] (close)" errored, so skipping | |
2021/02/10 19:46:06 [TRACE] dag/walk: upstream of "root" errored, so skipping | |
2021/02/10 19:46:06 [TRACE] statemgr.Filesystem: reading latest snapshot from terraform.tfstate | |
2021/02/10 19:46:06 [TRACE] statemgr.Filesystem: snapshot file has nil snapshot, but that's okay | |
2021/02/10 19:46:06 [TRACE] statemgr.Filesystem: read nil snapshot | |
2021/02/10 19:46:06 [TRACE] statemgr.Filesystem: no original state snapshot to back up | |
2021/02/10 19:46:06 [TRACE] statemgr.Filesystem: state has changed since last snapshot, so incrementing serial to 1 | |
2021/02/10 19:46:06 [TRACE] statemgr.Filesystem: writing snapshot at terraform.tfstate | |
2021/02/10 19:46:06 [TRACE] statemgr.Filesystem: removing lock metadata file .terraform.tfstate.lock.info | |
2021/02/10 19:46:06 [TRACE] statemgr.Filesystem: unlocking terraform.tfstate using fcntl flock | |
2021-02-10T19:46:06.256+0100 [DEBUG] plugin: plugin process exited: path=.terraform/providers/registry.terraform.io/integrations/github/4.3.2/darwin_amd64/terraform-provider-github_v4.3.2 pid=31286 | |
2021-02-10T19:46:06.256+0100 [DEBUG] plugin: plugin exited |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
terraform { | |
required_version = ">= 0.14" | |
required_providers { | |
github = { | |
source = "integrations/github" | |
version = "~> 4.0" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment