forked from cloudquery/terraform-aws-cloudquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.hcl
42 lines (35 loc) · 1.19 KB
/
config.hcl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Configuration AutoGenerated by CloudQuery CLI
cloudquery {
plugin_directory = "./cq/providers"
policy_directory = "./cq/policies"
provider "aws" {
version = "latest"
}
connection {
dsn = "${DSN}"
}
}
// All Provider Configurations
provider "aws" {
configuration {
// Optional. if you want to assume role to multiple account and fetch data from them
//accounts "<YOUR ACCOUNT ID>" {
// Optional. Role ARN we want to assume when accessing this account
// role_arn = <YOUR_ROLE_ARN>
// Optional. Account ID we want to assume when accessing this account - override the block label
// account_id = <YOUR ACCOUNT ID>
// }
// Optional. by default assumes all regions
// regions = ["us-east-1", "us-west-2"]
// Optional. Enable AWS SDK debug logging.
aws_debug = false
// The maximum number of times that a request will be retried for failures. Defaults to 5 retry attempts.
// max_retries = 5
// The maximum back off delay between attempts. The backoff delays exponentially with a jitter based on the number of attempts. Defaults to 60 seconds.
// max_backoff = 30
}
// list of resources to fetch
resources = [
"*"
]
}