Skip to content

Commit 5f35b19

Browse files
Add attributes to wireless ssid resource and add device unreachability warning to fabric resources (#153)
1 parent e6ae941 commit 5f35b19

24 files changed

+189
-52
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.1.17 (unreleased)
2+
3+
- Add device unreachability warning to `catalystcenter_anycast_gateway`, `catalystcenter_fabric_l2_handoff`, `catalystcenter_fabric_device`, `catalystcenter_fabric_port_assignment` and `catalystcenter_provision_device` resources
4+
- Add `isAuthKeyPSK` and `isAuthKeyPSKPlusFT` attributes to `catalystcenter_wireless_ssid` resource
5+
16
## 0.1.16
27

38
- Add device unreachability warning to `catalystcenter_fabric_l3_handoff_ip_transit` resource, [link](https://github.com/CiscoDevNet/terraform-provider-catalystcenter/issues/150)

docs/data-sources/wireless_ssid.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ data "catalystcenter_wireless_ssid" "example" {
3939
- `auth_key_easy_psk` (Boolean) When set to true, the feature that enables the use of Easy Pre-shared Key (PSK) authentication is activated
4040
- `auth_key_easy_psk_sha256` (Boolean) The feature that allows the use of Pre-shared Key (PSK) authentication with the SHA256 algorithm is enabled when it is set to true
4141
- `auth_key_owe` (Boolean) When set to true, the Opportunistic Wireless Encryption (OWE) authentication key feature is turned on
42+
- `auth_key_psk` (Boolean) When set to true, the Pre-shared Key (PSK) authentication feature is enabled
43+
- `auth_key_psk_plus_ft` (Boolean) When set to true, the feature that enables the combination of Pre-shared Key (PSK) and Fast Transition (FT) authentication keys is activated
4244
- `auth_key_sae` (Boolean) When set to true, the feature enabling the Simultaneous Authentication of Equals (SAE) authentication key is activated
4345
- `auth_key_sae_ext` (Boolean) When set to true, the Simultaneous Authentication of Equals (SAE) Extended Authentication key feature is turned on
4446
- `auth_key_sae_ext_plus_tf` (Boolean) When set to true, the Simultaneous Authentication of Equals (SAE) combined with Fast Transition (FT) Authentication Key feature is enabled

docs/guides/changelog.md

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

88
# Changelog
99

10+
## 0.1.17 (unreleased)
11+
12+
- Add device unreachability warning to `catalystcenter_anycast_gateway`, `catalystcenter_fabric_l2_handoff`, `catalystcenter_fabric_device`, `catalystcenter_fabric_port_assignment` and `catalystcenter_provision_device` resources
13+
- Add `isAuthKeyPSK` and `isAuthKeyPSKPlusFT` attributes to `catalystcenter_wireless_ssid` resource
14+
1015
## 0.1.16
1116

1217
- Add device unreachability warning to `catalystcenter_fabric_l3_handoff_ip_transit` resource, [link](https://github.com/CiscoDevNet/terraform-provider-catalystcenter/issues/150)

docs/resources/wireless_ssid.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ resource "catalystcenter_wireless_ssid" "example" {
6767
- `auth_key_easy_psk` (Boolean) When set to true, the feature that enables the use of Easy Pre-shared Key (PSK) authentication is activated
6868
- `auth_key_easy_psk_sha256` (Boolean) The feature that allows the use of Pre-shared Key (PSK) authentication with the SHA256 algorithm is enabled when it is set to true
6969
- `auth_key_owe` (Boolean) When set to true, the Opportunistic Wireless Encryption (OWE) authentication key feature is turned on
70+
- `auth_key_psk` (Boolean) When set to true, the Pre-shared Key (PSK) authentication feature is enabled
71+
- `auth_key_psk_plus_ft` (Boolean) When set to true, the feature that enables the combination of Pre-shared Key (PSK) and Fast Transition (FT) authentication keys is activated
7072
- `auth_key_sae` (Boolean) When set to true, the feature enabling the Simultaneous Authentication of Equals (SAE) authentication key is activated
7173
- `auth_key_sae_ext` (Boolean) When set to true, the Simultaneous Authentication of Equals (SAE) Extended Authentication key feature is turned on
7274
- `auth_key_sae_ext_plus_tf` (Boolean) When set to true, the Simultaneous Authentication of Equals (SAE) combined with Fast Transition (FT) Authentication Key feature is enabled

gen/definitions/anycast_gateway.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ data_source_no_id: true
99
skip_minimum_test: true
1010
put_id_include_path: "0.id"
1111
put_no_id: true
12+
device_unreachability_warning: true
1213
doc_category: SDA
1314
attributes:
1415
- model_name: fabricId

gen/definitions/fabric_device.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ put_id_include_path: 0.id
88
import_no_id: true
99
data_source_no_id: true
1010
put_no_id: true
11+
device_unreachability_warning: true
1112
doc_category: SDA
1213
test_tags: [SDA]
1314
attributes:

gen/definitions/fabric_l2_handoff.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ id_from_query_path_attribute: id
77
put_id_include_path: 0.id
88
get_from_all: true
99
put_no_id: true
10+
device_unreachability_warning: true
1011
doc_category: SDA
1112
test_tags: [SDA]
1213
attributes:

gen/definitions/fabric_l3_handoff_ip_transit.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ id_from_query_path_attribute: id
77
put_id_include_path: 0.id
88
get_from_all: true
99
put_no_id: true
10+
device_unreachability_warning: true
1011
doc_category: SDA
1112
test_tags: [SDA]
1213
attributes:

gen/definitions/fabric_port_assignment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ data_source_no_id: true
88
id_from_attribute: true
99
root_list: true
1010
skip_minimum_test: true
11+
device_unreachability_warning: true
1112
doc_category: SDA
1213
test_tags: [SDA]
1314
attributes:

gen/definitions/fabric_provision_device.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import_no_id: true
77
data_source_no_id: true
88
put_id_include_path: "0.id"
99
put_no_id: true
10+
device_unreachability_warning: true
1011
doc_category: SDA
1112
test_tags: [SDA]
1213
attributes:

0 commit comments

Comments
 (0)