You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Doc] Improve docs for Network Connectivity Config (#3794)
## Changes
<!-- Summary of your changes that are easy to understand -->
Changes include:
* Document missing `egress_conf` attribute - the information about
`default_rules.azure_service_endpoint_rule` was incorrect
* Fix the name of NCC - we don't allow spaces in the name
## Tests
<!--
How is this tested? Please see the checklist below and also describe any
other relevant tests
-->
- [ ] `make test` run locally
- [x] relevant change in `docs/` folder
- [ ] covered with integration tests in `internal/acceptance`
- [ ] relevant acceptance tests are passing
- [ ] using Go SDK
name = "Network Connectivity Config for${var.prefix}"
20
+
name = "ncc-for-${var.prefix}"
21
21
region = var.region
22
22
}
23
23
@@ -39,8 +39,19 @@ The following arguments are available:
39
39
40
40
In addition to all arguments above, the following attributes are exported:
41
41
42
+
*`id` - combination of `account_id` and `network_connectivity_config_id` separated by `/` character
42
43
*`network_connectivity_config_id` - Canonical unique identifier of Network Connectivity Config in Databricks Account
43
-
*`default_rules.azure_service_endpoint_rule` - This provides a list of subnets. These subnets need to be allowed in your Azure resources in order for Databricks to access. See `default_rules.azure_service_endpoint_rule.target_services` for the supported Azure services.
44
+
*`egress_conf` - block containing information about network connectivity rules that apply to network traffic from your serverless compute resources. Consists of the following fields:
45
+
*`default_rules` - block describing network connectivity rules that are applied by default without resource specific configurations. Consists of the following fields:
46
+
*`aws_stable_ip_rule` (AWS only) - block with information about stable AWS IP CIDR blocks. You can use these to configure the firewall of your resources to allow traffic from your Databricks workspace. Consists of the following fields:
47
+
*`cidr_blocks` - list of IP CIDR blocks.
48
+
*`azure_service_endpoint_rule` (Azure only) - block with information about stable Azure service endpoints. You can configure the firewall of your Azure resources to allow traffic from your Databricks serverless compute resources. Consists of the following fields:
49
+
*`subnets` - list of subnets from which Databricks network traffic originates when accessing your Azure resources.
50
+
*`target_region` - the Azure region in which this service endpoint rule applies.
51
+
*`target_services` - the Azure services to which this service endpoint rule applies to.
52
+
*`target_rules` - block describing network connectivity rules that configured for each destinations. These rules override default rules. Consists of the following fields:
53
+
*`azure_private_endpoint_rules` (Azure only) - list containing information about configure Azure Private Endpoints.
0 commit comments