Skip to content

Commit d9af212

Browse files
authored
Merge pull request #351 from chkp-nimrodgab/ng-dev
AWS CFT | Added external private ip to single gw output
2 parents 0b1ef5e + ab34ab4 commit d9af212

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

aws/templates/single-gw/gateway-master.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -464,6 +464,9 @@ Outputs:
464464
Condition: AllocateAddress
465465
Description: The public address of the Check Point instance.
466466
Value: !GetAtt GatewayStack.Outputs.PublicAddress
467+
CheckPointInstancePrivateExternalAddress:
468+
Description: The private external address of the Check Point instance.
469+
Value: !GetAtt GatewayStack.Outputs.PrivateExternalAddress
467470
CheckPointInstanceSSH:
468471
Condition: AllocateAddress
469472
Description: SSH command to the Check Point instance.

aws/templates/single-gw/gateway.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -562,6 +562,9 @@ Outputs:
562562
Description: The public address of the Check Point instance.
563563
Value: !Ref PublicAddress
564564
Condition: AllocateAddress
565+
PrivateExternalAddress:
566+
Description: The private external address of the Check Point instance.
567+
Value: !GetAtt ExternalNetworkInterface.PrimaryPrivateIpAddress
565568
SSH:
566569
Description: SSH command to the Check Point instance.
567570
Value: !Join ['', ['ssh -i ', !Ref KeyName, ' admin@', !Ref PublicAddress]]

0 commit comments

Comments
 (0)