Skip to content

Commit 81fb13c

Browse files
authored
Switch to more inclusive language (#98)
1 parent 032f422 commit 81fb13c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

examples/aws-kubernetes/clusters/my-kubernetes-cluster.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ terraform:
2020
account_id: 11111111111 # enter your AWS account id here. This is used for the cluster-autoscaler helm chart.
2121
short_region: va6
2222
availability_zones: '["us-east-1a", "us-east-1b", "us-east-1c", "us-east-1d"]'
23-
whitelist_my_ip: "192.168.0.1/32" # enter your public ip (eg. by using http://ipv4.icanhazip.com)
23+
allow_my_ip: "192.168.0.1/32" # enter your public ip (eg. by using http://ipv4.icanhazip.com)
2424
tags:
2525
Cluster: mykubernetescluster
2626
worker_nodes:

examples/aws-kubernetes/compositions/generic/aws-eks/eks-cluster.tf.jinja2

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ resource "aws_security_group_rule" "aam-eks-cluster-ingress-node-https" {
6565
}
6666

6767
resource "aws_security_group_rule" "aam-eks-cluster-ingress-workstation-https" {
68-
cidr_blocks = ["${var.whitelist_cidrs}"]
68+
cidr_blocks = ["${var.allowed_cidrs}"]
6969
description = "Allow workstation to communicate with the cluster API Server"
7070
from_port = 443
7171
protocol = "tcp"

examples/aws-kubernetes/compositions/generic/common/common_variables.tf.jinja2

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ variable "short-region" {
2222
type = "string"
2323
}
2424

25-
variable "whitelist_cidrs" {
25+
variable "allowed_cidrs" {
2626
default = [
27-
"{{ terraform.kubernetes.aws.whitelist_my_ip }}"
27+
"{{ terraform.kubernetes.aws.allow_my_ip }}"
2828
]
2929
type = "list"
3030
}

examples/aws-kubernetes/compositions/generic/helm/dashboard.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ resource "kubernetes_service" "dashboard" {
2020
selector {
2121
app = "kubernetes-dashboard"
2222
}
23-
load_balancer_source_ranges = ["${var.whitelist_cidrs}"]
23+
load_balancer_source_ranges = ["${var.allowed_cidrs}"]
2424
port {
2525
port = 443
2626
target_port = 8443

0 commit comments

Comments
 (0)