Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added enhancements #55

Merged
merged 4 commits into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 26 additions & 6 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ resource "random_password" "main" {

resource "azurerm_mysql_flexible_server" "main" {
count = var.enabled ? 1 : 0
name = format("%s-mysql-flexible-server", module.labels.id)
name = var.mysql_server_name != null ? var.mysql_server_name : format("%s-mysql-flexible-server", module.labels.id)
resource_group_name = local.resource_group_name
location = var.location
administrator_login = var.admin_username
Expand All @@ -71,15 +71,35 @@ resource "azurerm_mysql_flexible_server" "main" {
standby_availability_zone = lookup(high_availability.value, "standby_availability_zone", 1)
}
}
identity {
type = var.identity_type
identity_ids = var.identity_type == "UserAssigned" ? var.user_assigned_identity_ids : []
}

version = var.mysql_version
zone = var.zone

tags = module.labels.tags
tags = var.custom_tags == null ? module.labels.tags : var.custom_tags

depends_on = [azurerm_private_dns_zone_virtual_network_link.main, azurerm_private_dns_zone_virtual_network_link.main2]
}

##-----------------------------------------------------------------------------
## Below resource will create mysql server active directory administrator.
##-----------------------------------------------------------------------------

resource "azurerm_mysql_flexible_server_active_directory_administrator" "main" {
count = length(var.entra_authentication.object_id[*]) > 0 ? 1 : 0

server_id = join("", azurerm_mysql_flexible_server.main.*.id)
identity_id = var.entra_authentication.user_assigned_identity_id
login = var.entra_authentication.login
object_id = var.entra_authentication.object_id
tenant_id = data.azurerm_client_config.current.tenant_id

depends_on = [ azurerm_mysql_flexible_server.main ]
}

##-----------------------------------------------------------------------------
## Below resource will create mysql flexible database.
##-----------------------------------------------------------------------------
Expand All @@ -91,7 +111,7 @@ resource "azurerm_mysql_flexible_database" "main" {
server_name = join("", azurerm_mysql_flexible_server.main.*.name)
charset = var.charset
collation = var.collation
depends_on = [azurerm_mysql_flexible_server.main]
depends_on = [azurerm_mysql_flexible_server_active_directory_administrator.main]
}

##-----------------------------------------------------------------------------
Expand Down Expand Up @@ -122,7 +142,7 @@ resource "azurerm_private_dns_zone" "main" {
count = var.enabled && var.private_dns ? 1 : 0
name = "privatelink.mysql.database.azure.com"
resource_group_name = local.resource_group_name
tags = module.labels.tags
tags = var.custom_tags == null ? module.labels.tags : var.custom_tags
}

##-----------------------------------------------------------------------------
Expand All @@ -135,7 +155,7 @@ resource "azurerm_private_dns_zone_virtual_network_link" "main" {
virtual_network_id = var.virtual_network_id
resource_group_name = local.resource_group_name
registration_enabled = var.registration_enabled
tags = module.labels.tags
tags = var.custom_tags == null ? module.labels.tags : var.custom_tags
}

##-----------------------------------------------------------------------------
Expand All @@ -148,7 +168,7 @@ resource "azurerm_private_dns_zone_virtual_network_link" "main2" {
virtual_network_id = var.virtual_network_id
resource_group_name = var.main_rg_name
registration_enabled = var.registration_enabled
tags = module.labels.tags
tags = var.custom_tags == null ? module.labels.tags : var.custom_tags
}

resource "azurerm_monitor_diagnostic_setting" "mysql" {
Expand Down
34 changes: 29 additions & 5 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -245,10 +245,7 @@ variable "high_availability" {
mode = string
standby_availability_zone = optional(number)
})
default = {
mode = "SameZone"
standby_availability_zone = 1
}
default = null
}

variable "enable_diagnostic" {
Expand Down Expand Up @@ -298,4 +295,31 @@ variable "eventhub_authorization_rule_id" {
type = string
default = null
description = "Eventhub authorization rule id to pass it to destination details of diagnosys setting of NSG."
}
}

variable "custom_tags" {
type = map(string)
default = {}
}

variable "identity_type" {
description = "Type of managed identity to set"
type = string
default = null
}

variable "user_assigned_identity_ids" {
description = "List of user-assigned managed identity IDs"
type = list(string)
default = []
}

variable "entra_authentication" {
description = "Azure Entra authentication configuration block for Azure MySQL Flexible Server"
type = object({
user_assigned_identity_id = optional(string, null)
login = optional(string, null)
object_id = optional(string, null)
})
default = {}
}
Loading