Skip to content

Commit

Permalink
format target_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoltan Tudlik committed Jun 10, 2024
1 parent c93fffa commit 197db5a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions internal/service/events/target_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2700,7 +2700,7 @@ resource "aws_cloudwatch_event_target" "test" {
input_paths = {
input = "$.detail.input"
}
input_template = <<EOF
{
"input": <input>
Expand All @@ -2714,7 +2714,7 @@ resource "aws_cloudwatch_event_target" "test" {
}
resource "aws_iam_role" "test" {
name = %[1]q
name = %[1]q
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
Expand Down Expand Up @@ -2755,7 +2755,7 @@ EOF
resource "aws_appsync_graphql_api" "test" {
name = %[1]q
authentication_type = "AWS_IAM"
schema = <<EOF
schema = <<EOF
schema {
mutation: Mutation
query: Query
Expand Down
4 changes: 2 additions & 2 deletions website/docs/r/cloudwatch_event_target.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -497,8 +497,8 @@ data "aws_iam_policy_document" "appsync_mutation_role_trust" {
data "aws_iam_policy_document" "appsync_mutation_role_policy_document" {
statement {
actions = ["appsync:GraphQL"]
effect = "Allow"
actions = ["appsync:GraphQL"]
effect = "Allow"
resources = [
aws_appsync_graphql_api.graphql-api.arn
]
Expand Down

0 comments on commit 197db5a

Please sign in to comment.