Added sample for a SQL private endpoint for Azure Private Link

This commit is contained in:
asudbring
2024-01-22 21:59:58 -08:00
committed by lonegunmanb
parent 6e33ab9696
commit 174d5fbb03
6 changed files with 372 additions and 0 deletions

View File

@ -0,0 +1,36 @@
variable "resource_group_location" {
type = string
default = "eastus"
description = "Location of the resource group."
}
variable "resource_group_name_prefix" {
type = string
default = "rg"
description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription."
}
variable "username" {
type = string
description = "The username for the local account that will be created on the new VM."
default = "azureuser"
}
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
}