variable.tf 265 B

123456789101112131415161718
  1. variable "project_id" {
  2. type = string
  3. }
  4. variable "region" {
  5. type = string
  6. }
  7. variable "network" {
  8. type = string
  9. }
  10. variable "subnetwork" {
  11. type = string
  12. }
  13. variable "workload_identity_users" {
  14. type = list(string)
  15. }
  16. variable "cluster_name" {
  17. type = string
  18. }