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

[PR #2014/68fb0a31 backport][stable-7] Quote scalars with colons in flow style collection #2017

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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/integration/targets/ec2_ami/tasks/main.yml
Expand Up @@ -708,8 +708,8 @@
tags:
Name: "{{ ec2_ami_name }}_permissions"
launch_permissions:
org_arns: [arn:aws:organizations::123456789012:organization/o-123ab4cdef]
org_unit_arns: [arn:aws:organizations::123456789012:ou/o-123example/ou-1234-5exampld]
org_arns: ["arn:aws:organizations::123456789012:organization/o-123ab4cdef"]
org_unit_arns: ["arn:aws:organizations::123456789012:ou/o-123example/ou-1234-5exampld"]
register: permissions_update_result

- name: Get ami info
Expand Down
Expand Up @@ -12,7 +12,7 @@
to_port: 8182
cidr_ipv6:
- 64:ff9b::/96
- [2620::/32]
- ["2620::/32"]
- proto: tcp
ports: 5665
cidr_ip:
Expand All @@ -38,7 +38,7 @@
to_port: 8182
cidr_ipv6:
- 64:ff9b::/96
- [2620::/32]
- ["2620::/32"]
- proto: tcp
ports: 5665
cidr_ip:
Expand Down Expand Up @@ -66,7 +66,7 @@
to_port: 8182
cidr_ipv6:
- 64:ff9b::/96
- [2620::/32]
- ["2620::/32"]
- proto: tcp
ports: 5665
cidr_ip:
Expand All @@ -92,7 +92,7 @@
to_port: 8182
cidr_ipv6:
- 64:ff9b::/96
- [2620::/32]
- ["2620::/32"]
- proto: tcp
ports: 5665
cidr_ip:
Expand All @@ -117,7 +117,7 @@
to_port: 8182
cidr_ipv6:
- 64:ff9b::/96
- [2620::/32]
- ["2620::/32"]
- proto: tcp
ports: 5665
cidr_ip:
Expand All @@ -142,7 +142,7 @@
to_port: 8182
cidr_ipv6:
- 64:ff9b::/96
- [2620::/32]
- ["2620::/32"]
- proto: tcp
ports: 5665
cidr_ip:
Expand All @@ -167,7 +167,7 @@
from_port: 8182
to_port: 8182
cidr_ipv6:
- [2620::/32, 64:ff9b::/96]
- ["2620::/32", "64:ff9b::/96"]
- proto: tcp
ports: 5665
cidr_ip:
Expand All @@ -190,8 +190,8 @@
from_port: 8182
to_port: 8182
cidr_ipv6:
- [2620::/32, 64:ff9b::/96]
- [2001:DB8:A0B:12F0::1/64]
- ["2620::/32", "64:ff9b::/96"]
- ["2001:DB8:A0B:12F0::1/64"]
- proto: tcp
ports: 5665
cidr_ip:
Expand Down