Update Argus ACL documentation (#312)
* update argus ACL docs * update datasource docs
This commit is contained in:
parent
0fc2a28469
commit
9528ca2307
4 changed files with 4 additions and 4 deletions
|
|
@ -29,7 +29,7 @@ data "stackit_argus_instance" "example" {
|
|||
|
||||
### Read-Only
|
||||
|
||||
- `acl` (Set of String) The access control list for this instance. Each entry is an IP or IP range that is permitted to access, in CIDR notation.
|
||||
- `acl` (Set of String) The access control list for this instance. Each entry is an IP address range that is permitted to access, in CIDR notation.
|
||||
- `alerting_url` (String) Specifies Alerting URL.
|
||||
- `dashboard_url` (String) Specifies Argus instance dashboard URL.
|
||||
- `grafana_initial_admin_password` (String, Sensitive) Specifies an initial Grafana admin password.
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ resource "stackit_argus_instance" "example" {
|
|||
|
||||
### Optional
|
||||
|
||||
- `acl` (Set of String) The access control list for this instance. Each entry is an IP or IP range that is permitted to access, in CIDR notation.
|
||||
- `acl` (Set of String) The access control list for this instance. Each entry is an IP address range that is permitted to access, in CIDR notation.
|
||||
- `parameters` (Map of String) Additional parameters.
|
||||
|
||||
### Read-Only
|
||||
|
|
|
|||
|
|
@ -197,7 +197,7 @@ func (d *instanceDataSource) Schema(_ context.Context, _ datasource.SchemaReques
|
|||
Computed: true,
|
||||
},
|
||||
"acl": schema.SetAttribute{
|
||||
Description: "The access control list for this instance. Each entry is a single IP address that is permitted to access, in CIDR notation (/32).",
|
||||
Description: "The access control list for this instance. Each entry is an IP address range that is permitted to access, in CIDR notation.",
|
||||
ElementType: types.StringType,
|
||||
Computed: true,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -254,7 +254,7 @@ func (r *instanceResource) Schema(_ context.Context, _ resource.SchemaRequest, r
|
|||
Computed: true,
|
||||
},
|
||||
"acl": schema.SetAttribute{
|
||||
Description: "The access control list for this instance. Each entry is a single IP address that is permitted to access, in CIDR notation (/32).",
|
||||
Description: "The access control list for this instance. Each entry is an IP address range that is permitted to access, in CIDR notation.",
|
||||
ElementType: types.StringType,
|
||||
Optional: true,
|
||||
Validators: []validator.Set{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue