Skip to content

Commit 6fc2e89

Browse files
authored
docs: update gcp region id examples (#110)
Co-authored-by: Miguel Angel Baztán <miguel.baztan@sysdig.com>
1 parent a39313e commit 6fc2e89

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

examples/organization/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,18 +60,18 @@ provider "sysdig" {
6060
6161
provider "google" {
6262
project = "<PROJECT_ID>"
63-
region = "<REGION_ID>; ex. us-central-1"
63+
region = "<REGION_ID>; ex. us-central1"
6464
}
6565
6666
# This two "multiproject" providers are required for benchmark trust-identity activation on the organizational level
6767
provider "google" {
6868
alias = "multiproject"
69-
region = "<REGION_ID>; ex. us-central-1"
69+
region = "<REGION_ID>; ex. us-central1"
7070
}
7171
7272
provider "google-beta" {
7373
alias = "multiproject"
74-
region = "<REGION_ID>; ex. us-central-1"
74+
region = "<REGION_ID>; ex. us-central1"
7575
}
7676
7777

examples/single-project-k8s/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ provider "sysdig" {
4444
4545
provider "google" {
4646
project = "<PROJECT_ID>"
47-
region = "<REGION_ID>; ex. us-central-1"
47+
region = "<REGION_ID>; ex. us-central1"
4848
}
4949
5050
provider "google-beta" {
5151
project = "<PROJECT_ID>"
52-
region = "<REGION_ID>; ex. us-central-1"
52+
region = "<REGION_ID>; ex. us-central1"
5353
}
5454
5555
provider "helm" {

examples/single-project/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ provider "sysdig" {
5555
5656
provider "google" {
5757
project = "<PROJECT_ID>"
58-
region = "<REGION_ID>; ex. us-central-1"
58+
region = "<REGION_ID>; ex. us-central1"
5959
}
6060
6161
provider "google-beta" {
6262
project = "<PROJECT_ID>"
63-
region = "<REGION_ID>; ex. us-central-1"
63+
region = "<REGION_ID>; ex. us-central1"
6464
}
6565
6666
module "secure-for-cloud_example_single-project" {

examples/trigger-events/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ For quick testing, use this snippet on your terraform files
1515
```terraform
1616
provider "google" {
1717
project = "<PROJECT_ID>"
18-
region = "<REGION_ID>; ex. us-central-1"
18+
region = "<REGION_ID>; ex. us-central1"
1919
}
2020
2121
module "secure-for-cloud_trigger_events" {

modules/services/cloud-connector/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A **Cloud Run** deployment that will detect events in your infrastructure.
77
```hcl
88
provider "google" {
99
project = "<PROJECT_ID>"
10-
region = "<REGION_ID>; ex. us-central-1"
10+
region = "<REGION_ID>; ex. us-central1"
1111
}
1212
1313
module "cloud_connector_gcp" {

0 commit comments

Comments
 (0)