Skip to content

Commit cfe7e10

Browse files
author
Uros Randelovic
committed
- pr comments
1 parent 8e632a3 commit cfe7e10

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

quickstart/101-managed-instance/variables.tf

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ variable "azurerm_subnet_name" {
2121
variable "location" {
2222
type = string
2323
description = "Enter the location where you want to deploy the resources"
24-
default = "eastus2euap"
24+
default = "eastus"
2525
}
2626

2727
variable "administrator_login" {
@@ -34,6 +34,7 @@ variable "administrator_login_password" {
3434
type = string
3535
description = "Enter administrator password for the database"
3636
default = "IamAVeryStrongP@ssw0rd123"
37+
sensitive = true
3738
}
3839

3940
variable "database_name" {
@@ -53,12 +54,12 @@ variable "license_type" {
5354
default = "BasePrice"
5455
}
5556
variable "vcores" {
56-
type = string
57+
type = number
5758
description = "Enter number of vCores you want to deploy"
5859
default = 8
5960
}
6061
variable "storage_size_in_gb" {
61-
type = string
62-
description = "Enter database name"
62+
type = number
63+
description = "Enter storage size in GB"
6364
default = 32
6465
}

0 commit comments

Comments
 (0)