Skip to content

Commit

Permalink
Fix managing default network access and device admin resources (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuba-mazurkiewicz authored Oct 22, 2024
1 parent 6c952e3 commit c6eef28
Show file tree
Hide file tree
Showing 12 changed files with 172 additions and 109 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.2.4

- Fix managing `Default` network access and device admin policy_set, authentication_rule and authorization_rule

## 0.2.3

- 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).
Expand Down
4 changes: 4 additions & 0 deletions docs/guides/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ description: |-

# Changelog

## 0.2.4

- Fix managing `Default` network access and device admin policy_set, authentication_rule and authorization_rule

## 0.2.3

- 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).
Expand Down
1 change: 0 additions & 1 deletion gen/definitions/device_admin_policy_set.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ attributes:
example: PolicySet1
- model_name: description
type: String
computed: true
description: The description of the policy set
example: My description
- model_name: isProxy
Expand Down
1 change: 0 additions & 1 deletion gen/definitions/network_access_policy_set.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ attributes:
example: PolicySet1
- model_name: description
type: String
computed: true
description: The description of the policy set
example: My description
- model_name: isProxy
Expand Down
61 changes: 34 additions & 27 deletions gen/templates/resource.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 19 additions & 9 deletions internal/provider/resource_ise_device_admin_authentication_rule.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 19 additions & 9 deletions internal/provider/resource_ise_device_admin_authorization_rule.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

47 changes: 25 additions & 22 deletions internal/provider/resource_ise_device_admin_policy_set.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c6eef28

Please sign in to comment.