Skip to content

Commit

Permalink
Fix Automation Controller for Advanced Users cloud formation failure (#…
Browse files Browse the repository at this point in the history
…7634)

Renamed 'group' parameter to 'from_group' to fix Exactly one of CidrIp, CidrIpv6, SourceSecurityGroupId, and SourcePrefixListId must be specified and not empty
  • Loading branch information
ericzolf authored Feb 21, 2024
1 parent 851a4d4 commit 42299e2
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions ansible/configs/ansible-automation-platform/env_vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,42 +174,42 @@ security_groups:
from_port: 0
to_port: 65535
protocol: tcp
group: BastionSG
from_group: BastionSG
rule_type: Ingress
- name: BasTowerUdp
description: "ALL from bastion udp"
from_port: 0
to_port: 65535
protocol: udp
group: BastionSG
from_group: BastionSG
rule_type: Ingress
- name: AllInternaltcp
description: "All other nodes tcp"
from_port: 0
to_port: 65535
protocol: tcp
group: HostSG
from_group: HostSG
rule_type: Ingress
- name: AllInternaludp
description: "All other nodes udp"
from_port: 0
to_port: 65535
protocol: udp
group: HostSG
from_group: HostSG
rule_type: Ingress
- name: AllTowerNodestcp
description: "All tower nodes tcp"
from_port: 0
to_port: 65535
protocol: tcp
group: TowerSG
from_group: TowerSG
rule_type: Ingress
- name: AllTowerNodesudp
description: "All tower nodes udp"
from_port: 0
to_port: 65535
protocol: udp
group: TowerSG
from_group: TowerSG
rule_type: Ingress
- name: HostSG
rules:
Expand All @@ -232,42 +232,42 @@ security_groups:
from_port: 0
to_port: 65535
protocol: udp
group: HostSG
from_group: HostSG
rule_type: Ingress
- name: HostTCPPorts
description: "Only from Itself tcp"
from_port: 0
to_port: 65535
protocol: tcp
group: HostSG
from_group: HostSG
rule_type: Ingress
- name: TowerUDPPorts
description: "Only from tower"
from_port: 0
to_port: 65535
protocol: udp
group: TowerSG
from_group: TowerSG
rule_type: Ingress
- name: TowerTCPPorts
description: "Only from tower"
from_port: 0
to_port: 65535
protocol: tcp
group: TowerSG
from_group: TowerSG
rule_type: Ingress
- name: BastionUDPPorts
description: "Only from bastion"
from_port: 0
to_port: 65535
protocol: udp
group: BastionSG
from_group: BastionSG
rule_type: Ingress
- name: BastionTCPPorts
description: "Only from bastion"
from_port: 0
to_port: 65535
protocol: tcp
group: BastionSG
from_group: BastionSG
rule_type: Ingress

instances:
Expand Down

0 comments on commit 42299e2

Please sign in to comment.