From 7e3ccf424f9bf868caa372336efbf4bffebbfa26 Mon Sep 17 00:00:00 2001 From: Stephen Price Date: Mon, 12 Sep 2016 13:28:11 -0700 Subject: [PATCH] remove leading dot --- docs/01-infrastructure-aws.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/01-infrastructure-aws.md b/docs/01-infrastructure-aws.md index c98837e..350809a 100644 --- a/docs/01-infrastructure-aws.md +++ b/docs/01-infrastructure-aws.md @@ -20,7 +20,7 @@ To make our Kubernetes control plane remotely accessible, a public IP address wi VPC_ID=$(aws ec2 create-vpc \ --cidr-block 10.240.0.0/16 \ --output text \ - --query '.Vpc.VpcId') + --query 'Vpc.VpcId') ``` ```