Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changes to attribute_name format and removal of manage_ flags #9

Merged
merged 17 commits into from
Feb 15, 2024
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.1.1 (unreleased)

- Fix issue with error due to missing settings for `allowed_protocols` and EAP-TLS stateless session resume
- Added `ise_identity_source_sequence` support
- BREAKING CHANGE: Split `attribute_name` to `dictionary_name` and `attribute_name`
- BREAKING CHANGE: Removed `manage_*` variables

## 0.1.0

- Initial release
12 changes: 3 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ ise:
- name: CertificateNotExpired
type: LibraryConditionAttributes
is_negate: false
attribute_name: CERTIFICATE:Is Expired
dictionary_name: CERTIFICATE
attribute_name: Is Expired
operator: equals
attribute_value: "False"
```
Expand All @@ -35,8 +36,6 @@ module "ise" {
version = ">= 0.1.0"

yaml_files = ["network_access_condition.yaml"]

manage_network_access = true
}
```

Expand All @@ -53,12 +52,6 @@ module "ise" {

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_manage_device_administration"></a> [manage\_device\_administration](#input\_manage\_device\_administration) | Flag to indicate if device administration configuration should be managed. | `bool` | `false` | no |
| <a name="input_manage_identity_management"></a> [manage\_identity\_management](#input\_manage\_identity\_management) | Flag to indicate if identity management configuration should be managed. | `bool` | `false` | no |
| <a name="input_manage_network_access"></a> [manage\_network\_access](#input\_manage\_network\_access) | Flag to indicate if network access configuration should be managed. | `bool` | `false` | no |
| <a name="input_manage_network_resources"></a> [manage\_network\_resources](#input\_manage\_network\_resources) | Flag to indicate if network resources configuration should be managed. | `bool` | `false` | no |
| <a name="input_manage_system"></a> [manage\_system](#input\_manage\_system) | Flag to indicate if system configuration should be managed. | `bool` | `false` | no |
| <a name="input_manage_trust_sec"></a> [manage\_trust\_sec](#input\_manage\_trust\_sec) | Flag to indicate if TrustSec configuration should be managed. | `bool` | `false` | no |
| <a name="input_model"></a> [model](#input\_model) | As an alternative to YAML files, a native Terraform data structure can be provided as well. | `map(any)` | `{}` | no |
| <a name="input_write_default_values_file"></a> [write\_default\_values\_file](#input\_write\_default\_values\_file) | Write all default values to a YAML file. Value is a path pointing to the file to be created. | `string` | `""` | no |
| <a name="input_yaml_directories"></a> [yaml\_directories](#input\_yaml\_directories) | List of paths to YAML directories. | `list(string)` | `[]` | no |
Expand Down Expand Up @@ -184,6 +177,7 @@ module "ise" {
| [ise_device_admin_time_and_date_condition.device_admin_time_and_date_condition](https://registry.terraform.io/providers/CiscoDevNet/ise/latest/docs/resources/device_admin_time_and_date_condition) | resource |
| [ise_downloadable_acl.downloadable_acl](https://registry.terraform.io/providers/CiscoDevNet/ise/latest/docs/resources/downloadable_acl) | resource |
| [ise_endpoint_identity_group.endpoint_identity_group](https://registry.terraform.io/providers/CiscoDevNet/ise/latest/docs/resources/endpoint_identity_group) | resource |
| [ise_identity_source_sequence.identity_source_sequences](https://registry.terraform.io/providers/CiscoDevNet/ise/latest/docs/resources/identity_source_sequence) | resource |
| [ise_internal_user.internal_user](https://registry.terraform.io/providers/CiscoDevNet/ise/latest/docs/resources/internal_user) | resource |
| [ise_license_tier_state.license_tier_state](https://registry.terraform.io/providers/CiscoDevNet/ise/latest/docs/resources/license_tier_state) | resource |
| [ise_network_access_authentication_rule.network_access_authentication_rule_0](https://registry.terraform.io/providers/CiscoDevNet/ise/latest/docs/resources/network_access_authentication_rule) | resource |
Expand Down
5 changes: 2 additions & 3 deletions examples/network_access_condition/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ ise:
- name: CertificateNotExpired
type: LibraryConditionAttributes
is_negate: false
attribute_name: CERTIFICATE:Is Expired
dictionary_name: CERTIFICATE
attribute_name: Is Expired
operator: equals
attribute_value: "False"
```
Expand All @@ -43,8 +44,6 @@ module "ise" {
version = ">= 0.1.0"

yaml_files = ["network_access_condition.yaml"]

manage_network_access = true
}
```
<!-- END_TF_DOCS -->
2 changes: 0 additions & 2 deletions examples/network_access_condition/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,4 @@ module "ise" {
version = ">= 0.1.0"

yaml_files = ["network_access_condition.yaml"]

manage_network_access = true
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ ise:
- name: CertificateNotExpired
type: LibraryConditionAttributes
is_negate: false
attribute_name: CERTIFICATE:Is Expired
dictionary_name: CERTIFICATE
attribute_name: Is Expired
operator: equals
attribute_value: "False"
Loading