AWS Console - Network ACL - Inbound/Outbound Rules

0

Is there a way in which I can Export the Inbound Rules for a network ACL?? Currently everytime a new server is created on AWS, and we setup the rules we have to manually key in the inbound rules each time? sometimes they have up to 18 entries on them. Is there a way so export and import these on the console???

1 回答
1

You can from within the console use CloudShell to get a CLI for your account. From this CLI you can use the describe network ACLs to get the current, https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-network-acls.html and then use the create-network ACL with the previously exported json to create the ACL programmatically. https://docs.aws.amazon.com/cli/latest/reference/ec2/create-network-acl.html

In all reality the console should be a last resort for implementing things. Instead I would leverage the CLI or CloudFormation for repeatable infrastructure tasks.

Here's the example for ACLs in CloudFormation: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkacl.html

profile pictureAWS
专家
Rob_H
已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则