Skip to content

Commit

Permalink
Update the description of ip_addresses parameter in `databricks_ip_ac…
Browse files Browse the repository at this point in the history
…cess_list` docs (#2116)
  • Loading branch information
fuselessmatt authored Mar 18, 2023
1 parent 3552a3e commit 5504423
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/resources/ip_access_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ resource "databricks_ip_access_list" "allowed-list" {
label = "allow_in"
list_type = "ALLOW"
ip_addresses = [
"1.1.1.1",
"1.2.3.0/24",
"1.2.5.0/24"
]
Expand All @@ -30,8 +31,8 @@ resource "databricks_ip_access_list" "allowed-list" {

The following arguments are supported:

* `list_type` - Can only be "ALLOW" or "BLOCK"
* `ip_addresses` - This is a field to allow the group to have instance pool create privileges.
* `list_type` - Can only be "ALLOW" or "BLOCK".
* `ip_addresses` - A string list of IP addresses and CIDR ranges.
* `label` - This is the display name for the given IP ACL List.
* `enabled` - (Optional) Boolean `true` or `false` indicating whether this list should be active. Defaults to `true`

Expand Down

0 comments on commit 5504423

Please sign in to comment.