Commit cc5caa0 1 parent e432ccd commit cc5caa0 Copy full SHA for cc5caa0
File tree 3 files changed +8
-0
lines changed
3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ This example illustrates how to create a project with a tag binding.
8
8
| Name | Description | Type | Default | Required |
9
9
| ------| -------------| ------| ---------| :--------:|
10
10
| 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 |
11
12
| organization\_ id | The organization id for the associated services | ` string ` | ` "684124036889" ` | no |
12
13
| tag\_ value | value | ` string ` | n/a | yes |
13
14
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ module "project-factory" {
21
21
random_project_id = true
22
22
name = " simple-tag-project"
23
23
org_id = var. organization_id
24
+ folder_id = var. folder_id
24
25
billing_account = var. billing_account
25
26
default_service_account = " deprivilege"
26
27
tag_binding_values = [var . tag_value ]
Original file line number Diff line number Diff line change @@ -19,6 +19,12 @@ variable "organization_id" {
19
19
default = " 684124036889"
20
20
}
21
21
22
+ variable "folder_id" {
23
+ description = " The ID of a folder to host this project."
24
+ type = string
25
+ default = " "
26
+ }
27
+
22
28
variable "billing_account" {
23
29
description = " The ID of the billing account to associate this project with"
24
30
}
You can’t perform that action at this time.
0 commit comments