Thanks for letting us know we're doing a good job!
If you've got a moment, please tell us what we did right so we can do more of it.
Associates a subnet with a network ACL. For more information, see ReplaceNetworkAclAssociation in the Amazon Elastic Compute Cloud API Reference.
When AWS::EC2::SubnetNetworkAclAssociation
resources are created during create or update operations, AWS CloudFormation adopts
existing resources that share the same key
properties (the properties that contribute to uniquely identify the resource).
However, if the operation fails and rolls back, AWS CloudFormation deletes the previously
out-of-band resources.
You can protect against this behavior by using Retain deletion policies. For more information, see
DeletionPolicy Attribute.
To declare this entity in your AWS CloudFormation template, use the following syntax:
{ "Type" : "AWS::EC2::SubnetNetworkAclAssociation", "Properties" : { "NetworkAclId" :String, "SubnetId" :String} }
Type: AWS::EC2::SubnetNetworkAclAssociation Properties: NetworkAclId:StringSubnetId:String
NetworkAclIdThe ID of the network ACL.
Required: Yes
Type: String
Update requires: Replacement
SubnetIdThe ID of the subnet.
Required: Yes
Type: String
Update requires: Replacement
When you pass the logical ID of this resource to the intrinsic Ref function, Ref returns the ID of the subnet network ACL association.
For more information about using the Ref function, see Ref.
AssociationIdReturns the value of this object's SubnetId property.
The following example associates subnet mySubnet with the myNetworkAcl network ACL.
"mySubnetNetworkAclAssociation" : { "Type" : "AWS::EC2::SubnetNetworkAclAssociation", "Properties" : { "SubnetId" : { "Ref" : "mySubnet" }, "NetworkAclId" : { "Ref" : "myNetworkAcl" } } }
mySubnetNetworkAclAssociation: Type: AWS::EC2::SubnetNetworkAclAssociation Properties: SubnetId: Ref: mySubnet NetworkAclId: Ref: myNetworkAcl