diff --git a/fast/stages/03-gke-multitenant/dev/outputs.tf b/fast/stages/03-gke-multitenant/dev/outputs.tf index afa203fe..216db95d 100644 --- a/fast/stages/03-gke-multitenant/dev/outputs.tf +++ b/fast/stages/03-gke-multitenant/dev/outputs.tf @@ -57,6 +57,7 @@ resource "google_storage_bucket_object" "tfvars" { output "clusters" { description = "Cluster resources." value = module.gke-multitenant.clusters + sensitive = true } output "cluster_ids" { diff --git a/fast/stages/03-gke-multitenant/dev/variables.tf b/fast/stages/03-gke-multitenant/dev/variables.tf index 1df64622..974b62df 100644 --- a/fast/stages/03-gke-multitenant/dev/variables.tf +++ b/fast/stages/03-gke-multitenant/dev/variables.tf @@ -18,6 +18,14 @@ # 1 project, m clusters # cloud dns for gke? +variable "automation" { + # tfdoc:variable:source 00-bootstrap + description = "Automation resources created by the bootstrap stage." + type = object({ + outputs_bucket = string + }) +} + variable "authenticator_security_group" { description = "Optional group used for Groups for GKE." type = string @@ -230,6 +238,12 @@ variable "nodepools" { }))) } +variable "outputs_location" { + description = "Path where providers, tfvars files, and lists for the following stages are written. Leave empty to disable." + type = string + default = null +} + variable "prefix" { description = "Prefix used for resources that need unique names." type = string