Skip to content

Commit a494945

Browse files
committed
Fix sgacl default value
1 parent 6740151 commit a494945

File tree

7 files changed

+18
-6
lines changed

7 files changed

+18
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.8 (unreleased)
2+
3+
- Fix default value of `ip_version` attribute of `ise_trustsec_security_group_acl` resource
4+
15
## 0.1.7
26

37
- BREAKING CHANGE: Refactor `advanced_attributes` of `ise_authorization_profile` resource and data source

docs/guides/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ description: |-
77

88
# Changelog
99

10+
## 0.1.8 (unreleased)
11+
12+
- Fix default value of `ip_version` attribute of `ise_trustsec_security_group_acl` resource
13+
1014
## 0.1.7
1115

1216
- BREAKING CHANGE: Refactor `advanced_attributes` of `ise_authorization_profile` resource and data source

docs/resources/trustsec_security_group_acl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ resource "ise_trustsec_security_group_acl" "example" {
3535
- `description` (String) Description
3636
- `ip_version` (String) IP Version
3737
- Choices: `IPV4`, `IPV6`, `IP_AGNOSTIC`
38-
- Default value: `IPV4`
38+
- Default value: `IP_AGNOSTIC`
3939
- `read_only` (Boolean) Read-only
4040
- Default value: `false`
4141

gen/definitions/trustsec_security_group_acl.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ attributes:
2626
data_path: [Sgacl]
2727
type: String
2828
enum_values: [IPV4, IPV6, IP_AGNOSTIC]
29-
default_value: "IPV4"
29+
default_value: "IP_AGNOSTIC"
3030
example: "IPV4"
3131
description: "IP Version"
3232
- model_name: readOnly

internal/provider/model_ise_trustsec_security_group_acl.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/provider/resource_ise_trustsec_security_group_acl.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

templates/guides/changelog.md.tmpl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ description: |-
77

88
# Changelog
99

10+
## 0.1.8 (unreleased)
11+
12+
- Fix default value of `ip_version` attribute of `ise_trustsec_security_group_acl` resource
13+
1014
## 0.1.7
1115

1216
- BREAKING CHANGE: Refactor `advanced_attributes` of `ise_authorization_profile` resource and data source

0 commit comments

Comments
 (0)