Skip to content

Commit cf48ff0

Browse files
authored
Fix typos in the docs and add better documentation for ignore_error_codes config argument (#1804)
1 parent a576749 commit cf48ff0

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

config/aws.spc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ connection "aws" {
3838
#min_error_retry_delay = 25
3939

4040
# List of additional AWS error codes to ignore for all queries.
41+
# When encountering these errors, the API call will not be retried and empty results will be returned.
4142
# By default, common not found error codes are ignored and will still be ignored even if this argument is not set.
4243
#ignore_error_codes = ["AccessDenied", "AccessDeniedException", "NotAuthorized", "UnauthorizedOperation", "UnrecognizedClientException", "AuthorizationError"]
4344

docs/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ connection "aws" {
108108
#min_error_retry_delay = 25
109109
110110
# List of additional AWS error codes to ignore for all queries.
111+
# When encountering these errors, the API call will not be retried and empty results will be returned.
111112
# By default, common not found error codes are ignored and will still be ignored even if this argument is not set.
112113
#ignore_error_codes = ["AccessDenied", "AccessDeniedException", "NotAuthorized", "UnauthorizedOperation", "UnrecognizedClientException", "AuthorizationError"]
113114
@@ -400,7 +401,7 @@ connection "aws_account_b" {
400401

401402
### AssumeRole Credentials (in ECS)
402403

403-
If you are using Steampipe on AWS ECS then you need to ensure that have seperated your [Task Role](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html) and [Execution Role](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_execution_IAM_role.html) within the Task Definition. You will also need to create a separate service role that your `Task Role` can assume.
404+
If you are using Steampipe on AWS ECS then you need to ensure that have separated your [Task Role](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html) and [Execution Role](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_execution_IAM_role.html) within the Task Definition. You will also need to create a separate service role that your `Task Role` can assume.
404405

405406
The Task Role should have permissions to assume your service role. Additionally your service role needs a trust relationship set up, and have permissions to assume your other roles.
406407

docs/tables/aws_appautoscaling_policy.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ where
1919
service_namespace = 'ecs';
2020
```
2121

22-
2322
### List policies for ECS services with policy type Step scaling
2423

2524
```sql

0 commit comments

Comments
 (0)