Merge pull request #1692 from trumant/openstack_security_group_docs_clarification

Clarify that the OpenStack security group resource can have many rules
This commit is contained in:
Paul Hinze 2015-04-28 08:51:41 -05:00
commit 40262b0284
1 changed files with 8 additions and 1 deletions

View File

@ -22,6 +22,12 @@ resource "openstack_compute_secgroup_v2" "secgroup_1" {
ip_protocol = "tcp"
cidr = "0.0.0.0/0"
}
rule {
from_port = 80
to_port = 80
ip_protocol = "tcp"
cidr = "0.0.0.0/0"
}
}
```
@ -42,7 +48,8 @@ The following arguments are supported:
* `rule` - (Optional) A rule describing how the security group operates. The
rule object structure is documented below. Changing this updates the
security group rules.
security group rules. As shown in the example above, multiple rule blocks
may be used.
The `rule` block supports: