You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: charts/cloudquery/values.yaml
+48-4
Original file line number
Diff line number
Diff line change
@@ -89,6 +89,54 @@ envRenderSecret:
89
89
90
90
# For any other provider checkout https://hub.cloudquery.io/providers
91
91
92
+
# Every day at 00:00.
93
+
# More information at: https://crontab.guru/#0_0_*_*_*
94
+
schedule: "0 0 * * *"
95
+
96
+
config: |
97
+
// Configuration AutoGenerated by CloudQuery CLI
98
+
// This is a default config.hcl for cloudquery with aws provider.
99
+
// Change this to the needed config.hcl
100
+
cloudquery {
101
+
plugin_directory = "./cq/providers"
102
+
policy_directory = "./cq/policies"
103
+
104
+
provider "aws" {
105
+
version = "latest"
106
+
}
107
+
108
+
connection {
109
+
dsn = "${DSN}"
110
+
}
111
+
}
112
+
113
+
// All Provider Configurations
114
+
115
+
provider "aws" {
116
+
configuration {
117
+
// Optional. if you want to assume role to multiple account and fetch data from them
118
+
// accounts "<UNIQUE ACCOUNT IDENTIFIER>" {
119
+
// Optional. Role ARN we want to assume when accessing this account
120
+
// role_arn = < YOUR_ROLE_ARN >
121
+
// Optional. Named profile in config or credential file from where CQ should grab credentials
122
+
// LocalProfile = < PROFILE_NAME >
123
+
// }
124
+
// Optional. by default assumes all regions
125
+
// regions = ["us-east-1", "us-west-2"]
126
+
// Optional. Enable AWS SDK debug logging.
127
+
aws_debug = false
128
+
// The maximum number of times that a request will be retried for failures. Defaults to 5 retry attempts.
129
+
// max_retries = 5
130
+
// The maximum back off delay between attempts. The backoff delays exponentially with a jitter based on the number of attempts. Defaults to 60 seconds.
0 commit comments