Merge pull request #8960 from MiLk/docs/data-source-configuration

Correct the data source configuration example to be valid
This commit is contained in:
Paul Stack 2016-09-21 09:44:02 +01:00 committed by GitHub
commit 9b23d433c1
1 changed files with 8 additions and 4 deletions

View File

@ -39,11 +39,15 @@ A data source configuration looks like the following:
``` ```
// Find the latest available AMI that is tagged with Component = web // Find the latest available AMI that is tagged with Component = web
data "aws_ami" "web" { data "aws_ami" "web" {
state = "available" filter {
tags = { name = "state"
Component = "web" values = ["available"]
} }
select = "latest" filter {
name = "tag:Component"
values = ["web"]
}
most_recent = true
} }
``` ```