Skip to content

Commit

Permalink
chore: add compute API to default (#709)
Browse files Browse the repository at this point in the history
  • Loading branch information
apeabody authored Apr 19, 2022
1 parent 9190561 commit 9ad325b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/fabric_project/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)` | <pre>[<br> "compute.googleapis.com"<br>]</pre> | no |
| activate\_apis | Service APIs to enable. | `list(string)` | <pre>[<br> "serviceusage.googleapis.com",<br> "compute.googleapis.com"<br>]</pre> | 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 |
Expand Down
2 changes: 1 addition & 1 deletion examples/fabric_project/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit 9ad325b

Please sign in to comment.