Skip to content

Commit

Permalink
Merge pull request #87 from peteawood/master
Browse files Browse the repository at this point in the history
Fixing #86 and #90 - Repo name typo, variable name typo
  • Loading branch information
eamonnfaherty authored Dec 17, 2021
2 parents 502863c + af8d8e7 commit eb0eb4a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Workspaces:
Source:
Provider: "CodeCommit"
Configuration:
RepositoryName: "subnet"
RepositoryName: "subnet-terraform"
BranchName: "main"
{{< / highlight >}}
</figure>
Expand Down Expand Up @@ -98,7 +98,7 @@ When you configured your product version, you specified the following version:
Source:
Provider: "CodeCommit"
Configuration:
RepositoryName: "subnet"
RepositoryName: "subnet-terraform"
BranchName: "main"
{{< / highlight >}}
</figure>
Expand Down Expand Up @@ -133,7 +133,7 @@ workspace.
<figure>
{{< highlight js >}}

variable "VPCId" {
variable "VPCID" {
type = string
}

Expand All @@ -142,7 +142,7 @@ variable "SubnetCIDR" {
}

resource "aws_subnet" "main" {
vpc_id = var.VPCId
vpc_id = var.VPCID
cidr_block = var.SubnetCIDR
}
{{< / highlight >}}
Expand Down

0 comments on commit eb0eb4a

Please sign in to comment.