variables.tf 299 B

12345678910111213141516171819
  1. variable "AWS_SA_NAME" {
  2. type = string
  3. default = "eso-e2e-test"
  4. }
  5. variable "AWS_SA_NAMESPACE" {
  6. type = string
  7. default = "default"
  8. }
  9. variable "AWS_REGION" {
  10. type = string
  11. default = "eu-west-1"
  12. }
  13. variable "AWS_CLUSTER_NAME" {
  14. type = string
  15. default = "eso-e2e-managed"
  16. }