Skip to content

Commit

Permalink
fix(docs): minor fixes on aws plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
smantri-moveworks authored and loicmathieu committed Jan 5, 2024
1 parent bf0ed96 commit 4105e25
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions src/main/java/io/kestra/plugin/aws/athena/Query.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@
@Example(
code = {
"""
accessKeyId: "<access-key>"
secretKeyId: "<secret-key>"
region: "eu-central-1"
database: my_database
outputLocation: s3://some-s3-bucket
query: |
select * from cloudfront_logs limit 10
accessKeyId: "<access-key>"
secretKeyId: "<secret-key>"
region: "eu-central-1"
database: my_database
outputLocation: s3://some-s3-bucket
query: |
select * from cloudfront_logs limit 10
"""
}
)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/kestra/plugin/aws/sns/Publish.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"accessKeyId: \"<access-key>\"",
"secretKeyId: \"<secret-key>\"",
"region: \"eu-central-1\"",
"topicArn: \"arn:aws:sns:us-east-1:000000000000:MessageTopic\"",
"topicArn: \"arn:aws:sns:eu-central-1:000000000000:MessageTopic\"",
"from:",
"- data: Hello World",
"- data: Hello Kestra",
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/kestra/plugin/aws/sqs/Consume.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"accessKeyId: \"<access-key>\"",
"secretKeyId: \"<secret-key>\"",
"region: \"eu-central-1\"",
"queueUrl: \"https://sqs.us-east-2.amazonaws.com/000000000000/test-queue\""
"queueUrl: \"https://sqs.eu-central-1.amazonaws.com/000000000000/test-queue\""
}
)
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/kestra/plugin/aws/sqs/Publish.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"accessKeyId: \"<access-key>\"",
"secretKeyId: \"<secret-key>\"",
"region: \"eu-central-1\"",
"queueUrl: \"https://sqs.us-east-2.amazonaws.com/000000000000/test-queue\"",
"queueUrl: \"https://sqs.eu-central-1.amazonaws.com/000000000000/test-queue\"",
"from:",
"- data: Hello World",
"- data: Hello Kestra",
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/kestra/plugin/aws/sqs/Trigger.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"accessKeyId: \"<access-key>\"",
"secretKeyId: \"<secret-key>\"",
"region: \"eu-central-1\"",
"queueUrl: \"https://sqs.us-east-2.amazonaws.com/000000000000/test-queue\"",
"queueUrl: \"https://sqs.eu-central-1.amazonaws.com/000000000000/test-queue\"",
"maxRecords: 10"
}
)
Expand Down

0 comments on commit 4105e25

Please sign in to comment.