open traffic between same security group

pull/73/head
Kelsey Hightower 2016-09-27 06:58:21 -07:00
parent 6cfc20e96e
commit 599f45e2b1
1 changed files with 7 additions and 0 deletions

View File

@ -170,6 +170,13 @@ aws ec2 authorize-security-group-ingress \
--cidr 0.0.0.0/0
```
```
aws ec2 authorize-security-group-ingress \
--group-id ${SECURITY_GROUP_ID} \
--protocol all \
--source-group ${SECURITY_GROUP_ID}
```
### Kubernetes Public Address
An ELB will be used to load balance traffic across the Kubernetes control plane.