mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
Correct the data source configuration example to be valid
This commit is contained in:
parent
a2d964769f
commit
d6296fbb7d
@ -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
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user