diff --git a/examples/fabric_project/README.md b/examples/fabric_project/README.md index 020e085e..01108795 100644 --- a/examples/fabric_project/README.md +++ b/examples/fabric_project/README.md @@ -7,7 +7,7 @@ This example illustrates how to create a simple project using the `fabric-projec | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| -| activate\_apis | Service APIs to enable. | `list(string)` |
[
"compute.googleapis.com"
]
| no | +| activate\_apis | Service APIs to enable. | `list(string)` |
[
"serviceusage.googleapis.com",
"compute.googleapis.com"
]
| no | | billing\_account | Billing account id. | `string` | n/a | yes | | name | Project name, joined with prefix. | `string` | `"fabric-project"` | no | | owners | Optional list of IAM-format members to set as project owners. | `list(string)` | `[]` | no | diff --git a/examples/fabric_project/variables.tf b/examples/fabric_project/variables.tf index 311cfac3..a8c9d351 100644 --- a/examples/fabric_project/variables.tf +++ b/examples/fabric_project/variables.tf @@ -17,7 +17,7 @@ variable "activate_apis" { description = "Service APIs to enable." type = list(string) - default = ["compute.googleapis.com"] + default = ["serviceusage.googleapis.com", "compute.googleapis.com"] } variable "billing_account" {