Skip to content
Snippets Groups Projects
Commit 25a9d9e8 authored by Rob Kooper's avatar Rob Kooper
Browse files

removed nodeport in securitygroup

parent edef3cf8
No related branches found
Tags v2.2.0
No related merge requests found
......@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
## 2.2.0 - 2023-08-07
### Removed
- removed nodeports in securitygroup
## 2.1.1 - 2023-08-03
### Changed
......
......@@ -86,19 +86,6 @@ resource "openstack_networking_secgroup_rule_v2" "ingress_kubeapi" {
depends_on = [openstack_networking_secgroup_v2.cluster_security_group]
}
# Ingress IPv4 TCP 30000 - 32767 0.0.0.0/0 - nodeport
# DEPRECATED
resource "openstack_networking_secgroup_rule_v2" "ingress_nodeport" {
description = "nodeport"
direction = "ingress"
ethertype = "IPv4"
protocol = "tcp"
port_range_min = 30000
port_range_max = 32767
security_group_id = openstack_networking_secgroup_v2.cluster_security_group.id
depends_on = [openstack_networking_secgroup_v2.cluster_security_group]
}
resource "openstack_networking_secgroup_rule_v2" "same_security_group_ingress_tcp" {
direction = "ingress"
ethertype = "IPv4"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment