Merge pull request #9305 from hashicorp/azr-docs-fix-guide

HCL2: Update guide example to fix broken example
pull/8437/head^2
Megan Marsh 6 years ago committed by GitHub
commit d3859cf592
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -163,7 +163,7 @@ The above is equivalent to the following native syntax configuration:
```hcl
source "amazon-ebs" "example" {
tags {
tags = {
key = "value"
}
}

@ -64,7 +64,7 @@ A _block_ is a container for other content:
source "amazon-ebs" "example" {
ami_name = "abc123"
tags {
tags = {
# ...
}
}

@ -63,7 +63,7 @@ source "amazon-ebs" "example" {
instance_type = "t2.micro"
source_ami_filter {
filters {
filters = {
virtualization-type = "hvm"
name = "ubuntu/images/*ubuntu-xenial-16.04-amd64-server-*"
root-device-type = "ebs"

Loading…
Cancel
Save