mirror of
https://github.com/hashicorp/terraform.git
synced 2026-05-28 04:03:27 -04:00
Fix OpenStack documentation (#7844)
References to security_groups attribute on network objects should actually be security_group_ids.
This commit is contained in:
parent
a14d23bbbc
commit
a1c14f0ffc
2 changed files with 2 additions and 2 deletions
|
|
@ -40,7 +40,7 @@ resource "openstack_networking_port_v2" "port_1" {
|
|||
name = "port_1"
|
||||
network_id = "${openstack_networking_network_v2.network_1.id}"
|
||||
admin_state_up = "true"
|
||||
security_groups = ["${openstack_compute_secgroup_v2.secgroup_1.id}"]
|
||||
security_group_ids = ["${openstack_compute_secgroup_v2.secgroup_1.id}"]
|
||||
|
||||
fixed_ip {
|
||||
"subnet_id" = "008ba151-0b8c-4a67-98b5-0d2b87666062"
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ The following attributes are exported:
|
|||
* `mac_address` - See Argument Reference above.
|
||||
* `tenant_id` - See Argument Reference above.
|
||||
* `device_owner` - See Argument Reference above.
|
||||
* `security_groups` - See Argument Reference above.
|
||||
* `security_group_ids` - See Argument Reference above.
|
||||
* `device_id` - See Argument Reference above.
|
||||
* `fixed_ip/ip_address` - See Argument Reference above.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue