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

     1  # ---------------------------------------------------------------------------------------------------------------------
     2  # REQUIRED PARAMETERS
     3  # ---------------------------------------------------------------------------------------------------------------------
     4  variable "region" {
     5    description = "The AWS region to deploy to"
     6    type        = string
     7  }
     8  
     9  # ---------------------------------------------------------------------------------------------------------------------
    10  # OPTIONAL PARAMETERS
    11  # These parameters have reasonable defaults.
    12  # ---------------------------------------------------------------------------------------------------------------------
    13  
    14  variable "table_name" {
    15    description = "The name to set for the dynamoDB table."
    16    type        = string
    17    default     = "terratest-example"
    18  }