Skip to content

Commit cc5caa0

Browse files
committed
run tests in folder
1 parent e432ccd commit cc5caa0

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

examples/tags_project/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ This example illustrates how to create a project with a tag binding.
88
| Name | Description | Type | Default | Required |
99
|------|-------------|------|---------|:--------:|
1010
| billing\_account | The ID of the billing account to associate this project with | `any` | n/a | yes |
11+
| folder\_id | The ID of a folder to host this project. | `string` | `""` | no |
1112
| organization\_id | The organization id for the associated services | `string` | `"684124036889"` | no |
1213
| tag\_value | value | `string` | n/a | yes |
1314

examples/tags_project/main.tf

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ module "project-factory" {
2121
random_project_id = true
2222
name = "simple-tag-project"
2323
org_id = var.organization_id
24+
folder_id = var.folder_id
2425
billing_account = var.billing_account
2526
default_service_account = "deprivilege"
2627
tag_binding_values = [var.tag_value]

examples/tags_project/variables.tf

+6
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ variable "organization_id" {
1919
default = "684124036889"
2020
}
2121

22+
variable "folder_id" {
23+
description = "The ID of a folder to host this project."
24+
type = string
25+
default = ""
26+
}
27+
2228
variable "billing_account" {
2329
description = "The ID of the billing account to associate this project with"
2430
}

0 commit comments

Comments
 (0)