Quantcast
Channel: Terraform - HashiCorp Discuss
Viewing all articles
Browse latest Browse all 11361

Reference to undeclared resource works 0.11.x and doesn't work in 0.12

$
0
0

@konstantin-recurly wrote:

terraform version
Terraform v0.12.19
+ provider.google v3.4.0
+ provider.kubernetes v1.10.0

I am trying to use this example with the latest terraform version


and I am getting this

terraform validate

Error: Reference to undeclared resource

  on main.tf line 15, in resource "kubernetes_secret" "google-application-credentials":
  15:     credentials.json = base64decode(google_service_account_key.mykey.private_key)

A managed resource "credentials" "json" has not been declared in the root
module.

the same stuff I have that is compatible with 0.11.14 and validate doesn’t complain about anything

terraform version
Terraform v0.11.14
+ provider.google v2.12.0
+ provider.google-beta v2.20.1
+ provider.kubernetes v1.10.0

Your version of Terraform is out of date! The latest version
is 0.12.19. You can update by downloading from www.terraform.io/downloads.html

terraform validate -var="env=qa" -var="project_id=123id" -var="region=us-east4"

Here is the code that works with 0.11.14

resource "google_service_account" "this" {
  account_id   = "thisid-${var.env}"
  display_name = "${var.env} SA"
  project      = "${var.project_id}"
}

provider "kubernetes" {
  alias            = "${var.gke_cluster_name}"
  load_config_file = false
  host             = "https://${var.gke_cluster_endpoint}"
  token            = "${var.google_client_access_token}"
}

resource "google_service_account_key" "this" {
  service_account_id = "${google_service_account.this.email}"
}
resource "kubernetes_secret" "this" {
  provider = "kubernetes.${var.gke_cluster_name}"

  metadata = {
    name      = "this-instance-credentials"
    namespace = "this-system"
  }

  data = {
    credentials.json = "${base64decode(google_service_account_key.this.private_key)}"
  }
}

Do you have any idea what could be wrong?

Posts: 4

Participants: 2

Read full topic


Viewing all articles
Browse latest Browse all 11361

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>