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

add databricks as service in connectivity #905

Closed
wants to merge 1 commit into from
Closed
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
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