variables.tf 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 "dns_prefix" {
  17. type = string
  18. description = "DNS prefix specified when creating the managed cluster"
  19. default = "eso"
  20. }
  21. variable "key_vault_display_name" {
  22. type = string
  23. description = "The name of the Key Vault to create"
  24. default = "eso-testing"
  25. }
  26. variable "default_node_pool_name" {
  27. type = string
  28. description = " The name of the Default Node Pool which should be created within the Kubernetes Cluster"
  29. default = "default"
  30. }
  31. variable "default_node_pool_node_count" {
  32. type = number
  33. description = " The initial number of nodes which should exist within this Node Pool"
  34. default = 1
  35. }
  36. variable "default_node_pool_vm_size" {
  37. type = string
  38. description = " The SKU which should be used for the Virtual Machines used in this Node Pool"
  39. default = "Standard_B2ms"
  40. }
  41. variable "sa_name" {
  42. type = string
  43. default = "external-secrets-operator"
  44. }
  45. variable "sa_namespace" {
  46. type = string
  47. description = "The namespace where the service account will be created"
  48. default = "external-secrets-operator"
  49. }
  50. variable "cluster_tags" {
  51. type = map(string)
  52. description = "A mapping of tags to assign to the cluster"
  53. default = { cluster_name = "external-secrets-operator" }
  54. }