Skip to content

Commit 3139738

Browse files
committed
fix var type, actually update readme
1 parent 205ab7c commit 3139738

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,12 @@ No modules.
4444

4545
| Name | Description | Type | Default | Required |
4646
|------|-------------|------|---------|:--------:|
47-
| <a name="input_prefix"></a> [prefix](#input\_prefix) | ID prefix applied to all resources | `string` | `"stacklet"` | no |
47+
| <a name="input_billing_tables"></a> [billing\_tables](#input\_billing\_tables) | Billing export tables in <project\_id>.<dataset\_id>.<table\_id> format. | `list(string)` | n/a | yes |
4848
| <a name="input_project_billing_account_id"></a> [project\_billing\_account\_id](#input\_project\_billing\_account\_id) | Billing account responsible for any costs incurred | `string` | `null` | no |
4949
| <a name="input_project_folder_id"></a> [project\_folder\_id](#input\_project\_folder\_id) | Where to create the project (optional, exclusive of project\_org\_id) | `string` | `null` | no |
50+
| <a name="input_project_id"></a> [project\_id](#input\_project\_id) | ID of project to hold all resources | `string` | n/a | yes |
5051
| <a name="input_project_org_id"></a> [project\_org\_id](#input\_project\_org\_id) | Where to create the project (optional, exclusive of project\_folder\_id) | `string` | `null` | no |
51-
| <a name="input_source_tables"></a> [source\_tables](#input\_source\_tables) | Billing export tables in <project\_id>.<dataset\_id>.<table\_id> format. | `list(string)` | n/a | yes |
52+
| <a name="input_resource_labels"></a> [resource\_labels](#input\_resource\_labels) | Labels to apply to the project and applicable resources | `map` | `{}` | no |
5253
| <a name="input_stacklet_aws_account_id"></a> [stacklet\_aws\_account\_id](#input\_stacklet\_aws\_account\_id) | AWS account which will use WIF to query billing data (chosen by Stacklet) | `string` | n/a | yes |
5354
| <a name="input_stacklet_aws_role_name"></a> [stacklet\_aws\_role\_name](#input\_stacklet\_aws\_role\_name) | AWS IAM role which will use WIF to query billing data (chosen by Stacklet) | `string` | n/a | yes |
5455

vars.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
variable "resource_labels" {
2-
type = map
2+
type = map(string)
33
default = {}
44
description = "Labels to apply to the project and applicable resources"
55
}

0 commit comments

Comments
 (0)