Skip to content

Commit

Permalink
Merge pull request #1164 from tomassedovic/openstack-lb-port-443
Browse files Browse the repository at this point in the history
openstack: open port 443 on the load balancer
  • Loading branch information
openshift-merge-robot authored Jan 31, 2019
2 parents 18e5d9b + 9815dd2 commit 4cea5ca
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions data/data/openstack/topology/sg-lb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@ resource "openstack_networking_secgroup_rule_v2" "api_https" {
security_group_id = "${openstack_networking_secgroup_v2.api.id}"
}

resource "openstack_networking_secgroup_rule_v2" "console_https" {
direction = "ingress"
ethertype = "IPv4"
protocol = "tcp"
port_range_min = 443
port_range_max = 443
remote_ip_prefix = "0.0.0.0/0"
security_group_id = "${openstack_networking_secgroup_v2.api.id}"
}

resource "openstack_networking_secgroup_rule_v2" "api_ingress_dns_udp" {
direction = "ingress"
ethertype = "IPv4"
Expand Down

0 comments on commit 4cea5ca

Please sign in to comment.