diff --git a/website/source/docs/providers/scaleway/index.html.markdown b/website/source/docs/providers/scaleway/index.html.markdown index cd1d77ab3..c95bdfa54 100644 --- a/website/source/docs/providers/scaleway/index.html.markdown +++ b/website/source/docs/providers/scaleway/index.html.markdown @@ -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 } ``` diff --git a/website/source/docs/providers/scaleway/r/security_group_rule.html.markdown b/website/source/docs/providers/scaleway/r/security_group_rule.html.markdown index de5f695fb..e79237808 100644 --- a/website/source/docs/providers/scaleway/r/security_group_rule.html.markdown +++ b/website/source/docs/providers/scaleway/r/security_group_rule.html.markdown @@ -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