mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
947 B
YAML
34 lines
947 B
YAML
7 years ago
|
eks_cluster_name: "{{ resource_prefix }}"
|
||
|
eks_subnets:
|
||
|
- zone: a
|
||
|
cidr: 10.0.1.0/24
|
||
|
- zone: b
|
||
|
cidr: 10.0.2.0/24
|
||
|
- zone: c
|
||
|
cidr: 10.0.3.0/24
|
||
|
|
||
|
eks_security_groups:
|
||
|
- name: "{{ eks_cluster_name }}-control-plane-sg"
|
||
|
description: "EKS Control Plane Security Group"
|
||
|
rules:
|
||
|
- group_name: "{{ eks_cluster_name }}-workers-sg"
|
||
|
group_desc: "EKS Worker Security Group"
|
||
|
ports: 443
|
||
|
proto: tcp
|
||
|
rules_egress:
|
||
|
- group_name: "{{ eks_cluster_name }}-workers-sg"
|
||
|
group_desc: "EKS Worker Security Group"
|
||
|
from_port: 1025
|
||
|
to_port: 65535
|
||
|
proto: tcp
|
||
6 years ago
|
- name: "{{ eks_cluster_name }}-workers-sg"
|
||
7 years ago
|
description: "EKS Worker Security Group"
|
||
|
rules:
|
||
|
- group_name: "{{ eks_cluster_name }}-workers-sg"
|
||
|
proto: tcp
|
||
|
from_port: 1
|
||
|
to_port: 65535
|
||
|
- group_name: "{{ eks_cluster_name }}-control-plane-sg"
|
||
|
ports: 10250
|
||
|
proto: tcp
|