
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.
66 lines
1.9 KiB
HCL
66 lines
1.9 KiB
HCL
# Generate random resource group name
|
|
resource "random_pet" "rg_name" {
|
|
prefix = var.resource_group_name_prefix
|
|
}
|
|
|
|
resource "azurerm_resource_group" "rg" {
|
|
location = var.resource_group_location
|
|
name = random_pet.rg_name.id
|
|
}
|
|
|
|
resource "random_id" "log_analytics_workspace_name_suffix" {
|
|
byte_length = 8
|
|
}
|
|
|
|
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.
|
|
name = "${var.log_analytics_workspace_name}-${random_id.log_analytics_workspace_name_suffix.dec}"
|
|
resource_group_name = azurerm_resource_group.rg.name
|
|
sku = var.log_analytics_workspace_sku
|
|
}
|
|
|
|
resource "azurerm_log_analytics_solution" "test" {
|
|
location = azurerm_log_analytics_workspace.test.location
|
|
resource_group_name = azurerm_resource_group.rg.name
|
|
solution_name = "ContainerInsights"
|
|
workspace_name = azurerm_log_analytics_workspace.test.name
|
|
workspace_resource_id = azurerm_log_analytics_workspace.test.id
|
|
|
|
plan {
|
|
product = "OMSGallery/ContainerInsights"
|
|
publisher = "Microsoft"
|
|
}
|
|
}
|
|
|
|
resource "azurerm_kubernetes_cluster" "k8s" {
|
|
location = azurerm_resource_group.rg.location
|
|
name = var.cluster_name
|
|
resource_group_name = azurerm_resource_group.rg.name
|
|
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 {
|
|
admin_username = "ubuntu"
|
|
|
|
ssh_key {
|
|
key_data = file(var.ssh_public_key)
|
|
}
|
|
}
|
|
network_profile {
|
|
network_plugin = "kubenet"
|
|
load_balancer_sku = "standard"
|
|
}
|
|
service_principal {
|
|
client_id = var.aks_service_principal_app_id
|
|
client_secret = var.aks_service_principal_client_secret
|
|
}
|
|
}
|