- pr comments

This commit is contained in:
Uros Randelovic 2022-08-31 15:17:30 +02:00
parent 8e632a3be6
commit cfe7e1086d

View File

@ -21,7 +21,7 @@ variable "azurerm_subnet_name" {
variable "location" { variable "location" {
type = string type = string
description = "Enter the location where you want to deploy the resources" description = "Enter the location where you want to deploy the resources"
default = "eastus2euap" default = "eastus"
} }
variable "administrator_login" { variable "administrator_login" {
@ -34,6 +34,7 @@ variable "administrator_login_password" {
type = string type = string
description = "Enter administrator password for the database" description = "Enter administrator password for the database"
default = "IamAVeryStrongP@ssw0rd123" default = "IamAVeryStrongP@ssw0rd123"
sensitive = true
} }
variable "database_name" { variable "database_name" {
@ -53,12 +54,12 @@ variable "license_type" {
default = "BasePrice" default = "BasePrice"
} }
variable "vcores" { variable "vcores" {
type = string type = number
description = "Enter number of vCores you want to deploy" description = "Enter number of vCores you want to deploy"
default = 8 default = 8
} }
variable "storage_size_in_gb" { variable "storage_size_in_gb" {
type = string type = number
description = "Enter database name" description = "Enter storage size in GB"
default = 32 default = 32
} }