Created
February 10, 2021 19:04
-
-
Save reegnz/5c3c4bcbef7093fbd45966c54f5d76c8 to your computer and use it in GitHub Desktop.
terraform github provider data source 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 | |
} | |
data "github_team" "team" { | |
slug = "test-team" | |
} | |
output "out" { | |
value = data.github_team.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 20:01:37 [INFO] Terraform version: 0.14.5 | |
2021/02/10 20:01:37 [INFO] Go runtime version: go1.15.6 | |
2021/02/10 20:01:37 [INFO] CLI args: []string{"/Users/zoltanreegn/.asdf/installs/terraform/0.14.5/bin/terraform", "init"} | |
2021/02/10 20:01:37 [DEBUG] Attempting to open CLI config file: /Users/zoltanreegn/.terraformrc | |
2021/02/10 20:01:37 Loading CLI configuration from /Users/zoltanreegn/.terraformrc | |
2021/02/10 20:01:37 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins | |
2021/02/10 20:01:37 [DEBUG] ignoring non-existing provider search directory /Users/zoltanreegn/.terraform.d/plugins | |
2021/02/10 20:01:37 [DEBUG] ignoring non-existing provider search directory /Users/zoltanreegn/Library/Application Support/io.terraform/plugins | |
2021/02/10 20:01:37 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins | |
2021/02/10 20:01:37 [INFO] Checkpoint disabled. Not running. | |
2021/02/10 20:01:37 [INFO] CLI command args: []string{"init"} | |
2021/02/10 20:01:37 [TRACE] Meta.Backend: no config given or present on disk, so returning nil config | |
2021/02/10 20:01:37 [TRACE] Meta.Backend: backend has not previously been initialized in this working directory | |
2021/02/10 20:01:37 [DEBUG] New state was assigned lineage "f0984b40-3303-a0af-849e-cbe611abc097" | |
2021/02/10 20:01:37 [TRACE] Meta.Backend: using default local state only (no backend configuration, and no existing initialized backend) | |
2021/02/10 20:01:37 [TRACE] Meta.Backend: instantiated backend of type <nil> | |
2021/02/10 20:01:37 [TRACE] providercache.fillMetaCache: scanning directory .terraform/providers | |
2021/02/10 20:01:37 [TRACE] getproviders.SearchLocalDirectory: failed to resolve symlinks for .terraform/providers: lstat .terraform: no such file or directory | |
2021/02/10 20:01:37 [TRACE] providercache.fillMetaCache: error while scanning directory .terraform/providers: cannot search .terraform/providers: lstat .terraform/providers: no such file or directory | |
2021/02/10 20:01:37 [TRACE] providercache.fillMetaCache: scanning directory .terraform/providers | |
2021/02/10 20:01:37 [TRACE] getproviders.SearchLocalDirectory: failed to resolve symlinks for .terraform/providers: lstat .terraform: no such file or directory | |
2021/02/10 20:01:37 [TRACE] providercache.fillMetaCache: error while scanning directory .terraform/providers: cannot search .terraform/providers: lstat .terraform/providers: no such file or directory | |
2021/02/10 20:01:37 [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 20:01:37 [DEBUG] checking for provisioner in "." | |
2021/02/10 20:01:37 [DEBUG] checking for provisioner in "/Users/zoltanreegn/.asdf/installs/terraform/0.14.5/bin" | |
2021/02/10 20:01:37 [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 20:01:37 [TRACE] Meta.Backend: backend <nil> does not support operations, so wrapping it in a local backend | |
2021/02/10 20:01:37 [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 20:01:37 [TRACE] statemgr.Filesystem: reading initial snapshot from terraform.tfstate | |
2021/02/10 20:01:37 [TRACE] statemgr.Filesystem: snapshot file has nil snapshot, but that's okay | |
2021/02/10 20:01:37 [TRACE] statemgr.Filesystem: read nil snapshot | |
2021/02/10 20:01:37 [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json | |
2021/02/10 20:01:37 [TRACE] HTTP client GET request to https://registry.terraform.io/.well-known/terraform.json | |
2021/02/10 20:01:37 [DEBUG] GET https://registry.terraform.io/v1/providers/integrations/github/versions | |
2021/02/10 20:01:37 [TRACE] HTTP client GET request to https://registry.terraform.io/v1/providers/integrations/github/versions | |
2021/02/10 20:01:37 [TRACE] providercache.fillMetaCache: scanning directory /Users/zoltanreegn/.terraform.d/plugin-cache | |
2021/02/10 20:01:37 [TRACE] getproviders.SearchLocalDirectory: /Users/zoltanreegn/.terraform.d/plugin-cache is a symlink to /Users/zoltanreegn/.terraform.d/plugin-cache | |
2021/02/10 20:01:37 [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 20:01:37 [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 20:01:37 [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 20:01:37 [TRACE] providercache.fillMetaCache: scanning directory .terraform/providers | |
2021/02/10 20:01:37 [TRACE] getproviders.SearchLocalDirectory: .terraform/providers is a symlink to .terraform/providers | |
2021/02/10 20:01:37 [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 20:01:37 [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 20:01:43 [INFO] Terraform version: 0.14.5 | |
2021/02/10 20:01:43 [INFO] Go runtime version: go1.15.6 | |
2021/02/10 20:01:43 [INFO] CLI args: []string{"/Users/zoltanreegn/.asdf/installs/terraform/0.14.5/bin/terraform", "apply"} | |
2021/02/10 20:01:43 [DEBUG] Attempting to open CLI config file: /Users/zoltanreegn/.terraformrc | |
2021/02/10 20:01:43 Loading CLI configuration from /Users/zoltanreegn/.terraformrc | |
2021/02/10 20:01:43 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins | |
2021/02/10 20:01:43 [DEBUG] ignoring non-existing provider search directory /Users/zoltanreegn/.terraform.d/plugins | |
2021/02/10 20:01:43 [DEBUG] ignoring non-existing provider search directory /Users/zoltanreegn/Library/Application Support/io.terraform/plugins | |
2021/02/10 20:01:43 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins | |
2021/02/10 20:01:43 [INFO] Checkpoint disabled. Not running. | |
2021/02/10 20:01:43 [INFO] CLI command args: []string{"apply"} | |
2021/02/10 20:01:43 [TRACE] Meta.Backend: no config given or present on disk, so returning nil config | |
2021/02/10 20:01:43 [TRACE] Meta.Backend: backend has not previously been initialized in this working directory | |
2021/02/10 20:01:43 [DEBUG] New state was assigned lineage "e1626574-4ac3-d4cd-ad6b-60a7501c1133" | |
2021/02/10 20:01:43 [TRACE] Meta.Backend: using default local state only (no backend configuration, and no existing initialized backend) | |
2021/02/10 20:01:43 [TRACE] Meta.Backend: instantiated backend of type <nil> | |
2021/02/10 20:01:43 [TRACE] providercache.fillMetaCache: scanning directory .terraform/providers | |
2021/02/10 20:01:43 [TRACE] getproviders.SearchLocalDirectory: .terraform/providers is a symlink to .terraform/providers | |
2021/02/10 20:01:43 [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 20:01:43 [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 20:01:44 [TRACE] providercache.fillMetaCache: using cached result from previous scan of .terraform/providers | |
2021/02/10 20:01:44 [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 20:01:44 [DEBUG] checking for provisioner in "." | |
2021/02/10 20:01:44 [DEBUG] checking for provisioner in "/Users/zoltanreegn/.asdf/installs/terraform/0.14.5/bin" | |
2021/02/10 20:01:44 [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 20:01:44 [TRACE] Meta.Backend: backend <nil> does not support operations, so wrapping it in a local backend | |
2021/02/10 20:01:44 [INFO] backend/local: starting Apply operation | |
2021/02/10 20:01:44 [TRACE] backend/local: requesting state manager for workspace "default" | |
2021/02/10 20:01:44 [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 20:01:44 [TRACE] backend/local: requesting state lock for workspace "default" | |
2021/02/10 20:01:44 [TRACE] statemgr.Filesystem: preparing to manage state snapshots at terraform.tfstate | |
2021/02/10 20:01:44 [TRACE] statemgr.Filesystem: no previously-stored snapshot exists | |
2021/02/10 20:01:44 [TRACE] statemgr.Filesystem: locking terraform.tfstate using fcntl flock | |
2021/02/10 20:01:44 [TRACE] statemgr.Filesystem: writing lock metadata to .terraform.tfstate.lock.info | |
2021/02/10 20:01:44 [TRACE] backend/local: reading remote state for workspace "default" | |
2021/02/10 20:01:44 [TRACE] statemgr.Filesystem: reading latest snapshot from terraform.tfstate | |
2021/02/10 20:01:44 [TRACE] statemgr.Filesystem: snapshot file has nil snapshot, but that's okay | |
2021/02/10 20:01:44 [TRACE] statemgr.Filesystem: read nil snapshot | |
2021/02/10 20:01:44 [TRACE] backend/local: retrieving local state snapshot for workspace "default" | |
2021/02/10 20:01:44 [TRACE] backend/local: building context for current working directory | |
2021/02/10 20:01:44 [TRACE] terraform.NewContext: starting | |
2021/02/10 20:01:44 [TRACE] terraform.NewContext: loading provider schemas | |
2021/02/10 20:01:44 [TRACE] LoadSchemas: retrieving schema for provider type "registry.terraform.io/integrations/github" | |
2021-02-10T20:01:44.029+0100 [INFO] plugin: configuring client automatic mTLS | |
2021-02-10T20:01:44.052+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-10T20:01:44.054+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=36715 | |
2021-02-10T20:01:44.054+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-10T20:01:44.064+0100 [INFO] plugin.terraform-provider-github_v4.3.2: configuring server automatic mTLS: timestamp=2021-02-10T20:01:44.064+0100 | |
2021-02-10T20:01:44.087+0100 [DEBUG] plugin: using plugin: version=5 | |
2021-02-10T20:01:44.087+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: plugin address: address=/var/folders/h3/q7k460c5535_rdgh_y7fc8jw0000gn/T/plugin801012622 network=unix timestamp=2021-02-10T20:01:44.087+0100 | |
2021/02/10 20:01:44 [TRACE] GRPCProvider: GetSchema | |
2021-02-10T20:01:44.133+0100 [TRACE] plugin.stdio: waiting for stdio data | |
2021-02-10T20:01:44.134+0100 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unimplemented desc = unknown service plugin.GRPCStdio" | |
2021/02/10 20:01:44 [TRACE] No provider meta schema returned | |
2021/02/10 20:01:44 [TRACE] GRPCProvider: Close | |
2021-02-10T20:01:44.137+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=36715 | |
2021-02-10T20:01:44.137+0100 [DEBUG] plugin: plugin exited | |
2021/02/10 20:01:44 [TRACE] terraform.NewContext: complete | |
2021/02/10 20:01:44 [TRACE] backend/local: finished building terraform.Context | |
2021/02/10 20:01:44 [TRACE] backend/local: requesting interactive input, if necessary | |
2021/02/10 20:01:44 [TRACE] Context.Input: Prompting for provider arguments | |
2021/02/10 20:01:44 [TRACE] Context.Input: Provider provider.github declared at main.tf:1,1-18 | |
2021/02/10 20:01:44 [TRACE] Context.Input: Input for provider.github: map[string]cty.Value{} | |
2021/02/10 20:01:44 [TRACE] backend/local: running validation operation | |
2021/02/10 20:01:44 [INFO] terraform: building graph: GraphTypeValidate | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.ConfigTransformer | |
2021/02/10 20:01:44 [TRACE] ConfigTransformer: Starting for path: | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.ConfigTransformer with new graph: | |
data.github_team.team - *terraform.NodeValidatableResource | |
------ | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.RootVariableTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.RootVariableTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.ModuleVariableTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.ModuleVariableTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.LocalTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.LocalTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.OutputTransformer | |
2021/02/10 20:01:44 [TRACE] OutputTransformer: adding out as *terraform.NodeApplyableOutput | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.OutputTransformer with new graph: | |
data.github_team.team - *terraform.NodeValidatableResource | |
output.out - *terraform.NodeApplyableOutput | |
------ | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.OrphanResourceInstanceTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.OrphanResourceInstanceTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.StateTransformer | |
2021/02/10 20:01:44 [TRACE] StateTransformer: state is empty, so nothing to do | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.StateTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.OrphanOutputTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.OrphanOutputTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.AttachResourceConfigTransformer | |
2021/02/10 20:01:44 [TRACE] AttachResourceConfigTransformer: attaching to "data.github_team.team" (*terraform.NodeValidatableResource) config from hcl.Range{Filename:"main.tf", Start:hcl.Pos{Line:17, Column:1, Byte:291}, End:hcl.Pos{Line:17, Column:26, Byte:316}} | |
2021/02/10 20:01:44 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to data.github_team.team | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.AttachResourceConfigTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.MissingProvisionerTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.MissingProvisionerTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.ProvisionerTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.ProvisionerTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.graphTransformerMulti | |
2021/02/10 20:01:44 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderConfigTransformer | |
2021/02/10 20:01:44 [TRACE] ProviderConfigTransformer: attaching to "provider[\"registry.terraform.io/integrations/github\"]" provider configuration from main.tf:1,1-18 | |
2021/02/10 20:01:44 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderConfigTransformer with new graph: | |
data.github_team.team - *terraform.NodeValidatableResource | |
output.out - *terraform.NodeApplyableOutput | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 20:01:44 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.MissingProviderTransformer | |
2021/02/10 20:01:44 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.MissingProviderTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderTransformer | |
2021/02/10 20:01:44 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/integrations/github"] serving data.github_team.team | |
2021/02/10 20:01:44 [DEBUG] ProviderTransformer: "data.github_team.team" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/integrations/github"] | |
2021/02/10 20:01:44 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderTransformer with new graph: | |
data.github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
output.out - *terraform.NodeApplyableOutput | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 20:01:44 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.PruneProviderTransformer | |
2021/02/10 20:01:44 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.PruneProviderTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ParentProviderTransformer | |
2021/02/10 20:01:44 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ParentProviderTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.graphTransformerMulti with new graph: | |
data.github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
output.out - *terraform.NodeApplyableOutput | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.RemovedModuleTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.RemovedModuleTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.AttachSchemaTransformer | |
2021/02/10 20:01:44 [TRACE] AttachSchemaTransformer: attaching resource schema to data.github_team.team | |
2021/02/10 20:01:44 [TRACE] AttachSchemaTransformer: attaching provider config schema to provider["registry.terraform.io/integrations/github"] | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.AttachSchemaTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.ModuleExpansionTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.ModuleExpansionTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2021/02/10 20:01:44 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/integrations/github\"]" references: [] | |
2021/02/10 20:01:44 [DEBUG] ReferenceTransformer: "data.github_team.team" references: [] | |
2021/02/10 20:01:44 [DEBUG] ReferenceTransformer: "output.out" references: [data.github_team.team] | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.ReferenceTransformer with new graph: | |
data.github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
output.out - *terraform.NodeApplyableOutput | |
data.github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.AttachDependenciesTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.AttachDependenciesTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.attachDataResourceDependenciesTransformer | |
2021/02/10 20:01:44 [TRACE] attachDataDependenciesTransformer: data.github_team.team depends on [] | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.attachDataResourceDependenciesTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.ForcedCBDTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.ForcedCBDTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.CountBoundaryTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.CountBoundaryTransformer with new graph: | |
data.github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
data.github_team.team - *terraform.NodeValidatableResource | |
output.out - *terraform.NodeApplyableOutput | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
output.out - *terraform.NodeApplyableOutput | |
data.github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.CloseProviderTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.CloseProviderTransformer with new graph: | |
data.github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
data.github_team.team - *terraform.NodeValidatableResource | |
output.out - *terraform.NodeApplyableOutput | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
output.out - *terraform.NodeApplyableOutput | |
data.github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
data.github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.CloseRootModuleTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.CloseRootModuleTransformer with new graph: | |
data.github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
data.github_team.team - *terraform.NodeValidatableResource | |
output.out - *terraform.NodeApplyableOutput | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
output.out - *terraform.NodeApplyableOutput | |
data.github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
data.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 20:01:44 [TRACE] Executing graph transform *terraform.TransitiveReductionTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.TransitiveReductionTransformer with new graph: | |
data.github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
output.out - *terraform.NodeApplyableOutput | |
output.out - *terraform.NodeApplyableOutput | |
data.github_team.team - *terraform.NodeValidatableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
data.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 20:01:44 [DEBUG] Starting graph walk: walkValidate | |
2021/02/10 20:01:44 [TRACE] dag/walk: visiting "provider[\"registry.terraform.io/integrations/github\"]" | |
2021/02/10 20:01:44 [TRACE] vertex "provider[\"registry.terraform.io/integrations/github\"]": starting visit (*terraform.NodeApplyableProvider) | |
2021-02-10T20:01:44.138+0100 [INFO] plugin: configuring client automatic mTLS | |
2021-02-10T20:01:44.160+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-10T20:01:44.162+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=36716 | |
2021-02-10T20:01:44.163+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-10T20:01:44.172+0100 [INFO] plugin.terraform-provider-github_v4.3.2: configuring server automatic mTLS: timestamp=2021-02-10T20:01:44.172+0100 | |
2021-02-10T20:01:44.194+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: plugin address: network=unix address=/var/folders/h3/q7k460c5535_rdgh_y7fc8jw0000gn/T/plugin800766867 timestamp=2021-02-10T20:01:44.194+0100 | |
2021-02-10T20:01:44.194+0100 [DEBUG] plugin: using plugin: version=5 | |
2021/02/10 20:01:44 [TRACE] BuiltinEvalContext: Initialized "provider[\"registry.terraform.io/integrations/github\"]" provider for provider["registry.terraform.io/integrations/github"] | |
2021/02/10 20:01:44 [TRACE] buildProviderConfig for provider["registry.terraform.io/integrations/github"]: using explicit config only | |
2021/02/10 20:01:44 [TRACE] GRPCProvider: GetSchema | |
2021-02-10T20:01:44.240+0100 [TRACE] plugin.stdio: waiting for stdio data | |
2021-02-10T20:01:44.240+0100 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unimplemented desc = unknown service plugin.GRPCStdio" | |
2021/02/10 20:01:44 [TRACE] No provider meta schema returned | |
2021/02/10 20:01:44 [TRACE] GRPCProvider: PrepareProviderConfig | |
2021/02/10 20:01:44 [TRACE] vertex "provider[\"registry.terraform.io/integrations/github\"]": visit complete | |
2021/02/10 20:01:44 [TRACE] dag/walk: visiting "data.github_team.team" | |
2021/02/10 20:01:44 [TRACE] vertex "data.github_team.team": starting visit (*terraform.NodeValidatableResource) | |
2021/02/10 20:01:44 [TRACE] GRPCProvider: ValidateDataSourceConfig | |
2021/02/10 20:01:44 [TRACE] vertex "data.github_team.team": visit complete | |
2021/02/10 20:01:44 [TRACE] dag/walk: visiting "provider[\"registry.terraform.io/integrations/github\"] (close)" | |
2021/02/10 20:01:44 [TRACE] dag/walk: visiting "output.out" | |
2021/02/10 20:01:44 [TRACE] vertex "output.out": starting visit (*terraform.NodeApplyableOutput) | |
2021/02/10 20:01:44 [TRACE] vertex "provider[\"registry.terraform.io/integrations/github\"] (close)": starting visit (*terraform.graphNodeCloseProvider) | |
2021/02/10 20:01:44 [TRACE] GRPCProvider: Close | |
2021/02/10 20:01:44 [TRACE] ExecuteWriteOutput: Saving Create change for output.out in changeset | |
2021/02/10 20:01:44 [TRACE] EvalWriteOutput: Removing output.out from state (it is now null) | |
2021/02/10 20:01:44 [TRACE] vertex "output.out": visit complete | |
2021/02/10 20:01:44 [TRACE] dag/walk: visiting "meta.count-boundary (EachMode fixup)" | |
2021/02/10 20:01:44 [TRACE] vertex "meta.count-boundary (EachMode fixup)": starting visit (*terraform.NodeCountBoundary) | |
2021/02/10 20:01:44 [TRACE] vertex "meta.count-boundary (EachMode fixup)": visit complete | |
2021-02-10T20:01:44.246+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=36716 | |
2021-02-10T20:01:44.246+0100 [DEBUG] plugin: plugin exited | |
2021/02/10 20:01:44 [TRACE] vertex "provider[\"registry.terraform.io/integrations/github\"] (close)": visit complete | |
2021/02/10 20:01:44 [TRACE] dag/walk: visiting "root" | |
2021/02/10 20:01:44 [TRACE] vertex "root": starting visit (*terraform.nodeCloseModule) | |
2021/02/10 20:01:44 [TRACE] vertex "root": visit complete | |
2021/02/10 20:01:44 [INFO] backend/local: apply calling Plan | |
2021/02/10 20:01:44 [INFO] terraform: building graph: GraphTypePlan | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.ConfigTransformer | |
2021/02/10 20:01:44 [TRACE] ConfigTransformer: Starting for path: | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.ConfigTransformer with new graph: | |
data.github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
------ | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.RootVariableTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.RootVariableTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.ModuleVariableTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.ModuleVariableTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.LocalTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.LocalTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.OutputTransformer | |
2021/02/10 20:01:44 [TRACE] OutputTransformer: adding out as *terraform.NodeApplyableOutput | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.OutputTransformer with new graph: | |
data.github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
output.out - *terraform.NodeApplyableOutput | |
------ | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.OrphanResourceInstanceTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.OrphanResourceInstanceTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.StateTransformer | |
2021/02/10 20:01:44 [TRACE] StateTransformer: state is empty, so nothing to do | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.StateTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.OrphanOutputTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.OrphanOutputTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.AttachResourceConfigTransformer | |
2021/02/10 20:01:44 [TRACE] AttachResourceConfigTransformer: attaching to "data.github_team.team (expand)" (*terraform.nodeExpandPlannableResource) config from hcl.Range{Filename:"main.tf", Start:hcl.Pos{Line:17, Column:1, Byte:291}, End:hcl.Pos{Line:17, Column:26, Byte:316}} | |
2021/02/10 20:01:44 [TRACE] AttachResourceConfigTransformer: attaching provider meta configs to data.github_team.team (expand) | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.AttachResourceConfigTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.MissingProvisionerTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.MissingProvisionerTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.ProvisionerTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.ProvisionerTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.graphTransformerMulti | |
2021/02/10 20:01:44 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderConfigTransformer | |
2021/02/10 20:01:44 [TRACE] ProviderConfigTransformer: attaching to "provider[\"registry.terraform.io/integrations/github\"]" provider configuration from main.tf:1,1-18 | |
2021/02/10 20:01:44 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderConfigTransformer with new graph: | |
data.github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
output.out - *terraform.NodeApplyableOutput | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 20:01:44 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.MissingProviderTransformer | |
2021/02/10 20:01:44 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.MissingProviderTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ProviderTransformer | |
2021/02/10 20:01:44 [TRACE] ProviderTransformer: exact match for provider["registry.terraform.io/integrations/github"] serving data.github_team.team (expand) | |
2021/02/10 20:01:44 [DEBUG] ProviderTransformer: "data.github_team.team (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/integrations/github"] | |
2021/02/10 20:01:44 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ProviderTransformer with new graph: | |
data.github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
output.out - *terraform.NodeApplyableOutput | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 20:01:44 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.PruneProviderTransformer | |
2021/02/10 20:01:44 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.PruneProviderTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] (graphTransformerMulti) Executing graph transform *terraform.ParentProviderTransformer | |
2021/02/10 20:01:44 [TRACE] (graphTransformerMulti) Completed graph transform *terraform.ParentProviderTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.graphTransformerMulti with new graph: | |
data.github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
output.out - *terraform.NodeApplyableOutput | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.RemovedModuleTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.RemovedModuleTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.AttachSchemaTransformer | |
2021/02/10 20:01:44 [TRACE] AttachSchemaTransformer: attaching provider config schema to provider["registry.terraform.io/integrations/github"] | |
2021/02/10 20:01:44 [TRACE] AttachSchemaTransformer: attaching resource schema to data.github_team.team (expand) | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.AttachSchemaTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.ModuleExpansionTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.ModuleExpansionTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2021/02/10 20:01:44 [DEBUG] ReferenceTransformer: "data.github_team.team (expand)" references: [] | |
2021/02/10 20:01:44 [DEBUG] ReferenceTransformer: "output.out" references: [data.github_team.team (expand)] | |
2021/02/10 20:01:44 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/integrations/github\"]" references: [] | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.ReferenceTransformer with new graph: | |
data.github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
output.out - *terraform.NodeApplyableOutput | |
data.github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.AttachDependenciesTransformer | |
2021/02/10 20:01:44 [TRACE] AttachDependenciesTransformer: data.github_team.team depends on [] | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.AttachDependenciesTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.attachDataResourceDependenciesTransformer | |
2021/02/10 20:01:44 [TRACE] attachDataDependenciesTransformer: data.github_team.team depends on [] | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.attachDataResourceDependenciesTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.ForcedCBDTransformer | |
2021/02/10 20:01:44 [TRACE] ForcedCBDTransformer: "data.github_team.team (expand)" (*terraform.nodeExpandPlannableResource) has no CBD descendent, so skipping | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.ForcedCBDTransformer (no changes) | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.CountBoundaryTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.CountBoundaryTransformer with new graph: | |
data.github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
data.github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
output.out - *terraform.NodeApplyableOutput | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
output.out - *terraform.NodeApplyableOutput | |
data.github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.CloseProviderTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.CloseProviderTransformer with new graph: | |
data.github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
data.github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
output.out - *terraform.NodeApplyableOutput | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
output.out - *terraform.NodeApplyableOutput | |
data.github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
data.github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
------ | |
2021/02/10 20:01:44 [TRACE] Executing graph transform *terraform.CloseRootModuleTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.CloseRootModuleTransformer with new graph: | |
data.github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
data.github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
output.out - *terraform.NodeApplyableOutput | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
output.out - *terraform.NodeApplyableOutput | |
data.github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
data.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 20:01:44 [TRACE] Executing graph transform *terraform.TransitiveReductionTransformer | |
2021/02/10 20:01:44 [TRACE] Completed graph transform *terraform.TransitiveReductionTransformer with new graph: | |
data.github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
meta.count-boundary (EachMode fixup) - *terraform.NodeCountBoundary | |
output.out - *terraform.NodeApplyableOutput | |
output.out - *terraform.NodeApplyableOutput | |
data.github_team.team (expand) - *terraform.nodeExpandPlannableResource | |
provider["registry.terraform.io/integrations/github"] - *terraform.NodeApplyableProvider | |
provider["registry.terraform.io/integrations/github"] (close) - *terraform.graphNodeCloseProvider | |
data.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 20:01:44 [DEBUG] Starting graph walk: walkPlan | |
2021/02/10 20:01:44 [TRACE] dag/walk: visiting "provider[\"registry.terraform.io/integrations/github\"]" | |
2021/02/10 20:01:44 [TRACE] vertex "provider[\"registry.terraform.io/integrations/github\"]": starting visit (*terraform.NodeApplyableProvider) | |
2021-02-10T20:01:44.247+0100 [INFO] plugin: configuring client automatic mTLS | |
2021-02-10T20:01:44.268+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-10T20:01:44.270+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=36717 | |
2021-02-10T20:01:44.270+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-10T20:01:44.279+0100 [INFO] plugin.terraform-provider-github_v4.3.2: configuring server automatic mTLS: timestamp=2021-02-10T20:01:44.279+0100 | |
2021-02-10T20:01:44.302+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: plugin address: address=/var/folders/h3/q7k460c5535_rdgh_y7fc8jw0000gn/T/plugin213014256 network=unix timestamp=2021-02-10T20:01:44.302+0100 | |
2021-02-10T20:01:44.302+0100 [DEBUG] plugin: using plugin: version=5 | |
2021/02/10 20:01:44 [TRACE] BuiltinEvalContext: Initialized "provider[\"registry.terraform.io/integrations/github\"]" provider for provider["registry.terraform.io/integrations/github"] | |
2021-02-10T20:01:44.348+0100 [TRACE] plugin.stdio: waiting for stdio data | |
2021/02/10 20:01:44 [TRACE] buildProviderConfig for provider["registry.terraform.io/integrations/github"]: using explicit config only | |
2021/02/10 20:01:44 [TRACE] GRPCProvider: GetSchema | |
2021-02-10T20:01:44.349+0100 [WARN] plugin.stdio: received EOF, stopping recv loop: err="rpc error: code = Unimplemented desc = unknown service plugin.GRPCStdio" | |
2021/02/10 20:01:44 [TRACE] No provider meta schema returned | |
2021/02/10 20:01:44 [TRACE] GRPCProvider: Configure | |
2021-02-10T20:01:44.351+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 20:01:44 [DEBUG] Github API Request Details: | |
2021-02-10T20:01:44.351+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ---[ REQUEST ]--------------------------------------- | |
2021-02-10T20:01:44.351+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: GET /api/v3/orgs/reegnz-test HTTP/1.1 | |
2021-02-10T20:01:44.351+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Host: redacted.example.com | |
2021-02-10T20:01:44.351+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: User-Agent: go-github | |
2021-02-10T20:01:44.351+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Accept: application/vnd.github.surtur-preview+json | |
2021-02-10T20:01:44.351+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Accept-Encoding: gzip | |
2021-02-10T20:01:44.351+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T20:01:44.351+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T20:01:44.351+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ----------------------------------------------------- | |
2021-02-10T20:01:44.351+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 20:01:44 [TRACE] Acquiring lock for GitHub API request (%!q(<nil>)) | |
2021-02-10T20:01:45.072+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 20:01:45 [TRACE] Releasing lock for GitHub API request (%!q(<nil>)) | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 20:01:45 [DEBUG] Github API Response Details: | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ---[ RESPONSE ]-------------------------------------- | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: HTTP/1.1 200 OK | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Transfer-Encoding: chunked | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Access-Control-Allow-Origin: * | |
2021-02-10T20:01:45.073+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-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Cache-Control: private, max-age=60, s-maxage=60 | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Content-Security-Policy: default-src 'none' | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Content-Type: application/json; charset=utf-8 | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Date: Wed, 10 Feb 2021 19:01:44 GMT | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Etag: W/"16b1891548f4d06098acc32811abe5bb" | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Last-Modified: Wed, 03 Feb 2021 13:54:36 GMT | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Server: GitHub.com | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Status: 200 OK | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Strict-Transport-Security: max-age=31536000; includeSubdomains | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Vary: Accept, Authorization, Cookie, X-GitHub-OTP | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Accepted-Oauth-Scopes: admin:org, read:org, repo, user, write:org | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Content-Type-Options: nosniff | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Frame-Options: deny | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Enterprise-Version: 2.20.17 | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Media-Type: github.surtur-preview; format=json | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Request-Id: eb342fff-3a7b-4a35-b9f1-84fbc73b216b | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Oauth-Scopes: admin:org, admin:org_hook, admin:repo_hook, repo | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Runtime-Rack: 0.093847 | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Xss-Protection: 1; mode=block | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 663 | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: { | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "login": "reegnz-test", | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "id": 3234, | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "node_id": "MDEyOk9yZ2FuaXphdGlvbjMyMzQ=", | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "url": "https://redacted.example.com/api/v3/orgs/reegnz-test", | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "repos_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/repos", | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "events_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/events", | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "hooks_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/hooks", | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "issues_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/issues", | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/members{/member}", | |
2021-02-10T20:01:45.073+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-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "avatar_url": "https://redacted.example.com/avatars/u/3234?", | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "description": "", | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "name": "reegnz-test", | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "company": null, | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "blog": null, | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "location": null, | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "email": "[email protected]", | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "has_organization_projects": true, | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "has_repository_projects": true, | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "public_repos": 0, | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "public_gists": 0, | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "followers": 0, | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "following": 0, | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "html_url": "https://redacted.example.com/reegnz-test", | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "created_at": "2021-02-03T13:48:08Z", | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "updated_at": "2021-02-03T13:54:36Z", | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "type": "Organization", | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "total_private_repos": 1, | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "owned_private_repos": 1, | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "private_gists": 0, | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "disk_usage": 0, | |
2021-02-10T20:01:45.073+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "collaborators": 0, | |
2021-02-10T20:01:45.074+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "billing_email": "", | |
2021-02-10T20:01:45.074+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "default_repository_permission": "read", | |
2021-02-10T20:01:45.074+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_can_create_repositories": true, | |
2021-02-10T20:01:45.074+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "two_factor_requirement_enabled": false, | |
2021-02-10T20:01:45.074+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_allowed_repository_creation_type": "all", | |
2021-02-10T20:01:45.074+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_can_create_public_repositories": true, | |
2021-02-10T20:01:45.074+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_can_create_private_repositories": true, | |
2021-02-10T20:01:45.074+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_can_create_internal_repositories": true, | |
2021-02-10T20:01:45.074+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "plan": { | |
2021-02-10T20:01:45.074+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "name": "enterprise", | |
2021-02-10T20:01:45.074+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "space": 976562499, | |
2021-02-10T20:01:45.074+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "private_repos": 999999999999, | |
2021-02-10T20:01:45.074+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "filled_seats": 1, | |
2021-02-10T20:01:45.074+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "seats": 0 | |
2021-02-10T20:01:45.074+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: } | |
2021-02-10T20:01:45.074+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: } | |
2021-02-10T20:01:45.074+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 0 | |
2021-02-10T20:01:45.074+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T20:01:45.074+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T20:01:45.074+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ----------------------------------------------------- | |
2021/02/10 20:01:45 [TRACE] vertex "provider[\"registry.terraform.io/integrations/github\"]": visit complete | |
2021/02/10 20:01:45 [TRACE] dag/walk: visiting "data.github_team.team (expand)" | |
2021/02/10 20:01:45 [TRACE] vertex "data.github_team.team (expand)": starting visit (*terraform.nodeExpandPlannableResource) | |
2021/02/10 20:01:45 [TRACE] vertex "data.github_team.team (expand)": expanding dynamic subgraph | |
2021/02/10 20:01:45 [TRACE] vertex "data.github_team.team (expand)": entering dynamic subgraph | |
2021/02/10 20:01:45 [TRACE] dag/walk: visiting "data.github_team.team" | |
2021/02/10 20:01:45 [TRACE] vertex "data.github_team.team": starting visit (*terraform.NodePlannableResource) | |
2021/02/10 20:01:45 [TRACE] vertex "data.github_team.team": expanding dynamic subgraph | |
2021/02/10 20:01:45 [TRACE] Executing graph transform *terraform.ResourceCountTransformer | |
2021/02/10 20:01:45 [TRACE] ResourceCountTransformer: adding data.github_team.team as *terraform.NodePlannableResourceInstance | |
2021/02/10 20:01:45 [TRACE] Completed graph transform *terraform.ResourceCountTransformer with new graph: | |
data.github_team.team - *terraform.NodePlannableResourceInstance | |
------ | |
2021/02/10 20:01:45 [TRACE] Executing graph transform *terraform.OrphanResourceInstanceCountTransformer | |
2021/02/10 20:01:45 [TRACE] Completed graph transform *terraform.OrphanResourceInstanceCountTransformer (no changes) | |
2021/02/10 20:01:45 [TRACE] Executing graph transform *terraform.AttachStateTransformer | |
2021/02/10 20:01:45 [DEBUG] Resource instance state not found for node "data.github_team.team", instance data.github_team.team | |
2021/02/10 20:01:45 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes) | |
2021/02/10 20:01:45 [TRACE] Executing graph transform *terraform.TargetsTransformer | |
2021/02/10 20:01:45 [TRACE] Completed graph transform *terraform.TargetsTransformer (no changes) | |
2021/02/10 20:01:45 [TRACE] Executing graph transform *terraform.ReferenceTransformer | |
2021/02/10 20:01:45 [DEBUG] ReferenceTransformer: "data.github_team.team" references: [] | |
2021/02/10 20:01:45 [TRACE] Completed graph transform *terraform.ReferenceTransformer (no changes) | |
2021/02/10 20:01:45 [TRACE] Executing graph transform *terraform.RootTransformer | |
2021/02/10 20:01:45 [TRACE] Completed graph transform *terraform.RootTransformer (no changes) | |
2021/02/10 20:01:45 [TRACE] vertex "data.github_team.team": entering dynamic subgraph | |
2021/02/10 20:01:45 [TRACE] dag/walk: visiting "data.github_team.team" | |
2021/02/10 20:01:45 [TRACE] vertex "data.github_team.team": starting visit (*terraform.NodePlannableResourceInstance) | |
2021/02/10 20:01:45 [TRACE] ReadResourceInstanceState: reading state for data.github_team.team | |
2021/02/10 20:01:45 [TRACE] ReadResourceInstanceState: no state present for data.github_team.team | |
2021/02/10 20:01:45 [TRACE] EvalReadData: Re-validating config for data.github_team.team | |
2021/02/10 20:01:45 [TRACE] GRPCProvider: ValidateDataSourceConfig | |
2021/02/10 20:01:45 [TRACE] EvalReadData: data.github_team.team configuration is complete, so reading from provider | |
2021/02/10 20:01:45 [TRACE] GRPCProvider: ReadDataSource | |
2021-02-10T20:01:45.075+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 20:01:45 [INFO] Refreshing GitHub Team: test-team | |
2021-02-10T20:01:45.075+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 20:01:45 [DEBUG] Github API Request Details: | |
2021-02-10T20:01:45.075+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ---[ REQUEST ]--------------------------------------- | |
2021-02-10T20:01:45.075+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: GET /api/v3/orgs/reegnz-test/teams/test-team HTTP/1.1 | |
2021-02-10T20:01:45.075+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Host: redacted.example.com | |
2021-02-10T20:01:45.075+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: User-Agent: go-github | |
2021-02-10T20:01:45.075+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Accept: application/vnd.github.v3+json | |
2021-02-10T20:01:45.075+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Accept-Encoding: gzip | |
2021-02-10T20:01:45.075+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T20:01:45.075+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T20:01:45.075+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ----------------------------------------------------- | |
2021-02-10T20:01:45.075+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 20:01:45 [TRACE] Acquiring lock for GitHub API request (%!q(<nil>)) | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 20:01:45 [TRACE] Releasing lock for GitHub API request (%!q(<nil>)) | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 20:01:45 [DEBUG] Github API Response Details: | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ---[ RESPONSE ]-------------------------------------- | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: HTTP/1.1 200 OK | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Transfer-Encoding: chunked | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Access-Control-Allow-Origin: * | |
2021-02-10T20:01:45.294+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-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Cache-Control: private, max-age=60, s-maxage=60 | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Content-Security-Policy: default-src 'none' | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Content-Type: application/json; charset=utf-8 | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Date: Wed, 10 Feb 2021 19:01:45 GMT | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Etag: W/"c3d2353d6fb4d01a6fc68bc93e915760" | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Last-Modified: Wed, 10 Feb 2021 18:46:04 GMT | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Server: GitHub.com | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Status: 200 OK | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Strict-Transport-Security: max-age=31536000; includeSubdomains | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Vary: Accept, Authorization, Cookie, X-GitHub-OTP | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Accepted-Oauth-Scopes: admin:org, read:org, repo, user, write:org | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Content-Type-Options: nosniff | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Frame-Options: deny | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Enterprise-Version: 2.20.17 | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Media-Type: github.v3; format=json | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Request-Id: c36aa88e-fdb0-4139-9bee-90bdce354e07 | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Oauth-Scopes: admin:org, admin:org_hook, admin:repo_hook, repo | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Runtime-Rack: 0.046111 | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Xss-Protection: 1; mode=block | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 68d | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: { | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "name": "test-team", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "id": 434, | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "node_id": "MDQ6VGVhbTQzNA==", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "slug": "test-team", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "description": "", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "privacy": "secret", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "url": "https://redacted.example.com/api/v3/teams/434", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "html_url": "https://redacted.example.com/orgs/reegnz-test/teams/test-team", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_url": "https://redacted.example.com/api/v3/teams/434/members{/member}", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "repositories_url": "https://redacted.example.com/api/v3/teams/434/repos", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "permission": "pull", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "created_at": "2021-02-10T18:46:04Z", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "updated_at": "2021-02-10T18:46:04Z", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_count": 1, | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "repos_count": 0, | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "organization": { | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "login": "reegnz-test", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "id": 3234, | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "node_id": "MDEyOk9yZ2FuaXphdGlvbjMyMzQ=", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "url": "https://redacted.example.com/api/v3/orgs/reegnz-test", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "repos_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/repos", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "events_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/events", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "hooks_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/hooks", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "issues_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/issues", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "members_url": "https://redacted.example.com/api/v3/orgs/reegnz-test/members{/member}", | |
2021-02-10T20:01:45.294+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-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "avatar_url": "https://redacted.example.com/avatars/u/3234?", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "description": "", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "name": "reegnz-test", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "company": null, | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "blog": null, | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "location": null, | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "email": "[email protected]", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "has_organization_projects": true, | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "has_repository_projects": true, | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "public_repos": 0, | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "public_gists": 0, | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "followers": 0, | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "following": 0, | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "html_url": "https://redacted.example.com/reegnz-test", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "created_at": "2021-02-03T13:48:08Z", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "updated_at": "2021-02-03T13:54:36Z", | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "type": "Organization" | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: }, | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "parent": null | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: } | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 0 | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ----------------------------------------------------- | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 20:01:45 [DEBUG] Github API Request Details: | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ---[ REQUEST ]--------------------------------------- | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: GET /api/v3/organizations/3234/team/434/members HTTP/1.1 | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Host: redacted.example.com | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: User-Agent: go-github | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Accept: application/vnd.github.v3+json | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Accept-Encoding: gzip | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ----------------------------------------------------- | |
2021-02-10T20:01:45.294+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 20:01:45 [TRACE] Acquiring lock for GitHub API request (%!q(<nil>)) | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 20:01:45 [TRACE] Releasing lock for GitHub API request (%!q(<nil>)) | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 2021/02/10 20:01:45 [DEBUG] Github API Response Details: | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ---[ RESPONSE ]-------------------------------------- | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: HTTP/1.1 404 Not Found | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Transfer-Encoding: chunked | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Access-Control-Allow-Origin: * | |
2021-02-10T20:01:45.488+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-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Content-Security-Policy: default-src 'none' | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Content-Type: application/json; charset=utf-8 | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Date: Wed, 10 Feb 2021 19:01:45 GMT | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Server: GitHub.com | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Status: 404 Not Found | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: Strict-Transport-Security: max-age=31536000; includeSubdomains | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Accepted-Oauth-Scopes: repo | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Content-Type-Options: nosniff | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Frame-Options: deny | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Enterprise-Version: 2.20.17 | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Media-Type: github.v3; format=json | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Github-Request-Id: 0acb0313-3121-49d1-bf49-5e20fedba816 | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Oauth-Scopes: admin:org, admin:org_hook, admin:repo_hook, repo | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Runtime-Rack: 0.024847 | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: X-Xss-Protection: 1; mode=block | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 5d | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: { | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "message": "Not Found", | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: "documentation_url": "https://developer.github.com/enterprise/2.20/v3" | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: } | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: 0 | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: | |
2021-02-10T20:01:45.488+0100 [DEBUG] plugin.terraform-provider-github_v4.3.2: ----------------------------------------------------- | |
2021/02/10 20:01:45 [TRACE] vertex "data.github_team.team": visit complete | |
2021/02/10 20:01:45 [TRACE] vertex "data.github_team.team": dynamic subgraph encountered errors | |
2021/02/10 20:01:45 [TRACE] vertex "data.github_team.team": visit complete | |
2021/02/10 20:01:45 [TRACE] vertex "data.github_team.team (expand)": dynamic subgraph encountered errors | |
2021/02/10 20:01:45 [TRACE] vertex "data.github_team.team (expand)": visit complete | |
2021/02/10 20:01:45 [TRACE] dag/walk: upstream of "output.out" errored, so skipping | |
2021/02/10 20:01:45 [TRACE] dag/walk: upstream of "meta.count-boundary (EachMode fixup)" errored, so skipping | |
2021/02/10 20:01:45 [TRACE] dag/walk: upstream of "provider[\"registry.terraform.io/integrations/github\"] (close)" errored, so skipping | |
2021/02/10 20:01:45 [TRACE] dag/walk: upstream of "root" errored, so skipping | |
2021/02/10 20:01:45 [TRACE] statemgr.Filesystem: removing lock metadata file .terraform.tfstate.lock.info | |
2021/02/10 20:01:45 [TRACE] statemgr.Filesystem: unlocking terraform.tfstate using fcntl flock | |
2021-02-10T20:01:45.492+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=36717 | |
2021-02-10T20:01:45.492+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