variables.tf 278 B

123456789101112131415161718192021
  1. variable "cluster_name" {
  2. type = string
  3. default = "eso-e2e-managed"
  4. }
  5. variable "irsa_sa_name" {
  6. type = string
  7. }
  8. variable "irsa_sa_namespace" {
  9. type = string
  10. }
  11. variable "cluster_region" {
  12. type = string
  13. }
  14. variable "tags" {
  15. type = map(string)
  16. default = {}
  17. }