Merge pull request #8629 from ProcessOut/scaleway-security_group_rule-port-documentation

provider/scaleway: Document ports in security group rules properly
This commit is contained in:
Mitchell Hashimoto 2016-09-02 10:06:45 -07:00 committed by GitHub
commit f4a7740beb
2 changed files with 5 additions and 6 deletions

View File

@ -60,7 +60,7 @@ resource "scaleway_security_group_rule" "http_accept" {
direction = "inbound"
ip_range = "0.0.0.0/0"
protocol = "TCP"
dest_port_from = 80
port = 80
}
resource "scaleway_security_group_rule" "https_accept" {
@ -70,7 +70,7 @@ resource "scaleway_security_group_rule" "https_accept" {
direction = "inbound"
ip_range = "0.0.0.0/0"
protocol = "TCP"
dest_port_from = 443
port = 443
}
```

View File

@ -26,7 +26,7 @@ resource "scaleway_security_group_rule" "smtp_drop_1" {
direction = "inbound"
ip_range = "0.0.0.0/0"
protocol = "TCP"
dest_port_from = 25
port = 25
}
```
@ -39,10 +39,9 @@ The following arguments are supported:
* `direction` - (Required) direction of rule (`inbound`, `outbound`)
* `ip_range` - (Required) ip_range of rule
* `protocol` - (Required) protocol of rule (`ICMP`, `TCP`, `UDP`)
* `dest_port_from` - (Optional) port range from
* `dest_port_to` - (Optional) port from to
* `port` - (Optional) port of the rule
Field `action`, `direction`, `ip_range`, `protocol`, `dest_port_from`, `dest_port_to` are editable.
Fields `action`, `direction`, `ip_range`, `protocol`, `port` are editable.
## Attributes Reference