Skip to content

Commit

Permalink
docs/resource/aws_elasticsearch_domain: Fix tags (block -> arg) (#11200)
Browse files Browse the repository at this point in the history
  • Loading branch information
elrob authored and bflad committed Dec 9, 2019
1 parent 1835280 commit 2cd7bee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions website/docs/r/elasticsearch_domain.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -120,15 +120,15 @@ variable "domain" {
}
data "aws_vpc" "selected" {
tags {
tags = {
Name = "${var.vpc}"
}
}
data "aws_subnet_ids" "selected" {
vpc_id = "${data.aws_vpc.selected.id}"
tags {
tags = {
Tier = "private"
}
}
Expand Down Expand Up @@ -196,7 +196,7 @@ CONFIG
automated_snapshot_start_hour = 23
}
tags {
tags = {
Domain = "TestDomain"
}
Expand Down

0 comments on commit 2cd7bee

Please sign in to comment.