Skip to content

Commit 021c338

Browse files
Modify docs, examples and tests to reference prod-us-east-0 instead of us. (#2032)
1 parent fd62e63 commit 021c338

File tree

15 files changed

+35
-35
lines changed

15 files changed

+35
-35
lines changed

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ resource "grafana_cloud_stack" "my_stack" {
5858
5959
name = "myteststack"
6060
slug = "myteststack"
61-
region_slug = "us"
61+
region_slug = "prod-us-east-0"
6262
}
6363
6464
// Step 2: Create a service account and key for the stack
@@ -102,7 +102,7 @@ variable "cloud_access_policy_token" {
102102
}
103103
variable "stack_slug" {}
104104
variable "cloud_region" {
105-
default = "us"
105+
default = "prod-us-east-0"
106106
}
107107
108108
// Step 1: Create a stack

docs/resources/cloud_access_policy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ data "grafana_cloud_organization" "current" {
2727
}
2828
2929
resource "grafana_cloud_access_policy" "test" {
30-
region = "us"
30+
region = "prod-us-east-0"
3131
name = "my-policy"
3232
display_name = "My Policy"
3333
@@ -44,7 +44,7 @@ resource "grafana_cloud_access_policy" "test" {
4444
}
4545
4646
resource "grafana_cloud_access_policy_token" "test" {
47-
region = "us"
47+
region = "prod-us-east-0"
4848
access_policy_id = grafana_cloud_access_policy.test.policy_id
4949
name = "my-policy-token"
5050
display_name = "My Policy Token"

docs/resources/cloud_access_policy_token.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ data "grafana_cloud_organization" "current" {
2727
}
2828
2929
resource "grafana_cloud_access_policy" "test" {
30-
region = "us"
30+
region = "prod-us-east-0"
3131
name = "my-policy"
3232
display_name = "My Policy"
3333
@@ -44,7 +44,7 @@ resource "grafana_cloud_access_policy" "test" {
4444
}
4545
4646
resource "grafana_cloud_access_policy_token" "test" {
47-
region = "us"
47+
region = "prod-us-east-0"
4848
access_policy_id = grafana_cloud_access_policy.test.policy_id
4949
name = "my-policy-token"
5050
display_name = "My Policy Token"

docs/resources/cloud_private_data_source_connect_network.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ data "grafana_cloud_stack" "current" {
2727
}
2828
2929
resource "grafana_cloud_private_data_source_connect_network" "test" {
30-
region = "us"
30+
region = "prod-us-east-0"
3131
name = "my-pdc"
3232
display_name = "My PDC"
3333
stack_identifier = data.grafana_cloud_stack.current.id

docs/resources/cloud_private_data_source_connect_network_token.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ data "grafana_cloud_stack" "current" {
2727
}
2828
2929
resource "grafana_cloud_private_data_source_connect_network" "test" {
30-
region = "us"
30+
region = "prod-us-east-0"
3131
name = "my-pdc"
3232
display_name = "My PDC"
3333
stack_identifier = data.grafana_cloud_stack.current.id

docs/resources/synthetic_monitoring_installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ variable "cloud_access_policy_token" {
3535
}
3636
variable "stack_slug" {}
3737
variable "cloud_region" {
38-
default = "us"
38+
default = "prod-us-east-0"
3939
}
4040
4141
// Step 1: Create a stack

examples/provider/provider-cloud.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ resource "grafana_cloud_stack" "my_stack" {
99

1010
name = "myteststack"
1111
slug = "myteststack"
12-
region_slug = "us"
12+
region_slug = "prod-us-east-0"
1313
}
1414

1515
// Step 2: Create a service account and key for the stack

examples/resources/grafana_cloud_access_policy/resource.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ data "grafana_cloud_organization" "current" {
33
}
44

55
resource "grafana_cloud_access_policy" "test" {
6-
region = "us"
6+
region = "prod-us-east-0"
77
name = "my-policy"
88
display_name = "My Policy"
99

@@ -20,7 +20,7 @@ resource "grafana_cloud_access_policy" "test" {
2020
}
2121

2222
resource "grafana_cloud_access_policy_token" "test" {
23-
region = "us"
23+
region = "prod-us-east-0"
2424
access_policy_id = grafana_cloud_access_policy.test.policy_id
2525
name = "my-policy-token"
2626
display_name = "My Policy Token"

examples/resources/grafana_cloud_access_policy_token/resource.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ data "grafana_cloud_organization" "current" {
33
}
44

55
resource "grafana_cloud_access_policy" "test" {
6-
region = "us"
6+
region = "prod-us-east-0"
77
name = "my-policy"
88
display_name = "My Policy"
99

@@ -20,7 +20,7 @@ resource "grafana_cloud_access_policy" "test" {
2020
}
2121

2222
resource "grafana_cloud_access_policy_token" "test" {
23-
region = "us"
23+
region = "prod-us-east-0"
2424
access_policy_id = grafana_cloud_access_policy.test.policy_id
2525
name = "my-policy-token"
2626
display_name = "My Policy Token"

examples/resources/grafana_cloud_private_data_source_connect_network/resource.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ data "grafana_cloud_stack" "current" {
33
}
44

55
resource "grafana_cloud_private_data_source_connect_network" "test" {
6-
region = "us"
6+
region = "prod-us-east-0"
77
name = "my-pdc"
88
display_name = "My PDC"
99
stack_identifier = data.grafana_cloud_stack.current.id

0 commit comments

Comments
 (0)