Network Security Groups
Network Security Groups (NSGs) are used to permit network access between resources creation by the module, namely:
- Bastion
- Operator
- Control plane (
cp
) - Workers
- Pods
- Internal load balancers (
int_lb
) - Public load balancers (
pub_lb
)
Create new NSGs
nsgs = {
bastion = {}
operator = {}
cp = {}
int_lb = {}
pub_lb = {}
workers = {}
pods = {}
}
Use existing NSGs
nsgs = {
bastion = { id = "ocid1.networksecuritygroup..." }
operator = { id = "ocid1.networksecuritygroup..." }
cp = { id = "ocid1.networksecuritygroup..." }
int_lb = { id = "ocid1.networksecuritygroup..." }
pub_lb = { id = "ocid1.networksecuritygroup..." }
workers = { id = "ocid1.networksecuritygroup..." }
pods = { id = "ocid1.networksecuritygroup..." }
}