Skip to content

Commit 9ae563b

Browse files
committed
fix(config-generator): correct YAML map syntax in backup_and_restore vars and update authentication_policy_server schema to list
1 parent 390893e commit 9ae563b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

cvp/backup_and_restore_config_generator/vars/backup_and_restore_config_inputs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@ backup_and_restore_config:
5151
component_specific_filters:
5252
components_list: ["backup_storage_configuration"]
5353
backup_storage_configuration:
54-
- server_type:"NFS"
54+
- server_type: "NFS"
5555

5656
# Backup storage configurations with PHYSICAL_DISK server type filter
5757
- file_path: "/tmp/backup_storage_physical_disk_filter_config8.yml"
5858
config:
5959
component_specific_filters:
6060
components_list: ["backup_storage_configuration"]
6161
backup_storage_configuration:
62-
- server_type:"PHYSICAL_DISK"
62+
- server_type: "PHYSICAL_DISK"
6363

6464
# Backup storage configurations with multiple server types
6565
- file_path: "/tmp/backup_storage_multiple_types_filter_config9.yml"

cvp/ise_radius_integration_config_generator/schema/ise_radius_integration_config_schema.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ ise_radius_component_filters_type:
174174
components_list: list(enum('authentication_policy_server'), min=1, max=1, required=False)
175175

176176
# Authentication policy server filters
177-
authentication_policy_server: include('authentication_policy_server_filter_type', required=False)
177+
authentication_policy_server: list(include('authentication_policy_server_filter_type'), min=0, max=100, required=False)
178178

179179
# Authentication policy server filter schema
180180
authentication_policy_server_filter_type:

0 commit comments

Comments
 (0)