User Story 60501: 101-sql-database (#217)
* Part of POC to test generating sample code and articles using OpenAI. * Changes per Code Review
This commit is contained in:
30
quickstart/101-sql-database/variables.tf
Normal file
30
quickstart/101-sql-database/variables.tf
Normal file
@ -0,0 +1,30 @@
|
||||
variable "resource_group_location" {
|
||||
type = string
|
||||
description = "Location for all resources."
|
||||
default = "eastus"
|
||||
}
|
||||
|
||||
variable "resource_group_name_prefix" {
|
||||
type = string
|
||||
description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription."
|
||||
default = "rg"
|
||||
}
|
||||
|
||||
variable "sql_db_name" {
|
||||
type = string
|
||||
description = "The name of the SQL Database."
|
||||
default = "SampleDB"
|
||||
}
|
||||
|
||||
variable "admin_username" {
|
||||
type = string
|
||||
description = "The administrator username of the SQL logical server."
|
||||
default = "azureadmin"
|
||||
}
|
||||
|
||||
variable "admin_password" {
|
||||
type = string
|
||||
description = "The administrator password of the SQL logical server."
|
||||
sensitive = true
|
||||
default = null
|
||||
}
|
Reference in New Issue
Block a user