Skip to content

Commit

Permalink
Fix Subnet paramter type
Browse files Browse the repository at this point in the history
  • Loading branch information
tmclaugh committed Oct 13, 2024
1 parent 8ad25f1 commit 5b0fe05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions products/networking/vpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -334,14 +334,14 @@ Resources:
Type: 'AWS::SSM::Parameter'
Properties:
Name: '/org/networking/VpcPublicSubnets'
Type: 'String'
Type: 'StringList'
Description: 'VPC public subnets'
Value: !Join [',', [!Ref PublicSubnet1, !Ref PublicSubnet2, !Ref PublicSubnet3]]

VpcPrivateSubnetsSsmParam:
Type: 'AWS::SSM::Parameter'
Properties:
Name: '/org/networking/VpcPrivateSubnets'
Type: 'String'
Type: 'StringList'
Description: 'VPC private subnets'
Value: !Join [',', [!Ref PrivateSubnet1, !Ref PrivateSubnet2, !Ref PrivateSubnet3]]

0 comments on commit 5b0fe05

Please sign in to comment.