Add synapse 201

This commit is contained in:
murggu
2022-11-08 13:47:23 +01:00
parent ebf66eab0b
commit d65c97c307
17 changed files with 603 additions and 16 deletions

View File

@ -0,0 +1,66 @@
variable "name" {
type = string
description = "Name of the deployment"
}
variable "environment" {
type = string
description = "Name of the environment"
default = "dev"
}
variable "location" {
type = string
description = "Location of the resources"
default = "East US"
}
variable "aad_login" {
description = "AAD login"
type = object({
name = string
object_id = string
tenant_id = string
})
default = {
name = "AzureAD Admin"
object_id = "00000000-0000-0000-0000-000000000000"
tenant_id = "00000000-0000-0000-0000-000000000000"
}
}
variable "jumphost_username" {
type = string
description = "Admin username of the VM"
default = "azureuser"
}
variable "jumphost_password" {
type = string
description = "Password for the admin username of the VM"
default = "ThisIsNotVerySecure!"
}
variable "synadmin_username" {
type = string
description = "Specifies The login name of the SQL administrator"
default = "sqladminuser"
}
variable "synadmin_password" {
type = string
description = "The Password associated with the sql_administrator_login for the SQL administrator"
default = "ThisIsNotVerySecure!"
}
variable "enable_syn_sparkpool" {
type = bool
description = "Variable to enable or disable Synapse Spark pool deployment"
default = false
}
variable "enable_syn_sqlpool" {
type = bool
description = "Variable to enable or disable Synapse Dedicated SQL pool deployment"
default = false
}