Skip to content

Commit c6eef28

Browse files
Fix managing default network access and device admin resources (#85)
1 parent 6c952e3 commit c6eef28

12 files changed

+172
-109
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.2.4
2+
3+
- Fix managing `Default` network access and device admin policy_set, authentication_rule and authorization_rule
4+
15
## 0.2.3
26

37
- Add `network_access_*_update_rank` and `device_admin_*_update_rank` resources to update rank under network access and device admin policy sets to bypass API limitation which restricts rank assignments to a strictly incremental sequence. More detailed information is available [here](https://registry.terraform.io/providers/CiscoDevNet/ise/latest/docs/guides/authentication_rules).

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.2.4
11+
12+
- Fix managing `Default` network access and device admin policy_set, authentication_rule and authorization_rule
13+
1014
## 0.2.3
1115

1216
- Add `network_access_*_update_rank` and `device_admin_*_update_rank` resources to update rank under network access and device admin policy sets to bypass API limitation which restricts rank assignments to a strictly incremental sequence. More detailed information is available [here](https://registry.terraform.io/providers/CiscoDevNet/ise/latest/docs/guides/authentication_rules).

gen/definitions/device_admin_policy_set.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ attributes:
1414
example: PolicySet1
1515
- model_name: description
1616
type: String
17-
computed: true
1817
description: The description of the policy set
1918
example: My description
2019
- model_name: isProxy

gen/definitions/network_access_policy_set.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ attributes:
1414
example: PolicySet1
1515
- model_name: description
1616
type: String
17-
computed: true
1817
description: The description of the policy set
1918
example: My description
2019
- model_name: isProxy

gen/templates/resource.go

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

internal/provider/resource_ise_device_admin_authentication_rule.go

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

internal/provider/resource_ise_device_admin_authorization_rule.go

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

internal/provider/resource_ise_device_admin_policy_set.go

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

internal/provider/resource_ise_network_access_authentication_rule.go

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

internal/provider/resource_ise_network_access_authorization_rule.go

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

0 commit comments

Comments
 (0)