Skip to content

Commit

Permalink
Merge pull request hashicorp#16737 from kowshikRoy/chore-docs
Browse files Browse the repository at this point in the history
chore(docs): Remove quotes from tags
  • Loading branch information
breathingdust authored Feb 11, 2021
2 parents 7057a29 + a998c33 commit 0eb9fdd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions examples/cognito-user-pool/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ resource "aws_cognito_user_pool" "pool" {
}

tags = {
"Name" = "FooBar"
"Project" = "Terraform"
Name = "FooBar"
Project = "Terraform"
}
}
2 changes: 1 addition & 1 deletion website/docs/r/neptune_event_subscription.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ resource "aws_neptune_event_subscription" "default" {
]
tags = {
"env" = "test"
env = "test"
}
}
```
Expand Down
6 changes: 3 additions & 3 deletions website/docs/r/network_interface_sg_attachment.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ resource "aws_instance" "instance" {
ami = data.aws_ami.ami.id
tags = {
"type" = "terraform-test-instance"
type = "terraform-test-instance"
}
}
resource "aws_security_group" "sg" {
tags = {
"type" = "terraform-test-security-group"
type = "terraform-test-security-group"
}
}
Expand All @@ -74,7 +74,7 @@ data "aws_instance" "instance" {
resource "aws_security_group" "sg" {
tags = {
"type" = "terraform-test-security-group"
type = "terraform-test-security-group"
}
}
Expand Down
4 changes: 2 additions & 2 deletions website/docs/r/s3_bucket.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ resource "aws_s3_bucket" "bucket" {
prefix = "log/"
tags = {
"rule" = "log"
"autoclean" = "true"
rule = "log"
autoclean = "true"
}
transition {
Expand Down
4 changes: 2 additions & 2 deletions website/docs/r/wafv2_rule_group.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -275,8 +275,8 @@ resource "aws_wafv2_rule_group" "example" {
}
tags = {
"Name" = "example-and-statement"
"Code" = "123456"
Name = "example-and-statement"
Code = "123456"
}
}
```
Expand Down

0 comments on commit 0eb9fdd

Please sign in to comment.