Skip to content

Commit

Permalink
Connectivity: Add OpenAI and Databricks Private Link DNS (#918)
Browse files Browse the repository at this point in the history
Co-authored-by: Matt White <16320656+matt-FFFFFF@users.noreply.github.com>
  • Loading branch information
nyanhp and matt-FFFFFF authored Jun 6, 2024
1 parent fba768e commit 09a4211
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,7 @@ object({
azure_database_for_mariadb_server = optional(bool, true)
azure_database_for_mysql_server = optional(bool, true)
azure_database_for_postgresql_server = optional(bool, true)
azure_databricks = optional(bool, true)
azure_digital_twins = optional(bool, true)
azure_event_grid_domain = optional(bool, true)
azure_event_grid_topic = optional(bool, true)
Expand All @@ -552,6 +553,7 @@ object({
azure_media_services = optional(bool, true)
azure_migrate = optional(bool, true)
azure_monitor = optional(bool, true)
azure_openai_service = optional(bool, true)
azure_purview_account = optional(bool, true)
azure_purview_studio = optional(bool, true)
azure_relay_namespace = optional(bool, true)
Expand Down
2 changes: 2 additions & 0 deletions modules/connectivity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,7 @@ object({
azure_database_for_mariadb_server = optional(bool, true)
azure_database_for_mysql_server = optional(bool, true)
azure_database_for_postgresql_server = optional(bool, true)
azure_databricks = optional(bool, true)
azure_digital_twins = optional(bool, true)
azure_event_grid_domain = optional(bool, true)
azure_event_grid_topic = optional(bool, true)
Expand All @@ -345,6 +346,7 @@ object({
azure_media_services = optional(bool, true)
azure_migrate = optional(bool, true)
azure_monitor = optional(bool, true)
azure_openai_service = optional(bool, true)
azure_purview_account = optional(bool, true)
azure_purview_studio = optional(bool, true)
azure_relay_namespace = optional(bool, true)
Expand Down
2 changes: 2 additions & 0 deletions modules/connectivity/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -1461,6 +1461,7 @@ locals {
azure_database_for_mariadb_server = ["privatelink.mariadb.database.azure.com"]
azure_database_for_mysql_server = ["privatelink.mysql.database.azure.com"]
azure_database_for_postgresql_server = ["privatelink.postgres.database.azure.com"]
azure_databricks = ["privatelink.azuredatabricks.net"]
azure_digital_twins = ["privatelink.digitaltwins.azure.net"]
azure_event_grid_domain = ["privatelink.eventgrid.azure.net"]
azure_event_grid_topic = ["privatelink.eventgrid.azure.net"]
Expand All @@ -1476,6 +1477,7 @@ locals {
azure_media_services = ["privatelink.media.azure.net"]
azure_migrate = ["privatelink.prod.migration.windowsazure.com"]
azure_monitor = ["privatelink.monitor.azure.com", "privatelink.oms.opinsights.azure.com", "privatelink.ods.opinsights.azure.com", "privatelink.agentsvc.azure-automation.net", "privatelink.blob.core.windows.net"]
azure_openai_service = ["privatelink.openai.azure.com"]
azure_purview_account = ["privatelink.purview.azure.com"]
azure_purview_studio = ["privatelink.purviewstudio.azure.com"]
azure_relay_namespace = ["privatelink.servicebus.windows.net"]
Expand Down
2 changes: 2 additions & 0 deletions modules/connectivity/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,7 @@ variable "settings" {
azure_database_for_mariadb_server = optional(bool, true)
azure_database_for_mysql_server = optional(bool, true)
azure_database_for_postgresql_server = optional(bool, true)
azure_databricks = optional(bool, true)
azure_digital_twins = optional(bool, true)
azure_event_grid_domain = optional(bool, true)
azure_event_grid_topic = optional(bool, true)
Expand All @@ -269,6 +270,7 @@ variable "settings" {
azure_media_services = optional(bool, true)
azure_migrate = optional(bool, true)
azure_monitor = optional(bool, true)
azure_openai_service = optional(bool, true)
azure_purview_account = optional(bool, true)
azure_purview_studio = optional(bool, true)
azure_relay_namespace = optional(bool, true)
Expand Down
2 changes: 2 additions & 0 deletions tests/modules/settings/settings.connectivity.tf
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,11 @@ locals {
azure_database_for_mariadb_server = false
azure_database_for_mysql_server = false
azure_database_for_postgresql_server = false
azure_databricks = false
azure_digital_twins = false
azure_key_vault_managed_hsm = false
azure_kubernetes_service_management = false
azure_openai_service = false
azure_purview_account = false
azure_purview_studio = false
azure_relay_namespace = false
Expand Down
2 changes: 2 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,7 @@ variable "configure_connectivity_resources" {
azure_database_for_mariadb_server = optional(bool, true)
azure_database_for_mysql_server = optional(bool, true)
azure_database_for_postgresql_server = optional(bool, true)
azure_databricks = optional(bool, true)
azure_digital_twins = optional(bool, true)
azure_event_grid_domain = optional(bool, true)
azure_event_grid_topic = optional(bool, true)
Expand All @@ -380,6 +381,7 @@ variable "configure_connectivity_resources" {
azure_media_services = optional(bool, true)
azure_migrate = optional(bool, true)
azure_monitor = optional(bool, true)
azure_openai_service = optional(bool, true)
azure_purview_account = optional(bool, true)
azure_purview_studio = optional(bool, true)
azure_relay_namespace = optional(bool, true)
Expand Down

0 comments on commit 09a4211

Please sign in to comment.