Skip to content

Commit

Permalink
fix up
Browse files Browse the repository at this point in the history
  • Loading branch information
zaidoon1 committed Dec 30, 2024
1 parent 7f38fb6 commit 395b8f1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelog/4816.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
resource/cloudflare_zone_settings_override: Add support for `aegis`
```
4 changes: 3 additions & 1 deletion docs/resources/zone_settings_override.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,9 @@ Required:
<a id="nestedblock--settings--aegis"></a>
### Nested Schema for `settings.aegis`

Required:
Optional:

- `enabled` (Boolean)
- `pool_id` (String)


Expand Down Expand Up @@ -285,6 +286,7 @@ Read-Only:

Read-Only:

- `enabled` (Boolean)
- `pool_id` (String)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -576,9 +576,13 @@ var resourceCloudflareZoneSettingsSchema = map[string]*schema.Schema{
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"enabled": {
Type: schema.TypeBool,
Optional: true,
},
"pool_id": {
Type: schema.TypeString,
Required: true,
Optional: true,
},
},
},
Expand Down

0 comments on commit 395b8f1

Please sign in to comment.