-
Notifications
You must be signed in to change notification settings - Fork 53
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
feat(Network ACL): Synchronized Network ACL resources, unit test and document. #1095
feat(Network ACL): Synchronized Network ACL resources, unit test and document. #1095
Conversation
docs/resources/network_acl.md
Outdated
@@ -45,6 +45,9 @@ resource "flexibleengine_network_acl" "fw_acl" { | |||
|
|||
The following arguments are supported: | |||
|
|||
* `region` - (Optional, String, ForceNew) Specifies the region where the private NAT gateway is located. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There should be ... NAT acl ...
rather NAT gateway
, you can reference from Huaweicloud/network_acl.md
docs/resources/network_acl_rule.md
Outdated
@@ -26,6 +26,9 @@ resource "flexibleengine_network_acl_rule" "rule_1" { | |||
|
|||
The following arguments are supported: | |||
|
|||
* `region` - (Optional, String, ForceNew) Specifies the region where the private NAT gateway is located. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ditto, reference from Huaweicloud/network_acl_rule.md
resource "flexibleengine_network_acl_rule" "rule_1" { | ||
name = "%s" | ||
protocol = "udp" | ||
action = "deny" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All of scripts in this Unit Test should be formated.
resource "flexibleengine_vpc_subnet_v1" "subnet_1" { | ||
name = "%s_subnet_1" | ||
cidr = "192.168.0.0/24" | ||
gateway_ip = "192.168.0.1" | ||
vpc_id = flexibleengine_vpc_v1.vpc_1.id | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all of scripts in this Unit Test should be formated.
3997e0d
to
ff22e11
Compare
What this PR does / why we need it:
Which issue this PR fixes:
(optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close that issue when PR gets merged)fixes #xxx
Special notes for your reviewer:
Release note:
PR Checklist
Acceptance Steps Performed