Skip to content

Commit

Permalink
sdwan_feature_templates.tf | Security_template | add authentication_t…
Browse files Browse the repository at this point in the history
…ype_variable (#71)

* add authentication_type_variable

* terraform fmt

* update change_log
  • Loading branch information
rrahimm authored Nov 25, 2024
1 parent 958cda9 commit 0a8d5ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
- fix issue where sdwan_application_aware_routing_policy_definition always shows diff when match_criterias or actions are not configured in data model
- add defaults for UX 2.0 feature names
- fix issue where certain parameters were required by sdwan_cflowd_policy_definition resource, but are optional in the UI
- fix issue where authentication_type_variable was not configurable with sdwan_cisco_security_feature_template

## 0.1.0

Expand Down
1 change: 1 addition & 0 deletions sdwan_feature_templates.tf
Original file line number Diff line number Diff line change
Expand Up @@ -850,6 +850,7 @@ resource "sdwan_cisco_security_feature_template" "cisco_security_feature_templat
a == "ip-udp-esp" ? "ah-sha1-hmac" :
a == "ip-udp-esp-no-id" ? "ah-no-id" :
a]
authentication_type_variable = try(each.value.authentication_types_variable, null)
keychains = try(length(each.value.key_chains) == 0, true) ? null : [for key in each.value.key_chains : {
key_id = key.key_id
name = key.name
Expand Down

0 comments on commit 0a8d5ae

Please sign in to comment.