Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Creating a Project and resources within the same codebase fails #3730

Open
craigwatson opened this issue May 28, 2019 · 7 comments
Open

Creating a Project and resources within the same codebase fails #3730

craigwatson opened this issue May 28, 2019 · 7 comments

Comments

@craigwatson
Copy link

craigwatson commented May 28, 2019

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment
  • If an issue is assigned to the "modular-magician" user, it is either in the process of being autogenerated, or is planned to be autogenerated soon. If an issue is assigned to a user, that user is claiming responsibility for the issue. If an issue is assigned to "hashibot", a community member has claimed the issue already.

Terraform Version

$ terraform -v
Terraform v0.12.0
+ provider.google v2.7.0
+ provider.google-beta v2.7.0
+ provider.random v2.1.2

Affected Resource(s)

google_compute_instance_template
Data: google_compute_default_service_account
Data: google_compute_zones

Possibly others, though this feels like an overall provider bug or usage problem.

Terraform Configuration Files

00-provider.tf

# This is only used to create the project itself

provider "google" {
  credentials = file("../serviceaccount.json")
  version     = ">= 2.5.1, < 3.0.0"
  alias       = "project"
  region      = var.eu_region
}

# This is the default provider used to create all resources within the project

provider "google" {
  credentials = file("../serviceaccount.json")
  version     = ">= 2.5.1, < 3.0.0"
  project     = google_project.it.id
  region      = var.eu_region
}

provider "google-beta" {
  credentials = file("../serviceaccount.json")
  version     = ">= 2.5.1, < 3.0.0"
  project     = google_project.it.id
  region      = var.eu_region
}

02-data.tf

data "google_compute_default_service_account" "default" {
}

data "google_compute_zones" "eu" {
  region = var.eu_region
}

data "google_compute_zones" "us" {
  region = var.us_region
}

03-project.tf

resource "google_project" "it" {
  provider            = "google.project"
  name                = "${terraform.workspace}"
  project_id          = "google-cloud-${terraform.workspace}-${random_string.project_suffix.result}"
  folder_id           = data.google_active_folder.it.name
  auto_create_network = false
  billing_account     = data.google_billing_account.it_devops.id
}

