Test documentation examples in the examples/ folder

This commit is contained in:
Julio Castillo
2022-09-06 17:46:09 +02:00
parent 01da987e9d
commit a866182161
70 changed files with 303 additions and 278 deletions

View File

@@ -10,7 +10,7 @@ A good usage pattern would be when we want all the projects under a specific fol
```hcl
module "my-org" {
source = "./modules/projects-data-source"
source = "./fabric/modules/projects-data-source"
parent = "organizations/123456789"
}
@@ -29,7 +29,7 @@ output "folders" {
```hcl
module "my-dev" {
source = "./modules/projects-data-source"
source = "./fabric/modules/projects-data-source"
parent = "folders/123456789"
filter = "labels.env:DEV lifecycleState:ACTIVE"
}