github.com/swisspost/terratest@v0.0.0-20230214120104-7ec6de2e1ae0/examples/terraform-aws-ecs-example/variables.tf (about)

     1  # ---------------------------------------------------------------------------------------------------------------------
     2  # ENVIRONMENT VARIABLES
     3  # Define these secrets as environment variables
     4  # ---------------------------------------------------------------------------------------------------------------------
     5  
     6  # AWS_ACCESS_KEY_ID
     7  # AWS_SECRET_ACCESS_KEY
     8  
     9  # ---------------------------------------------------------------------------------------------------------------------
    10  # REQUIRED PARAMETERS
    11  # You must provide a value for each of these parameters.
    12  # ---------------------------------------------------------------------------------------------------------------------
    13  variable "region" {
    14    description = "The AWS region to deploy to"
    15    type        = string
    16  }
    17  # ---------------------------------------------------------------------------------------------------------------------
    18  # OPTIONAL PARAMETERS
    19  # These parameters have reasonable defaults.
    20  # ---------------------------------------------------------------------------------------------------------------------
    21  
    22  variable "cluster_name" {
    23    description = "The name to set for the ECS cluster."
    24    type        = string
    25    default     = "terratest-example"
    26  }
    27  
    28  variable "service_name" {
    29    description = "The name to set for the ECS service."
    30    type        = string
    31    default     = "terratest-example"
    32  }
    33