Skip to content

Commit eef4542

Browse files
removed double quotes (#3926) (#2441)
Signed-off-by: Modular Magician <[email protected]>
1 parent 7ffa212 commit eef4542

11 files changed

+22
-19
lines changed

.changelog/3926.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:none
2+
3+
```

google-beta/resource_compute_organization_security_policy_association_generated_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ func TestAccComputeOrganizationSecurityPolicyAssociation_organizationSecurityPol
4646
func testAccComputeOrganizationSecurityPolicyAssociation_organizationSecurityPolicyAssociationBasicExample(context map[string]interface{}) string {
4747
return Nprintf(`
4848
resource "google_compute_organization_security_policy" "policy" {
49-
provider = "google-beta"
49+
provider = google-beta
5050
5151
display_name = "tf-test%{random_suffix}"
5252
parent = "organizations/%{org_id}"
5353
}
5454
5555
resource "google_compute_organization_security_policy_rule" "policy" {
56-
provider = "google-beta"
56+
provider = google-beta
5757
5858
policy_id = google_compute_organization_security_policy.policy.id
5959
action = "allow"
@@ -76,7 +76,7 @@ resource "google_compute_organization_security_policy_rule" "policy" {
7676
}
7777
7878
resource "google_compute_organization_security_policy_association" "policy" {
79-
provider = "google-beta"
79+
provider = google-beta
8080
8181
name = "tf-test%{random_suffix}"
8282
attachment_id = google_compute_organization_security_policy.policy.parent

google-beta/resource_compute_organization_security_policy_generated_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ func TestAccComputeOrganizationSecurityPolicy_organizationSecurityPolicyBasicExa
4646
func testAccComputeOrganizationSecurityPolicy_organizationSecurityPolicyBasicExample(context map[string]interface{}) string {
4747
return Nprintf(`
4848
resource "google_compute_organization_security_policy" "policy" {
49-
provider = "google-beta"
49+
provider = google-beta
5050
5151
display_name = "tf-test%{random_suffix}"
5252
parent = "organizations/%{org_id}"

google-beta/resource_compute_organization_security_policy_rule_generated_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ func TestAccComputeOrganizationSecurityPolicyRule_organizationSecurityPolicyRule
4646
func testAccComputeOrganizationSecurityPolicyRule_organizationSecurityPolicyRuleBasicExample(context map[string]interface{}) string {
4747
return Nprintf(`
4848
resource "google_compute_organization_security_policy" "policy" {
49-
provider = "google-beta"
49+
provider = google-beta
5050
5151
display_name = "tf-test%{random_suffix}"
5252
parent = "organizations/%{org_id}"
5353
}
5454
5555
resource "google_compute_organization_security_policy_rule" "policy" {
56-
provider = "google-beta"
56+
provider = google-beta
5757
5858
policy_id = google_compute_organization_security_policy.policy.id
5959
action = "allow"

google-beta/resource_data_fusion_instance_generated_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ func TestAccDataFusionInstance_dataFusionInstanceBasicExample(t *testing.T) {
4545
func testAccDataFusionInstance_dataFusionInstanceBasicExample(context map[string]interface{}) string {
4646
return Nprintf(`
4747
resource "google_data_fusion_instance" "basic_instance" {
48-
provider = "google-beta"
48+
provider = google-beta
4949
name = "tf-test-my-instance%{random_suffix}"
5050
region = "us-central1"
5151
type = "BASIC"
@@ -75,7 +75,7 @@ func TestAccDataFusionInstance_dataFusionInstanceFullExample(t *testing.T) {
7575
func testAccDataFusionInstance_dataFusionInstanceFullExample(context map[string]interface{}) string {
7676
return Nprintf(`
7777
resource "google_data_fusion_instance" "extended_instance" {
78-
provider = "google-beta"
78+
provider = google-beta
7979
name = "tf-test-my-instance%{random_suffix}"
8080
description = "My Data Fusion instance"
8181
region = "us-central1"

website/docs/d/container_engine_versions.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ support the same version.
2121

2222
```hcl
2323
data "google_container_engine_versions" "central1b" {
24-
provider = "google-beta"
24+
provider = google-beta
2525
location = "us-central1-b"
2626
version_prefix = "1.12."
2727
}

website/docs/guides/provider_reference.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ the Google provider.
4848

4949
```hcl
5050
resource "google_compute_instance" "ga-instance" {
51-
provider = "google"
51+
provider = google
5252
5353
# ...
5454
}
5555
5656
resource "google_compute_instance" "beta-instance" {
57-
provider = "google-beta"
57+
provider = google-beta
5858
5959
# ...
6060
}

website/docs/r/compute_organization_security_policy.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ To get more information about OrganizationSecurityPolicy, see:
4343

4444
```hcl
4545
resource "google_compute_organization_security_policy" "policy" {
46-
provider = "google-beta"
46+
provider = google-beta
4747
4848
display_name = "tf-test%{random_suffix}"
4949
parent = "organizations/123456789"

website/docs/r/compute_organization_security_policy_association.html.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ To get more information about OrganizationSecurityPolicyAssociation, see:
4343

4444
```hcl
4545
resource "google_compute_organization_security_policy" "policy" {
46-
provider = "google-beta"
46+
provider = google-beta
4747
4848
display_name = "tf-test%{random_suffix}"
4949
parent = "organizations/123456789"
5050
}
5151
5252
resource "google_compute_organization_security_policy_rule" "policy" {
53-
provider = "google-beta"
53+
provider = google-beta
5454
5555
policy_id = google_compute_organization_security_policy.policy.id
5656
action = "allow"
@@ -73,7 +73,7 @@ resource "google_compute_organization_security_policy_rule" "policy" {
7373
}
7474
7575
resource "google_compute_organization_security_policy_association" "policy" {
76-
provider = "google-beta"
76+
provider = google-beta
7777
7878
name = "tf-test%{random_suffix}"
7979
attachment_id = google_compute_organization_security_policy.policy.parent

website/docs/r/compute_organization_security_policy_rule.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ To get more information about OrganizationSecurityPolicyRule, see:
4343

4444
```hcl
4545
resource "google_compute_organization_security_policy" "policy" {
46-
provider = "google-beta"
46+
provider = google-beta
4747
4848
display_name = "tf-test%{random_suffix}"
4949
parent = "organizations/123456789"
5050
}
5151
5252
resource "google_compute_organization_security_policy_rule" "policy" {
53-
provider = "google-beta"
53+
provider = google-beta
5454
5555
policy_id = google_compute_organization_security_policy.policy.id
5656
action = "allow"

0 commit comments

Comments
 (0)