Skip to content

Commit

Permalink
Add example to markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
slevenick committed Jun 18, 2021
1 parent 76a083a commit 195f750
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,21 @@ Definition of custom Cloud Build WorkerPools for running jobs with custom networ
~> **Warning:** This resource is in beta, and should be used with the terraform-provider-google-beta provider.
See [Provider Versions](https://terraform.io/docs/providers/google/guides/provider_versions.html) for more details on beta resources.


## Example Usage

```hcl
resource "google_cloudbuild_worker_pool" "pool" {
name = "my-pool"
location = "europe-west1"
worker_config {
disk_size_gb = 100
machine_type = "e2-standard-4"
no_external_ip = false
}
}
```

## Argument Reference

The following arguments are supported:
Expand Down

0 comments on commit 195f750

Please sign in to comment.