Skip to content

Commit

Permalink
aws eks describe-cluster takes --name
Browse files Browse the repository at this point in the history
* Working from HEAD of main (9e91a9a) of cloudmapper.
* aws-cli/2.0.50 Python/3.8.5 Darwin/19.6.0 source/x86_64

My collect step failed with:
```
...
Summary: 275 APIs called. 1 errors
Failures:
  eks.describe_cluster({'cluster': 'example-foo'}): Parameter validation failed:
Missing required parameter in input: "name"
```
which led me to: duo-labs#729
But the AWS CLI/SDK shows that `describe-cluster` takes `--name` not `--cluster`, so this PR changes the parameter we are passing. And allows `collect` to complete successfully.
  • Loading branch information
dhutty authored Sep 22, 2020
1 parent 9e91a9a commit 39dfb43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion collect_commands.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@
- Service: eks
Request: describe-cluster
Parameters:
- Name: cluster
- Name: name
Value: eks-list-clusters.json|.clusters[]
- Service: logs
Request: describe-destinations
Expand Down

0 comments on commit 39dfb43

Please sign in to comment.