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

AWS CFT | Updated geo-cluster templates outputs #348

Merged
merged 1 commit into from
Mar 10, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions aws/templates/geo-cluster/geo-cluster-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,12 @@ Outputs:
Condition: AllocateAddress
Description: The public address of member A.
Value: !GetAtt ClusterStack.Outputs.MemberAPublicAddress
MemberAPrivateExternalAddress:
Description: The private external address of member A.
Value: !GetAtt ClusterStack.Outputs.MemberAPrivateExternalAddress
MemberAPrivateInternalAddress:
Description: The private internal address of member A.
Value: !GetAtt ClusterStack.Outputs.MemberAPrivateInternalAddress
MemberASSH:
Condition: AllocateAddress
Description: SSH command to member A.
Expand All @@ -478,6 +484,12 @@ Outputs:
Condition: AllocateAddress
Description: The public address of member B.
Value: !GetAtt ClusterStack.Outputs.MemberBPublicAddress
MemberBPrivateExternalAddress:
Description: The private external address of member B.
Value: !GetAtt ClusterStack.Outputs.MemberBPrivateExternalAddress
MemberBPrivateInternalAddress:
Description: The private internal address of member B.
Value: !GetAtt ClusterStack.Outputs.MemberBPrivateInternalAddress
MemberBSSH:
Condition: AllocateAddress
Description: SSH command to member B.
Expand Down
12 changes: 12 additions & 0 deletions aws/templates/geo-cluster/geo-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -650,6 +650,12 @@ Outputs:
Condition: AllocateAddress
Description: The public address of member A.
Value: !Ref MemberAPublicAddress
MemberAPrivateExternalAddress:
Description: The private external address of member A.
Value: !GetAtt MemberAExternalInterface.PrimaryPrivateIpAddress
MemberAPrivateInternalAddress:
Description: The private internal address of member A.
Value: !GetAtt MemberAInternalInterface.PrimaryPrivateIpAddress
MemberAExternalInterface:
Description: The external interface of member A.
Value: !Ref MemberAExternalInterface
Expand All @@ -665,6 +671,12 @@ Outputs:
Condition: AllocateAddress
Description: The public address of member B.
Value: !Ref MemberBPublicAddress
MemberBPrivateExternalAddress:
Description: The private external address of member B.
Value: !GetAtt MemberBExternalInterface.PrimaryPrivateIpAddress
MemberBPrivateInternalAddress:
Description: The private internal address of member B.
Value: !GetAtt MemberBInternalInterface.PrimaryPrivateIpAddress
MemberBExternalInterface:
Description: The external interface of member B.
Value: !Ref MemberBExternalInterface
Expand Down
Loading