variables.tf 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. variable "cluster_name" {
  2. type = string
  3. description = "The name of the Managed Kubernetes Cluster to create"
  4. default = "eso-cluster"
  5. }
  6. variable "resource_group_name" {
  7. type = string
  8. description = "The Name which should be used for this Resource Group"
  9. default = "external-secrets-operator"
  10. }
  11. variable "resource_group_location" {
  12. type = string
  13. description = "The Azure Region where the Resource Group should exist"
  14. default = "westeurope"
  15. }
  16. variable "application_display_name" {
  17. type = string
  18. description = "Metadata name to use."
  19. default = "external-secrets-operator"
  20. }
  21. variable "dns_prefix" {
  22. type = string
  23. description = "DNS prefix specified when creating the managed cluster"
  24. default = "eso"
  25. }
  26. variable "key_vault_display_name" {
  27. type = string
  28. description = "The name of the Key Vault to create"
  29. default = "eso-testing"
  30. }
  31. variable "default_node_pool_name" {
  32. type = string
  33. description = " The name of the Default Node Pool which should be created within the Kubernetes Cluster"
  34. default = "default"
  35. }
  36. variable "default_node_pool_node_count" {
  37. type = number
  38. description = " The initial number of nodes which should exist within this Node Pool"
  39. default = 1
  40. }
  41. variable "default_node_pool_vm_size" {
  42. type = string
  43. description = " The SKU which should be used for the Virtual Machines used in this Node Pool"
  44. default = "Standard_B2ms"
  45. }
  46. variable "sa_name" {
  47. type = string
  48. default = "external-secrets-operator"
  49. }
  50. variable "sa_namespace" {
  51. type = string
  52. description = "The namespace where the service account will be created"
  53. default = "external-secrets-operator"
  54. }
  55. variable "cluster_tags" {
  56. type = map(string)
  57. description = "A mapping of tags to assign to the cluster"
  58. default = { cluster_name = "external-secrets-operator" }
  59. }