Debug Output


  on 02-data.tf line 23, in data "google_compute_default_service_account" "default":
  23: data "google_compute_default_service_account" "default" {

Error: project: required field is not set

  on 02-data.tf line 26, in data "google_compute_zones" "eu":
  26: data "google_compute_zones" "eu" {

Error: project: required field is not set

  on 02-data.tf line 30, in data "google_compute_zones" "us":
  30: data "google_compute_zones" "us" {

Same issue on completely unrelated modules:

Error: project: required field is not set

  on ../modules/app_cluster/10-main.tf line 2, in resource "google_compute_instance_template" "template":
   2: resource "google_compute_instance_template" "template" {

Expected Behavior

A clean plan

Actual Behavior

Terraform crashed

Steps to Reproduce

  1. terraform plan

Important Factoids

  • This worked prior to running terraform destroy on the stack, which was created with TF 0.11
  • The only resources which use the google.project provider are the project itself and google_project_service

The errors disappear if I add the following snippet to the resources:

project  = google_project.it.id

However I shouldn't have to provide the project explicitly as the resources should use the default (non-aliased) provider, which has the project set at that level.

  • #0000

b/308756165

@ghost ghost added the bug label May 28, 2019
@craigwatson craigwatson changed the title Creating a Project and resources within the same codebase failes Creating a Project and resources within the same codebase fails May 28, 2019
@rileykarson
Copy link
Collaborator

Confirmed with:

# This is only used to create the project itself

provider "google" {
  version     = ">= 2.5.1, < 3.0.0"
  alias       = "project"
  region      = "us-central1"
}

# This is the default provider used to create all resources within the project

provider "google" {
  version     = ">= 2.5.1, < 3.0.0"
  project     = google_project.it.id
  region      = "us-central1"
}

resource "google_project" "it" {
  provider            = "google.project"
  name                = "my-project"
  project_id          = "my-project-######"
  auto_create_network = false
  billing_account     = "######-######-######"
}

data "google_compute_zones" "us" {
  region = "us-central1"
}

Logs:

$ TF_LOG=DEBUG terraform apply
2019/05/28 10:36:19 [INFO] Terraform version: 0.12.0
2019/05/28 10:36:19 [INFO] Go runtime version: go1.12.5
2019/05/28 10:36:19 [INFO] CLI args: []string{"/Users/rileykarson/homebrew/bin/terraform", "apply"}
2019/05/28 10:36:19 [DEBUG] Attempting to open CLI config file: /Users/rileykarson/.terraformrc
2019/05/28 10:36:19 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2019/05/28 10:36:19 [INFO] CLI command args: []string{"apply"}
2019/05/28 10:36:19 [DEBUG] New state was assigned lineage "397855d6-c0f6-2563-2310-9546bd219d16"
2019/05/28 10:36:19 [DEBUG] checking for provider in "."
2019/05/28 10:36:19 [DEBUG] checking for provider in "/Users/rileykarson/homebrew/bin"
2019/05/28 10:36:19 [DEBUG] checking for provider in ".terraform/plugins/darwin_amd64"
2019/05/28 10:36:19 [DEBUG] found provider "terraform-provider-google_v2.7.0_x4"
2019/05/28 10:36:19 [DEBUG] checking for provider in "/Users/rileykarson/.terraform.d/plugins"
2019/05/28 10:36:19 [WARN] found legacy provider "terraform-provider-google"
2019/05/28 10:36:19 [WARN] found legacy provider "terraform-provider-google-beta"
2019/05/28 10:36:19 [DEBUG] found valid plugin: "google", "0.0.0", "/Users/rileykarson/.terraform.d/plugins/terraform-provider-google"
2019/05/28 10:36:19 [DEBUG] found valid plugin: "google-beta", "0.0.0", "/Users/rileykarson/.terraform.d/plugins/terraform-provider-google-beta"
2019/05/28 10:36:19 [DEBUG] found valid plugin: "google", "2.7.0", "/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4"
2019/05/28 10:36:19 [DEBUG] checking for provisioner in "."
2019/05/28 10:36:19 [DEBUG] checking for provisioner in "/Users/rileykarson/homebrew/bin"
2019/05/28 10:36:19 [DEBUG] checking for provisioner in ".terraform/plugins/darwin_amd64"
2019/05/28 10:36:19 [DEBUG] checking for provisioner in "/Users/rileykarson/.terraform.d/plugins"
2019/05/28 10:36:19 [INFO] backend/local: starting Apply operation
2019-05-28T10:36:19.775-0700 [INFO]  plugin: configuring client automatic mTLS
2019-05-28T10:36:19.800-0700 [DEBUG] plugin: starting plugin: path=/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4 args=[/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4]
2019-05-28T10:36:19.805-0700 [DEBUG] plugin: plugin started: path=/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4 pid=71776
2019-05-28T10:36:19.805-0700 [DEBUG] plugin: waiting for RPC address: path=/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4
2019-05-28T10:36:19.823-0700 [INFO]  plugin.terraform-provider-google_v2.7.0_x4: configuring server automatic mTLS: timestamp=2019-05-28T10:36:19.822-0700
2019-05-28T10:36:19.849-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: plugin address: network=unix address=/var/folders/81/zf5_7yzn1sxg_7kfkqsvgclw00cn8c/T/plugin974069367 timestamp=2019-05-28T10:36:19.849-0700
2019-05-28T10:36:19.849-0700 [DEBUG] plugin: using plugin: version=5
2019-05-28T10:36:19.926-0700 [DEBUG] plugin: plugin process exited: path=/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4 pid=71776
2019-05-28T10:36:19.926-0700 [DEBUG] plugin: plugin exited
2019/05/28 10:36:19 [DEBUG] ReferenceTransformer: "google_project.it" references: []
2019/05/28 10:36:19 [DEBUG] ReferenceTransformer: "data.google_compute_zones.us" references: []
2019/05/28 10:36:19 [DEBUG] ReferenceTransformer: "provider.google.project" references: []
2019/05/28 10:36:19 [DEBUG] ReferenceTransformer: "provider.google" references: [google_project.it]
2019-05-28T10:36:19.930-0700 [INFO]  plugin: configuring client automatic mTLS
2019-05-28T10:36:19.958-0700 [DEBUG] plugin: starting plugin: path=/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4 args=[/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4]
2019-05-28T10:36:19.963-0700 [DEBUG] plugin: plugin started: path=/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4 pid=71777
2019-05-28T10:36:19.963-0700 [DEBUG] plugin: waiting for RPC address: path=/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4
2019-05-28T10:36:19.979-0700 [INFO]  plugin.terraform-provider-google_v2.7.0_x4: configuring server automatic mTLS: timestamp=2019-05-28T10:36:19.978-0700
2019-05-28T10:36:20.004-0700 [DEBUG] plugin: using plugin: version=5
2019-05-28T10:36:20.004-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: plugin address: address=/var/folders/81/zf5_7yzn1sxg_7kfkqsvgclw00cn8c/T/plugin655700132 network=unix timestamp=2019-05-28T10:36:20.004-0700
2019-05-28T10:36:20.093-0700 [DEBUG] plugin: plugin process exited: path=/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4 pid=71777
2019-05-28T10:36:20.093-0700 [DEBUG] plugin: plugin exited
2019-05-28T10:36:20.093-0700 [INFO]  plugin: configuring client automatic mTLS
2019-05-28T10:36:20.121-0700 [DEBUG] plugin: starting plugin: path=/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4 args=[/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4]
2019-05-28T10:36:20.128-0700 [DEBUG] plugin: plugin started: path=/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4 pid=71778
2019-05-28T10:36:20.128-0700 [DEBUG] plugin: waiting for RPC address: path=/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4
2019-05-28T10:36:20.143-0700 [INFO]  plugin.terraform-provider-google_v2.7.0_x4: configuring server automatic mTLS: timestamp=2019-05-28T10:36:20.143-0700
2019-05-28T10:36:20.167-0700 [DEBUG] plugin: using plugin: version=5
2019-05-28T10:36:20.167-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: plugin address: address=/var/folders/81/zf5_7yzn1sxg_7kfkqsvgclw00cn8c/T/plugin509424801 network=unix timestamp=2019-05-28T10:36:20.167-0700
2019-05-28T10:36:20.251-0700 [DEBUG] plugin: plugin process exited: path=/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4 pid=71778
2019-05-28T10:36:20.251-0700 [DEBUG] plugin: plugin exited
2019/05/28 10:36:20 [INFO] terraform: building graph: GraphTypeRefresh
2019/05/28 10:36:20 [TRACE] No managed resources in state during refresh; skipping managed resource transformer
2019/05/28 10:36:20 [DEBUG] ReferenceTransformer: "provider.google" references: []
2019/05/28 10:36:20 [DEBUG] ReferenceTransformer: "data.google_compute_zones.us" references: []
2019/05/28 10:36:20 [TRACE] Completed graph transform *terraform.ReferenceTransformer (no changes)
2019/05/28 10:36:20 [TRACE] Executing graph transform *terraform.TargetsTransformer
2019/05/28 10:36:20 [DEBUG] Starting graph walk: walkRefresh
2019-05-28T10:36:20.252-0700 [INFO]  plugin: configuring client automatic mTLS
2019-05-28T10:36:20.276-0700 [DEBUG] plugin: starting plugin: path=/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4 args=[/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4]
2019-05-28T10:36:20.281-0700 [DEBUG] plugin: plugin started: path=/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4 pid=71779
2019-05-28T10:36:20.281-0700 [DEBUG] plugin: waiting for RPC address: path=/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4
2019-05-28T10:36:20.295-0700 [INFO]  plugin.terraform-provider-google_v2.7.0_x4: configuring server automatic mTLS: timestamp=2019-05-28T10:36:20.295-0700
2019-05-28T10:36:20.323-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: plugin address: address=/var/folders/81/zf5_7yzn1sxg_7kfkqsvgclw00cn8c/T/plugin200295246 network=unix timestamp=2019-05-28T10:36:20.323-0700
2019-05-28T10:36:20.323-0700 [DEBUG] plugin: using plugin: version=5
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Authenticating using configured Google JSON 'credentials'...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO]   -- Scopes: [https://www.googleapis.com/auth/compute https://www.googleapis.com/auth/cloud-platform https://www.googleapis.com/auth/ndev.clouddns.readwrite https://www.googleapis.com/auth/devstorage.full_control]
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating GCE client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating GCE Beta client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating GKE client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating GKE Beta client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Cloud DNS client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Cloud DNS Beta client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Cloud KMS Client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Stackdriver Logging client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Storage Client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google SqlAdmin Client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Pubsub Client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Dataflow Client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Cloud ResourceManager Client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Cloud ResourceManager V Client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Cloud Runtimeconfig Client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Cloud IAM Client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Cloud IAMCredentials Client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Cloud Service Management Client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Cloud Service Usage Client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Cloud Billing Client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Cloud Build Client...
2019-05-28T10:36:20.398-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Cloud BigQuery Client...
2019-05-28T10:36:20.399-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Cloud CloudFunctions Client...
2019-05-28T10:36:20.399-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Cloud Source Repo Client...
2019-05-28T10:36:20.399-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Cloud Spanner Client...
2019-05-28T10:36:20.399-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Cloud Dataproc Client...
2019-05-28T10:36:20.399-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Cloud IoT Core Client...
2019-05-28T10:36:20.399-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating App Engine Client...
2019-05-28T10:36:20.399-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Cloud Composer Client...
2019-05-28T10:36:20.399-0700 [DEBUG] plugin.terraform-provider-google_v2.7.0_x4: 2019/05/28 10:36:20 [INFO] Instantiating Google Cloud Storage Transfer Client...
2019/05/28 10:36:20 [DEBUG] Resource state not found for node "data.google_compute_zones.us", instance data.google_compute_zones.us
2019/05/28 10:36:20 [TRACE] Completed graph transform *terraform.AttachStateTransformer (no changes)
2019/05/28 10:36:20 [DEBUG] ReferenceTransformer: "data.google_compute_zones.us" references: []
data.google_compute_zones.us: Refreshing state...
2019/05/28 10:36:20 [ERROR] <root>: eval: *terraform.EvalReadData, err: project: required field is not set
2019/05/28 10:36:20 [ERROR] <root>: eval: *terraform.EvalSequence, err: project: required field is not set

Error: project: required field is not set

  on main.tf line 25, in data "google_compute_zones" "us":
  25: data "google_compute_zones" "us" {


2019-05-28T10:36:20.405-0700 [DEBUG] plugin: plugin process exited: path=/Users/rileykarson/terraform-test/provider2/.terraform/plugins/darwin_amd64/terraform-provider-google_v2.7.0_x4 pid=71779
2019-05-28T10:36:20.405-0700 [DEBUG] plugin: plugin exited

@craigwatson
Copy link
Author

Thanks for confirming this @rileykarson and raising this upstream - wasn’t sure if it was a provider bug or core 👍

modular-magician added a commit to modular-magician/terraform-provider-google that referenced this issue Jul 7, 2020
Upstream hashicorp#6739.

Signed-off-by: Modular Magician <magic-modules@google.com>
modular-magician added a commit that referenced this issue Jul 7, 2020
Upstream #6739.

Signed-off-by: Modular Magician <magic-modules@google.com>
@alex-pravdin-sn
Copy link

Any plans to fix this? My configuration works fine with the stable google provider but fails with the google-beta with the error in the subject.

@alex-pravdin-sn
Copy link

data "google_compute_network" "shared_vpc" {
  name = var.shared_vpc_name
}

This block fails with the google-beta provider but not with the stable one.

@rileykarson
Copy link
Collaborator

Can you confirm that you've done the same thing as was done in the original issue + my reproduction, interpolated a project into one of your provider blocks? Unfortunately there's no solution in the provider & we need to wait on hashicorp/terraform#4149 being iterated upon.

@alex-pravdin-sn
Copy link

alex-pravdin-sn commented Dec 14, 2020

I got this error on the config like this:

provider "google-beta" {
  project = var.project_id
  region = var.region
  zone = var.zone
}

data "google_compute_network" "shared_vpc" {
  name = var.shared_vpc_name
}

with Terraform v0.14.0 and google beta provider v3.50.0

@rileykarson
Copy link
Collaborator

For that last configuration, the datasource needs an explicit provider = google-beta (I recognise this is years later though, ha)

For the issue in general, see hashicorp/terraform#2430. This is not very supported by Terraform & has become less supported over time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants