diff --git a/docs/01-infrastructure-aws.md b/docs/01-infrastructure-aws.md index 58f2260..92b0638 100644 --- a/docs/01-infrastructure-aws.md +++ b/docs/01-infrastructure-aws.md @@ -164,7 +164,7 @@ aws ec2 authorize-security-group-ingress \ aws ec2 authorize-security-group-ingress \ --group-id ${SECURITY_GROUP_ID} \ --protocol tcp \ - --port 443 \ + --port 6443 \ --cidr 0.0.0.0/0 ``` @@ -180,12 +180,6 @@ aws elb create-load-balancer \ --security-groups ${SECURITY_GROUP_ID} ``` -``` -KUBERNETES_PUBLIC_IP_ADDRESS=$(aws elb describe-load-balancers \ - --load-balancer-name kubernetes | \ - jq -r '.LoadBalancerDescriptions[].DNSName') -``` - ## Provision Virtual Machines All the VMs in this lab will be provisioned using Ubuntu 16.04 mainly because it runs a newish Linux Kernel that has good support for Docker.