You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 4-projects/business_unit_2/shared/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,10 +8,10 @@
8
8
| billing\_account | The ID of the billing account to associated this project with |`string`| n/a | yes |
9
9
| budget\_amount | The amount to use as the budget |`number`|`1000`| no |
10
10
| default\_region | Default region to create resources where applicable. |`string`|`"us-central1"`| no |
11
-
| folder\_prefix | Name prefix to use for folders created. |`string`|`"fldr"`| no |
11
+
| folder\_prefix | Name prefix to use for folders created. Should be the same in all steps. |`string`|`"fldr"`| no |
12
12
| org\_id | The organization id for the associated services |`string`| n/a | yes |
13
-
| parent\_folder | Optional - if using a folder for testing. |`string`|`""`| no |
14
-
| project\_prefix | Name prefix to use for projects created. |`string`|`"prj"`| no |
13
+
| parent\_folder | Optional - for an organization with existing projects or for development/validation. It will place all the example foundation resources under the provided folder instead of the root organization. The value is the numeric folder ID. The folder must already exist. Must be the same value used in previous step. |`string`|`""`| no |
14
+
| project\_prefix | Name prefix to use for projects created. Should be the same in all steps. Max size is 3 characters. |`string`|`"prj"`| no |
15
15
| terraform\_service\_account | Service account email of the account to impersonate to run Terraform |`string`| n/a | yes |
Copy file name to clipboardExpand all lines: 4-projects/business_unit_2/shared/variables.tf
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ variable "billing_account" {
36
36
}
37
37
38
38
variable"parent_folder" {
39
-
description="Optional - if using a folder for testing."
39
+
description="Optional - for an organization with existing projects or for development/validation. It will place all the example foundation resources under the provided folder instead of the root organization. The value is the numeric folder ID. The folder must already exist. Must be the same value used in previous step."
40
40
type=string
41
41
default=""
42
42
}
@@ -60,13 +60,13 @@ variable "budget_amount" {
60
60
}
61
61
62
62
variable"folder_prefix" {
63
-
description="Name prefix to use for folders created."
63
+
description="Name prefix to use for folders created. Should be the same in all steps."
64
64
type=string
65
65
default="fldr"
66
66
}
67
67
68
68
variable"project_prefix" {
69
-
description="Name prefix to use for projects created."
69
+
description="Name prefix to use for projects created. Should be the same in all steps. Max size is 3 characters."
0 commit comments