provider/scaleway: Document ports in security group rules properly

This commit is contained in:
Louis-Paul Dareau 2016-09-02 12:10:52 -04:00
parent 4e7edb5431
commit ab36c4299f
No known key found for this signature in database
GPG Key ID: DB9C840533295442
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.
Field `action`, `direction`, `ip_range`, `protocol`, `port` are editable.
## Attributes Reference