We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b686257 commit 7eee311Copy full SHA for 7eee311
services/integration/cmd.go
@@ -162,12 +162,16 @@ func Command() *cobra.Command {
162
Db: cnf.Steampipe.DB,
163
}
164
165
+ isOnAks := false
166
+ if isAKSPtr != nil {
167
+ isOnAks = *isAKSPtr
168
+ }
169
elasticConfig := config2.ElasticSearch{
170
Address: os.Getenv("ELASTICSEARCH_ADDRESS"),
171
Username: os.Getenv("ELASTICSEARCH_USERNAME"),
172
Password: os.Getenv("ELASTICSEARCH_PASSWORD"),
- IsOpenSearch: *isOpenSearchPtr,
- IsOnAks: *isAKSPtr,
173
+ IsOpenSearch: false,
174
+ IsOnAks: isOnAks,
175
AwsRegion: os.Getenv("ELASTICSEARCH_AWS_REGION"),
176
AssumeRoleArn: os.Getenv("ELASTICSEARCH_ASSUME_ROLE_ARN"),
177
0 commit comments