Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix usgov support for communication services #27919

Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
"UAE",
"UK",
"United States",
"usgov"

Check failure on line 83 in internal/services/communication/communication_service_resource.go

View workflow job for this annotation

GitHub Actions / document-lint

syntax error: unexpected newline in composite literal; possibly missing comma or }

Check failure on line 83 in internal/services/communication/communication_service_resource.go

View workflow job for this annotation

GitHub Actions / tflint

syntax error: unexpected newline in composite literal; possibly missing comma or }

Check failure on line 83 in internal/services/communication/communication_service_resource.go

View workflow job for this annotation

GitHub Actions / tflint

missing ',' before newline in composite literal

Check failure on line 83 in internal/services/communication/communication_service_resource.go

View workflow job for this annotation

GitHub Actions / golint

syntax error: unexpected newline in composite literal; possibly missing comma or }

Check failure on line 83 in internal/services/communication/communication_service_resource.go

View workflow job for this annotation

GitHub Actions / golint

missing ',' before newline in composite literal (typecheck)

Check failure on line 83 in internal/services/communication/communication_service_resource.go

View workflow job for this annotation

GitHub Actions / golint

syntax error: unexpected newline in composite literal; possibly missing comma or }

Check failure on line 83 in internal/services/communication/communication_service_resource.go

View workflow job for this annotation

GitHub Actions / detect

syntax error: unexpected newline in composite literal; possibly missing comma or }

Check failure on line 83 in internal/services/communication/communication_service_resource.go

View workflow job for this annotation

GitHub Actions / compatibility-32bit-test

syntax error: unexpected newline in composite literal; possibly missing comma or }

Check failure on line 83 in internal/services/communication/communication_service_resource.go

View workflow job for this annotation

GitHub Actions / test

missing ',' before newline in composite literal

Check failure on line 83 in internal/services/communication/communication_service_resource.go

View workflow job for this annotation

GitHub Actions / test

syntax error: unexpected newline in composite literal; possibly missing comma or }
katbyte marked this conversation as resolved.
Show resolved Hide resolved
}, false),
},

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
"UAE",
"UK",
"United States",
"usgov"

Check failure on line 65 in internal/services/communication/email_service_resource.go

View workflow job for this annotation

GitHub Actions / document-lint

syntax error: unexpected newline in composite literal; possibly missing comma or }

Check failure on line 65 in internal/services/communication/email_service_resource.go

View workflow job for this annotation

GitHub Actions / tflint

syntax error: unexpected newline in composite literal; possibly missing comma or }

Check failure on line 65 in internal/services/communication/email_service_resource.go

View workflow job for this annotation

GitHub Actions / tflint

missing ',' before newline in composite literal

Check failure on line 65 in internal/services/communication/email_service_resource.go

View workflow job for this annotation

GitHub Actions / golint

syntax error: unexpected newline in composite literal; possibly missing comma or } (typecheck)

Check failure on line 65 in internal/services/communication/email_service_resource.go

View workflow job for this annotation

GitHub Actions / golint

missing ',' before newline in composite literal (typecheck)

Check failure on line 65 in internal/services/communication/email_service_resource.go

View workflow job for this annotation

GitHub Actions / golint

syntax error: unexpected newline in composite literal; possibly missing comma or }) (typecheck)

Check failure on line 65 in internal/services/communication/email_service_resource.go

View workflow job for this annotation

GitHub Actions / detect

syntax error: unexpected newline in composite literal; possibly missing comma or }

Check failure on line 65 in internal/services/communication/email_service_resource.go

View workflow job for this annotation

GitHub Actions / compatibility-32bit-test

syntax error: unexpected newline in composite literal; possibly missing comma or }

Check failure on line 65 in internal/services/communication/email_service_resource.go

View workflow job for this annotation

GitHub Actions / test

missing ',' before newline in composite literal

Check failure on line 65 in internal/services/communication/email_service_resource.go

View workflow job for this annotation

GitHub Actions / test

syntax error: unexpected newline in composite literal; possibly missing comma or }
katbyte marked this conversation as resolved.
Show resolved Hide resolved
}, false),
},

Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/communication_service.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The following arguments are supported:

---

* `data_location` - (Optional) The location where the Communication service stores its data at rest. Possible values are `Africa`, `Asia Pacific`, `Australia`, `Brazil`, `Canada`, `Europe`, `France`, `Germany`, `India`, `Japan`, `Korea`, `Norway`, `Switzerland`, `UAE`, `UK` and `United States`. Defaults to `United States`. Changing this forces a new Communication Service to be created.
* `data_location` - (Optional) The location where the Communication service stores its data at rest. Possible values are `Africa`, `Asia Pacific`, `Australia`, `Brazil`, `Canada`, `Europe`, `France`, `Germany`, `India`, `Japan`, `Korea`, `Norway`, `Switzerland`, `UAE`, `UK`, `usgov` and `United States`. Defaults to `United States`. Changing this forces a new Communication Service to be created.

* `tags` - (Optional) A mapping of tags which should be assigned to the Communication Service.

Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/email_communication_service.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The following arguments are supported:

---

* `data_location` - (Required) The location where the Email Communication service stores its data at rest. Possible values are `Africa`, `Asia Pacific`, `Australia`, `Brazil`, `Canada`, `Europe`, `France`, `Germany`, `India`, `Japan`, `Korea`, `Norway`, `Switzerland`, `UAE`, `UK` and `United States`. Changing this forces a new Email Communication Service to be created.
* `data_location` - (Required) The location where the Email Communication service stores its data at rest. Possible values are `Africa`, `Asia Pacific`, `Australia`, `Brazil`, `Canada`, `Europe`, `France`, `Germany`, `India`, `Japan`, `Korea`, `Norway`, `Switzerland`, `UAE`, `UK` `usgov` and `United States`. Changing this forces a new Email Communication Service to be created.

* `tags` - (Optional) A mapping of tags which should be assigned to the Email Communication Service.

Expand Down
Loading