Sort all variables, outputs, arguments and blocks in resource block.
Adjust code file's style. Add `numeric = false` for `random_string.name` in `201-mysql-fs-db` module as the name is used as `azurerm_mysql_flexible_server.default`'s `administrator_login` and the login name doesn't support a name start with number. Add minimum constraints for `random_password.password` in `201-mysql-fs-db` module as the password required a minimum complexity.
This commit is contained in:
parent
65cb9c7f0e
commit
e3c66ca15d
@ -3,14 +3,13 @@ resource "random_pet" "rg_name" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
resource "azurerm_resource_group" "rg" {
|
resource "azurerm_resource_group" "rg" {
|
||||||
name = random_pet.rg_name.id
|
|
||||||
location = var.resource_group_location
|
location = var.resource_group_location
|
||||||
|
name = random_pet.rg_name.id
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "azurerm_attestation_provider" "corp_attestation" {
|
resource "azurerm_attestation_provider" "corp_attestation" {
|
||||||
|
location = azurerm_resource_group.rg.location
|
||||||
name = var.attestation_provider_name
|
name = var.attestation_provider_name
|
||||||
resource_group_name = azurerm_resource_group.rg.name
|
resource_group_name = azurerm_resource_group.rg.name
|
||||||
location = azurerm_resource_group.rg.location
|
|
||||||
|
|
||||||
policy_signing_certificate_data = file(var.policy_file)
|
policy_signing_certificate_data = file(var.policy_file)
|
||||||
}
|
}
|
@ -6,7 +6,6 @@ terraform {
|
|||||||
source = "hashicorp/azurerm"
|
source = "hashicorp/azurerm"
|
||||||
version = "~>2.0"
|
version = "~>2.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
random = {
|
random = {
|
||||||
source = "hashicorp/random"
|
source = "hashicorp/random"
|
||||||
version = "~>3.0"
|
version = "~>3.0"
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
variable "resource_group_name_prefix" {
|
variable "attestation_provider_name" {
|
||||||
default = "rg"
|
default = "attestationprovider007"
|
||||||
description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription."
|
}
|
||||||
|
|
||||||
|
variable "policy_file" {
|
||||||
|
default = "~/.certs/cert.pem"
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "resource_group_location" {
|
variable "resource_group_location" {
|
||||||
@ -8,10 +11,7 @@ variable "resource_group_location" {
|
|||||||
description = "Location of the resource group."
|
description = "Location of the resource group."
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "policy_file" {
|
variable "resource_group_name_prefix" {
|
||||||
default = "~/.certs/cert.pem"
|
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 "attestation_provider_name" {
|
|
||||||
default = "attestationprovider007"
|
|
||||||
}
|
}
|
@ -3,6 +3,6 @@ resource "random_pet" "rg_name" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
resource "azurerm_resource_group" "rg" {
|
resource "azurerm_resource_group" "rg" {
|
||||||
name = random_pet.rg_name.id
|
|
||||||
location = var.resource_group_location
|
location = var.resource_group_location
|
||||||
|
name = random_pet.rg_name.id
|
||||||
}
|
}
|
@ -6,7 +6,6 @@ terraform {
|
|||||||
source = "hashicorp/azurerm"
|
source = "hashicorp/azurerm"
|
||||||
version = "~>2.0"
|
version = "~>2.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
random = {
|
random = {
|
||||||
source = "hashicorp/random"
|
source = "hashicorp/random"
|
||||||
version = "~>3.0"
|
version = "~>3.0"
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
variable "resource_group_name_prefix" {
|
|
||||||
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 "resource_group_location" {
|
variable "resource_group_location" {
|
||||||
default = "eastus"
|
default = "eastus"
|
||||||
description = "Location of the resource group."
|
description = "Location of the resource group."
|
||||||
}
|
}
|
||||||
|
|
||||||
|
variable "resource_group_name_prefix" {
|
||||||
|
default = "rg"
|
||||||
|
description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription."
|
||||||
|
}
|
@ -4,8 +4,8 @@ resource "random_pet" "rg_name" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
resource "azurerm_resource_group" "rg" {
|
resource "azurerm_resource_group" "rg" {
|
||||||
name = random_pet.rg_name.id
|
|
||||||
location = var.resource_group_location
|
location = var.resource_group_location
|
||||||
|
name = random_pet.rg_name.id
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "random_id" "log_analytics_workspace_name_suffix" {
|
resource "random_id" "log_analytics_workspace_name_suffix" {
|
||||||
@ -13,32 +13,40 @@ resource "random_id" "log_analytics_workspace_name_suffix" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
resource "azurerm_log_analytics_workspace" "test" {
|
resource "azurerm_log_analytics_workspace" "test" {
|
||||||
|
location = var.log_analytics_workspace_location
|
||||||
# The WorkSpace name has to be unique across the whole of azure, not just the current subscription/tenant.
|
# The WorkSpace name has to be unique across the whole of azure, not just the current subscription/tenant.
|
||||||
name = "${var.log_analytics_workspace_name}-${random_id.log_analytics_workspace_name_suffix.dec}"
|
name = "${var.log_analytics_workspace_name}-${random_id.log_analytics_workspace_name_suffix.dec}"
|
||||||
location = var.log_analytics_workspace_location
|
|
||||||
resource_group_name = azurerm_resource_group.rg.name
|
resource_group_name = azurerm_resource_group.rg.name
|
||||||
sku = var.log_analytics_workspace_sku
|
sku = var.log_analytics_workspace_sku
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "azurerm_log_analytics_solution" "test" {
|
resource "azurerm_log_analytics_solution" "test" {
|
||||||
solution_name = "ContainerInsights"
|
|
||||||
location = azurerm_log_analytics_workspace.test.location
|
location = azurerm_log_analytics_workspace.test.location
|
||||||
resource_group_name = azurerm_resource_group.rg.name
|
resource_group_name = azurerm_resource_group.rg.name
|
||||||
workspace_resource_id = azurerm_log_analytics_workspace.test.id
|
solution_name = "ContainerInsights"
|
||||||
workspace_name = azurerm_log_analytics_workspace.test.name
|
workspace_name = azurerm_log_analytics_workspace.test.name
|
||||||
|
workspace_resource_id = azurerm_log_analytics_workspace.test.id
|
||||||
|
|
||||||
plan {
|
plan {
|
||||||
publisher = "Microsoft"
|
|
||||||
product = "OMSGallery/ContainerInsights"
|
product = "OMSGallery/ContainerInsights"
|
||||||
|
publisher = "Microsoft"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "azurerm_kubernetes_cluster" "k8s" {
|
resource "azurerm_kubernetes_cluster" "k8s" {
|
||||||
name = var.cluster_name
|
|
||||||
location = azurerm_resource_group.rg.location
|
location = azurerm_resource_group.rg.location
|
||||||
|
name = var.cluster_name
|
||||||
resource_group_name = azurerm_resource_group.rg.name
|
resource_group_name = azurerm_resource_group.rg.name
|
||||||
dns_prefix = var.dns_prefix
|
dns_prefix = var.dns_prefix
|
||||||
|
tags = {
|
||||||
|
Environment = "Development"
|
||||||
|
}
|
||||||
|
|
||||||
|
default_node_pool {
|
||||||
|
name = "agentpool"
|
||||||
|
vm_size = "Standard_D2_v2"
|
||||||
|
node_count = var.agent_count
|
||||||
|
}
|
||||||
linux_profile {
|
linux_profile {
|
||||||
admin_username = "ubuntu"
|
admin_username = "ubuntu"
|
||||||
|
|
||||||
@ -46,24 +54,12 @@ resource "azurerm_kubernetes_cluster" "k8s" {
|
|||||||
key_data = file(var.ssh_public_key)
|
key_data = file(var.ssh_public_key)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
network_profile {
|
||||||
default_node_pool {
|
network_plugin = "kubenet"
|
||||||
name = "agentpool"
|
load_balancer_sku = "standard"
|
||||||
node_count = var.agent_count
|
|
||||||
vm_size = "Standard_D2_v2"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
service_principal {
|
service_principal {
|
||||||
client_id = var.aks_service_principal_app_id
|
client_id = var.aks_service_principal_app_id
|
||||||
client_secret = var.aks_service_principal_client_secret
|
client_secret = var.aks_service_principal_client_secret
|
||||||
}
|
}
|
||||||
|
|
||||||
network_profile {
|
|
||||||
load_balancer_sku = "standard"
|
|
||||||
network_plugin = "kubenet"
|
|
||||||
}
|
|
||||||
|
|
||||||
tags = {
|
|
||||||
Environment = "Development"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
output "resource_group_name" {
|
output "client_certificate" {
|
||||||
value = azurerm_resource_group.rg.name
|
value = azurerm_kubernetes_cluster.k8s.kube_config[0].client_certificate
|
||||||
|
sensitive = true
|
||||||
}
|
}
|
||||||
|
|
||||||
output "client_key" {
|
output "client_key" {
|
||||||
@ -7,28 +8,18 @@ output "client_key" {
|
|||||||
sensitive = true
|
sensitive = true
|
||||||
}
|
}
|
||||||
|
|
||||||
output "client_certificate" {
|
|
||||||
value = azurerm_kubernetes_cluster.k8s.kube_config[0].client_certificate
|
|
||||||
sensitive = true
|
|
||||||
}
|
|
||||||
|
|
||||||
output "cluster_ca_certificate" {
|
output "cluster_ca_certificate" {
|
||||||
value = azurerm_kubernetes_cluster.k8s.kube_config[0].cluster_ca_certificate
|
value = azurerm_kubernetes_cluster.k8s.kube_config[0].cluster_ca_certificate
|
||||||
sensitive = true
|
sensitive = true
|
||||||
}
|
}
|
||||||
|
|
||||||
output "cluster_username" {
|
|
||||||
value = azurerm_kubernetes_cluster.k8s.kube_config[0].username
|
|
||||||
sensitive = true
|
|
||||||
}
|
|
||||||
|
|
||||||
output "cluster_password" {
|
output "cluster_password" {
|
||||||
value = azurerm_kubernetes_cluster.k8s.kube_config[0].password
|
value = azurerm_kubernetes_cluster.k8s.kube_config[0].password
|
||||||
sensitive = true
|
sensitive = true
|
||||||
}
|
}
|
||||||
|
|
||||||
output "kube_config" {
|
output "cluster_username" {
|
||||||
value = azurerm_kubernetes_cluster.k8s.kube_config_raw
|
value = azurerm_kubernetes_cluster.k8s.kube_config[0].username
|
||||||
sensitive = true
|
sensitive = true
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -37,3 +28,11 @@ output "host" {
|
|||||||
sensitive = true
|
sensitive = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
output "kube_config" {
|
||||||
|
value = azurerm_kubernetes_cluster.k8s.kube_config_raw
|
||||||
|
sensitive = true
|
||||||
|
}
|
||||||
|
|
||||||
|
output "resource_group_name" {
|
||||||
|
value = azurerm_resource_group.rg.name
|
||||||
|
}
|
@ -6,7 +6,6 @@ terraform {
|
|||||||
source = "hashicorp/azurerm"
|
source = "hashicorp/azurerm"
|
||||||
version = "~>3.0"
|
version = "~>3.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
random = {
|
random = {
|
||||||
source = "hashicorp/random"
|
source = "hashicorp/random"
|
||||||
version = "~>3.0"
|
version = "~>3.0"
|
||||||
|
@ -1,3 +1,2 @@
|
|||||||
aks_service_principal_app_id = "<service_principal_app_id>"
|
aks_service_principal_app_id = "<service_principal_app_id>"
|
||||||
|
|
||||||
aks_service_principal_client_secret = "<service_principal_password>"
|
aks_service_principal_client_secret = "<service_principal_password>"
|
@ -1,43 +1,7 @@
|
|||||||
variable "resource_group_name_prefix" {
|
|
||||||
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 "resource_group_location" {
|
|
||||||
default = "eastus"
|
|
||||||
description = "Location of the resource group."
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "agent_count" {
|
variable "agent_count" {
|
||||||
default = 3
|
default = 3
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "ssh_public_key" {
|
|
||||||
default = "~/.ssh/id_rsa.pub"
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "dns_prefix" {
|
|
||||||
default = "k8stest"
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "cluster_name" {
|
|
||||||
default = "k8stest"
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "log_analytics_workspace_name" {
|
|
||||||
default = "testLogAnalyticsWorkspaceName"
|
|
||||||
}
|
|
||||||
|
|
||||||
# Refer to https://azure.microsoft.com/global-infrastructure/services/?products=monitor for available Log Analytics regions.
|
|
||||||
variable "log_analytics_workspace_location" {
|
|
||||||
default = "eastus"
|
|
||||||
}
|
|
||||||
|
|
||||||
# Refer to https://azure.microsoft.com/pricing/details/monitor/ for Log Analytics pricing
|
|
||||||
variable "log_analytics_workspace_sku" {
|
|
||||||
default = "PerGB2018"
|
|
||||||
}
|
|
||||||
|
|
||||||
# The following two variable declarations are placeholder references.
|
# The following two variable declarations are placeholder references.
|
||||||
# Set the values for these variable in terraform.tfvars
|
# Set the values for these variable in terraform.tfvars
|
||||||
variable "aks_service_principal_app_id" {
|
variable "aks_service_principal_app_id" {
|
||||||
@ -47,3 +11,39 @@ variable "aks_service_principal_app_id" {
|
|||||||
variable "aks_service_principal_client_secret" {
|
variable "aks_service_principal_client_secret" {
|
||||||
default = ""
|
default = ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
variable "cluster_name" {
|
||||||
|
default = "k8stest"
|
||||||
|
}
|
||||||
|
|
||||||
|
variable "dns_prefix" {
|
||||||
|
default = "k8stest"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Refer to https://azure.microsoft.com/global-infrastructure/services/?products=monitor for available Log Analytics regions.
|
||||||
|
variable "log_analytics_workspace_location" {
|
||||||
|
default = "eastus"
|
||||||
|
}
|
||||||
|
|
||||||
|
variable "log_analytics_workspace_name" {
|
||||||
|
default = "testLogAnalyticsWorkspaceName"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Refer to https://azure.microsoft.com/pricing/details/monitor/ for Log Analytics pricing
|
||||||
|
variable "log_analytics_workspace_sku" {
|
||||||
|
default = "PerGB2018"
|
||||||
|
}
|
||||||
|
|
||||||
|
variable "resource_group_location" {
|
||||||
|
default = "eastus"
|
||||||
|
description = "Location of the resource group."
|
||||||
|
}
|
||||||
|
|
||||||
|
variable "resource_group_name_prefix" {
|
||||||
|
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 "ssh_public_key" {
|
||||||
|
default = "~/.ssh/id_rsa.pub"
|
||||||
|
}
|
||||||
|
@ -4,42 +4,47 @@ resource "random_pet" "rg_name" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
resource "azurerm_resource_group" "rg" {
|
resource "azurerm_resource_group" "rg" {
|
||||||
name = random_pet.rg_name.id
|
|
||||||
location = var.resource_group_location
|
location = var.resource_group_location
|
||||||
|
name = random_pet.rg_name.id
|
||||||
}
|
}
|
||||||
|
|
||||||
# Generate random value for the name
|
# Generate random value for the name
|
||||||
resource "random_string" "name" {
|
resource "random_string" "name" {
|
||||||
length = 8
|
length = 8
|
||||||
upper = false
|
|
||||||
lower = true
|
lower = true
|
||||||
|
numeric = false
|
||||||
special = false
|
special = false
|
||||||
|
upper = false
|
||||||
}
|
}
|
||||||
|
|
||||||
# Generate random value for the login password
|
# Generate random value for the login password
|
||||||
resource "random_password" "password" {
|
resource "random_password" "password" {
|
||||||
length = 8
|
length = 8
|
||||||
upper = true
|
|
||||||
lower = true
|
lower = true
|
||||||
special = true
|
min_lower = 1
|
||||||
numeric = false
|
min_numeric = 1
|
||||||
|
min_special = 1
|
||||||
|
min_upper = 1
|
||||||
|
numeric = true
|
||||||
override_special = "_"
|
override_special = "_"
|
||||||
|
special = true
|
||||||
|
upper = true
|
||||||
}
|
}
|
||||||
|
|
||||||
# Manages the Virtual Network
|
# Manages the Virtual Network
|
||||||
resource "azurerm_virtual_network" "default" {
|
resource "azurerm_virtual_network" "default" {
|
||||||
name = "vnet-${random_string.name.result}"
|
|
||||||
location = azurerm_resource_group.rg.location
|
|
||||||
resource_group_name = azurerm_resource_group.rg.name
|
|
||||||
address_space = ["10.0.0.0/16"]
|
address_space = ["10.0.0.0/16"]
|
||||||
|
location = azurerm_resource_group.rg.location
|
||||||
|
name = "vnet-${random_string.name.result}"
|
||||||
|
resource_group_name = azurerm_resource_group.rg.name
|
||||||
}
|
}
|
||||||
|
|
||||||
# Manages the Subnet
|
# Manages the Subnet
|
||||||
resource "azurerm_subnet" "default" {
|
resource "azurerm_subnet" "default" {
|
||||||
|
address_prefixes = ["10.0.2.0/24"]
|
||||||
name = "subnet-${random_string.name.result}"
|
name = "subnet-${random_string.name.result}"
|
||||||
resource_group_name = azurerm_resource_group.rg.name
|
resource_group_name = azurerm_resource_group.rg.name
|
||||||
virtual_network_name = azurerm_virtual_network.default.name
|
virtual_network_name = azurerm_virtual_network.default.name
|
||||||
address_prefixes = ["10.0.2.0/24"]
|
|
||||||
service_endpoints = ["Microsoft.Storage"]
|
service_endpoints = ["Microsoft.Storage"]
|
||||||
|
|
||||||
delegation {
|
delegation {
|
||||||
@ -47,7 +52,6 @@ resource "azurerm_subnet" "default" {
|
|||||||
|
|
||||||
service_delegation {
|
service_delegation {
|
||||||
name = "Microsoft.DBforMySQL/flexibleServers"
|
name = "Microsoft.DBforMySQL/flexibleServers"
|
||||||
|
|
||||||
actions = [
|
actions = [
|
||||||
"Microsoft.Network/virtualNetworks/subnets/join/action",
|
"Microsoft.Network/virtualNetworks/subnets/join/action",
|
||||||
]
|
]
|
||||||
@ -65,41 +69,38 @@ resource "azurerm_private_dns_zone" "default" {
|
|||||||
resource "azurerm_private_dns_zone_virtual_network_link" "default" {
|
resource "azurerm_private_dns_zone_virtual_network_link" "default" {
|
||||||
name = "mysqlfsVnetZone${random_string.name.result}.com"
|
name = "mysqlfsVnetZone${random_string.name.result}.com"
|
||||||
private_dns_zone_name = azurerm_private_dns_zone.default.name
|
private_dns_zone_name = azurerm_private_dns_zone.default.name
|
||||||
virtual_network_id = azurerm_virtual_network.default.id
|
|
||||||
resource_group_name = azurerm_resource_group.rg.name
|
resource_group_name = azurerm_resource_group.rg.name
|
||||||
|
virtual_network_id = azurerm_virtual_network.default.id
|
||||||
}
|
}
|
||||||
|
|
||||||
# Manages the MySQL Flexible Server
|
# Manages the MySQL Flexible Server
|
||||||
resource "azurerm_mysql_flexible_server" "default" {
|
resource "azurerm_mysql_flexible_server" "default" {
|
||||||
|
location = azurerm_resource_group.rg.location
|
||||||
name = "mysqlfs-${random_string.name.result}"
|
name = "mysqlfs-${random_string.name.result}"
|
||||||
resource_group_name = azurerm_resource_group.rg.name
|
resource_group_name = azurerm_resource_group.rg.name
|
||||||
location = azurerm_resource_group.rg.location
|
|
||||||
administrator_login = random_string.name.result
|
administrator_login = random_string.name.result
|
||||||
administrator_password = random_password.password.result
|
administrator_password = random_password.password.result
|
||||||
zone = "1"
|
|
||||||
version = "8.0.21"
|
|
||||||
backup_retention_days = 7
|
backup_retention_days = 7
|
||||||
geo_redundant_backup_enabled = false
|
|
||||||
|
|
||||||
storage {
|
|
||||||
size_gb = 20
|
|
||||||
iops = 360
|
|
||||||
}
|
|
||||||
|
|
||||||
delegated_subnet_id = azurerm_subnet.default.id
|
delegated_subnet_id = azurerm_subnet.default.id
|
||||||
|
geo_redundant_backup_enabled = false
|
||||||
private_dns_zone_id = azurerm_private_dns_zone.default.id
|
private_dns_zone_id = azurerm_private_dns_zone.default.id
|
||||||
sku_name = "GP_Standard_D2ds_v4"
|
sku_name = "GP_Standard_D2ds_v4"
|
||||||
|
version = "8.0.21"
|
||||||
|
zone = "1"
|
||||||
|
|
||||||
high_availability {
|
high_availability {
|
||||||
mode = "ZoneRedundant"
|
mode = "ZoneRedundant"
|
||||||
standby_availability_zone = "2"
|
standby_availability_zone = "2"
|
||||||
}
|
}
|
||||||
|
|
||||||
maintenance_window {
|
maintenance_window {
|
||||||
day_of_week = 0
|
day_of_week = 0
|
||||||
start_hour = 8
|
start_hour = 8
|
||||||
start_minute = 0
|
start_minute = 0
|
||||||
}
|
}
|
||||||
|
storage {
|
||||||
|
iops = 360
|
||||||
|
size_gb = 20
|
||||||
|
}
|
||||||
|
|
||||||
depends_on = [azurerm_private_dns_zone_virtual_network_link.default]
|
depends_on = [azurerm_private_dns_zone_virtual_network_link.default]
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
# Manages the MySQL Flexible Server Database
|
# Manages the MySQL Flexible Server Database
|
||||||
resource "azurerm_mysql_flexible_database" "default" {
|
resource "azurerm_mysql_flexible_database" "default" {
|
||||||
|
charset = "utf8"
|
||||||
|
collation = "utf8_unicode_ci"
|
||||||
name = "mysqlfsdb_${random_string.name.result}"
|
name = "mysqlfsdb_${random_string.name.result}"
|
||||||
resource_group_name = azurerm_resource_group.rg.name
|
resource_group_name = azurerm_resource_group.rg.name
|
||||||
server_name = azurerm_mysql_flexible_server.default.name
|
server_name = azurerm_mysql_flexible_server.default.name
|
||||||
charset = "utf8"
|
|
||||||
collation = "utf8_unicode_ci"
|
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,3 @@
|
|||||||
output "resource_group_name" {
|
|
||||||
value = azurerm_resource_group.rg.name
|
|
||||||
}
|
|
||||||
|
|
||||||
output "azurerm_mysql_flexible_server" {
|
output "azurerm_mysql_flexible_server" {
|
||||||
value = azurerm_mysql_flexible_server.default.name
|
value = azurerm_mysql_flexible_server.default.name
|
||||||
}
|
}
|
||||||
@ -9,3 +5,7 @@ output "azurerm_mysql_flexible_server" {
|
|||||||
output "mysql_flexible_server_database_name" {
|
output "mysql_flexible_server_database_name" {
|
||||||
value = azurerm_mysql_flexible_database.default.name
|
value = azurerm_mysql_flexible_database.default.name
|
||||||
}
|
}
|
||||||
|
|
||||||
|
output "resource_group_name" {
|
||||||
|
value = azurerm_resource_group.rg.name
|
||||||
|
}
|
@ -1,9 +1,9 @@
|
|||||||
variable "resource_group_name_prefix" {
|
|
||||||
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 "resource_group_location" {
|
variable "resource_group_location" {
|
||||||
default = "eastus"
|
default = "eastus"
|
||||||
description = "Location of the resource group."
|
description = "Location of the resource group."
|
||||||
}
|
}
|
||||||
|
|
||||||
|
variable "resource_group_name_prefix" {
|
||||||
|
default = "rg"
|
||||||
|
description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription."
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user