Skip to content

Commit

Permalink
add databricks as service in connectivity
Browse files Browse the repository at this point in the history
  • Loading branch information
lccc-matt-caswell committed Feb 22, 2024
1 parent 1a87092 commit 31d89ba
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,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 Down
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,7 @@ locals {
azure_database_for_mariadb_server = true
azure_database_for_mysql_server = true
azure_database_for_postgresql_server = true
azure_databricks = true
azure_digital_twins = true
azure_event_grid_domain = true
azure_event_grid_topic = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ locals {
azure_database_for_mariadb_server = true
azure_database_for_mysql_server = true
azure_database_for_postgresql_server = true
azure_databricks = true
azure_digital_twins = true
azure_event_grid_domain = true
azure_event_grid_topic = true
Expand Down
1 change: 1 addition & 0 deletions docs/wiki/[Examples]-Deploy-Virtual-WAN-Resources.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ module "enterprise_scale" {
azure_database_for_mariadb_server = true
azure_database_for_mysql_server = true
azure_database_for_postgresql_server = true
azure_databricks = true
azure_digital_twins = true
azure_event_grid_domain = true
azure_event_grid_topic = true
Expand Down
1 change: 1 addition & 0 deletions docs/wiki/[Examples]-Deploy-ZT-Network.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ locals {
azure_database_for_mariadb_server = true
azure_database_for_mysql_server = true
azure_database_for_postgresql_server = true
azure_databricks = true
azure_digital_twins = true
azure_event_grid_domain = true
azure_event_grid_topic = true
Expand Down
1 change: 1 addition & 0 deletions modules/connectivity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,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 Down
2 changes: 2 additions & 0 deletions modules/connectivity/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -1457,6 +1457,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 Down Expand Up @@ -1534,6 +1535,7 @@ locals {
azure_database_for_mariadb_server = local.empty_string
azure_database_for_mysql_server = local.empty_string
azure_database_for_postgresql_server = local.empty_string
azure_databricks = local.empty_string
azure_digital_twins = local.empty_string
azure_event_grid_domain = local.empty_string
azure_event_grid_topic = local.empty_string
Expand Down
1 change: 1 addition & 0 deletions modules/connectivity/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,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 Down
1 change: 1 addition & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,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 Down

0 comments on commit 31d89ba

Please sign in to comment.