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

     1  # ---------------------------------------------------------------------------------------------------------------------
     2  # ENVIRONMENT VARIABLES
     3  # Define these secrets as environment variables
     4  # ---------------------------------------------------------------------------------------------------------------------
     5  
     6  # ARM_CLIENT_ID
     7  # ARM_CLIENT_SECRET
     8  # ARM_SUBSCRIPTION_ID
     9  # ARM_TENANT_ID
    10  
    11  # ---------------------------------------------------------------------------------------------------------------------
    12  # REQUIRED PARAMETERS
    13  # You must provide a value for each of these parameters.
    14  # ---------------------------------------------------------------------------------------------------------------------
    15  
    16  # ---------------------------------------------------------------------------------------------------------------------
    17  # OPTIONAL PARAMETERS
    18  # These parameters have reasonable defaults.
    19  # ---------------------------------------------------------------------------------------------------------------------
    20  
    21  variable "location" {
    22    description = "The supported azure location where the resource exists"
    23    type        = string
    24    default     = "West US2"
    25  }
    26  
    27  variable "mysqlserver_admin_login" {
    28    description = "The administrator login name for the mysql server."
    29    type        = string
    30    default     = "mysqladmin"
    31  }
    32  
    33  variable "mysqlserver_sku_name" {
    34    description = "The SKU name for the mysql server."
    35    type        = string
    36    default     = "GP_Gen5_2"
    37  }
    38  
    39  variable "mysqlserver_storage_mb" {
    40    description = "The Max storage allowed for mysql server."
    41    type        = string
    42    default     = "5120"
    43  }
    44  
    45  variable "mysqldb_charset" {
    46    description = "The charset for mysql data base."
    47    type        = string
    48    default     = "utf8"
    49  }
    50  
    51  variable "mysqldb_collation" {
    52    description = "The collation for mysql data base."
    53    type        = string
    54    default     = "utf8_unicode_ci"
    55  }
    56  
    57  variable "postfix" {
    58    description = "A postfix string to centrally mitigate resource name collisions."
    59    type        = string
    60    default     = "resource"
    61  }