This commit is contained in:
Daniel Marzini 2022-07-29 23:45:15 +02:00
parent f00b67ae88
commit c9fa0fbd55
2 changed files with 15 additions and 0 deletions

View File

@ -57,6 +57,7 @@ resource "google_storage_bucket_object" "tfvars" {
output "clusters" { output "clusters" {
description = "Cluster resources." description = "Cluster resources."
value = module.gke-multitenant.clusters value = module.gke-multitenant.clusters
sensitive = true
} }
output "cluster_ids" { output "cluster_ids" {

View File

@ -18,6 +18,14 @@
# 1 project, m clusters # 1 project, m clusters
# cloud dns for gke? # 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" { variable "authenticator_security_group" {
description = "Optional group used for Groups for GKE." description = "Optional group used for Groups for GKE."
type = string 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" { variable "prefix" {
description = "Prefix used for resources that need unique names." description = "Prefix used for resources that need unique names."
type = string type = string