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

Configuration array deserializes as dictionary from YAML options #779

Closed
BernieWhite opened this issue Aug 25, 2021 · 0 comments · Fixed by #780
Closed

Configuration array deserializes as dictionary from YAML options #779

BernieWhite opened this issue Aug 25, 2021 · 0 comments · Fixed by #780
Assignees
Labels
bug Something isn't working
Milestone

Comments

@BernieWhite
Copy link
Member

Description of the issue

When configuring configuration options from YAML, array objects are deserialized as a dictionary instead of PSObject[].

To Reproduce

Steps to reproduce the issue:

configuration:
  AZURE_AKS_ADDITIONAL_REGION_AVAILABILITY_ZONE_LIST:
  - location: 'Australia Southeast'
    zones:
      - "1"
      - "2"
      - "3"
  - location: 'Norway East'
    zones:
      - "1"
      - "2"
      - "3"
$o = New-PSRuleOption .\tests\PSRule.Rules.Azure.Tests\ps-rule-options.yaml
$o.Configuration['AZURE_AKS_ADDITIONAL_REGION_AVAILABILITY_ZONE_LIST']

returns:

Key      Value
---      -----
location Australia Southeast
zones    {1, 2, 3}
location Norway East
zones    {1, 2, 3}

Expected behaviour

Object should deserialize as an array of PSObject instead.

Module in use and version:

  • Module: PSRule
  • Version: 1.6.0

Captured output from $PSVersionTable:

Name                           Value
----                           -----
PSVersion                      7.1.4
PSEdition                      Core
GitCommitId                    7.1.4
OS                             Microsoft Windows 10.0.19043
Platform                       Win32NT
PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0…}
PSRemotingProtocolVersion      2.3
SerializationVersion           1.1.0.1
WSManStackVersion              3.0

Additional context

See discussion.

@BernieWhite BernieWhite added the bug Something isn't working label Aug 25, 2021
@BernieWhite BernieWhite self-assigned this Aug 25, 2021
@BernieWhite BernieWhite modified the milestone: v1.7.0 Aug 25, 2021
BernieWhite added a commit to BernieWhite/PSRule that referenced this issue Aug 25, 2021
BernieWhite added a commit to BernieWhite/PSRule that referenced this issue Aug 25, 2021
@BernieWhite BernieWhite mentioned this issue Sep 5, 2021
4 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant