mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-07-18 04:19:43 +00:00
13 lines
360 B
HCL
13 lines
360 B
HCL
resource "openstack_networking_secgroup_v2" "full_access" {
|
|
name = "${var.prefix} - full access"
|
|
}
|
|
|
|
resource "openstack_networking_secgroup_rule_v2" "full_access" {
|
|
direction = "ingress"
|
|
ethertype = "IPv4"
|
|
protocol = ""
|
|
remote_ip_prefix = "0.0.0.0/0"
|
|
security_group_id = openstack_networking_secgroup_v2.full_access.id
|
|
}
|
|
|