Skip to content
Merged
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
2 changes: 1 addition & 1 deletion docs/resources/dns_zone.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ resource "stackit_dns_zone" "example" {

### Optional

- `acl` (String) The access control list. E.g. `0.0.0.0/0,::/0`
- `acl` (String) The access control list (e.g., 0.0.0.0/0,::/0). Note: This field currently has no effect and does not enforce any access restrictions on the DNS zone.
- `active` (Boolean)
- `contact_email` (String) A contact e-mail for the zone.
- `default_ttl` (Number) Default time to live. E.g. 3600.
Expand Down
2 changes: 1 addition & 1 deletion stackit/internal/services/dns/zone/resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ func (r *zoneResource) Schema(ctx context.Context, _ resource.SchemaRequest, res
},
},
"acl": schema.StringAttribute{
Description: "The access control list. E.g. `0.0.0.0/0,::/0`",
Description: "The access control list (e.g., 0.0.0.0/0,::/0). Note: This field currently has no effect and does not enforce any access restrictions on the DNS zone.",
Optional: true,
Computed: true,
Validators: []validator.String{
Expand Down
Loading