From c59c4bdfedd70d8885af44ae5634a2d461061904 Mon Sep 17 00:00:00 2001 From: fuselessmatt <117086905+fuselessmatt@users.noreply.github.com> Date: Wed, 15 Mar 2023 11:49:27 +0100 Subject: [PATCH] Update the description of ip_addresses parameter --- docs/resources/ip_access_list.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/resources/ip_access_list.md b/docs/resources/ip_access_list.md index 88a3229c02..4dd620bc62 100644 --- a/docs/resources/ip_access_list.md +++ b/docs/resources/ip_access_list.md @@ -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" ] @@ -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`