github.com/darmach/terratest@v0.34.8-0.20210517103231-80931f95e3ff/examples/azure/terraform-azure-cosmosdb-example/variables.tf (about)

     1  # ---------------------------------------------------------------------------------------------------------------------
     2  # REQUIRED PARAMETERS
     3  # You must provide a value for each of these parameters.
     4  # ---------------------------------------------------------------------------------------------------------------------
     5  
     6  # ---------------------------------------------------------------------------------------------------------------------
     7  # OPTIONAL PARAMETERS
     8  # These parameters have reasonable defaults.
     9  # ---------------------------------------------------------------------------------------------------------------------
    10  
    11  variable "postfix" {
    12    description = "A postfix string to centrally mitigate resource name collisions"
    13    type        = string
    14    default     = "resource"
    15  }
    16  
    17  variable "location" {
    18    description = "The location to set for the CosmosDB instance."
    19    default     = "East US"
    20  }
    21  
    22  variable "throughput" {
    23    description = "The RU/s throughput for the database account."
    24    default     = 400
    25  }