Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add query support for AWS::SSM::Parameter #37

Open
iainelder opened this issue Nov 24, 2022 · 2 comments
Open

Add query support for AWS::SSM::Parameter #37

iainelder opened this issue Nov 24, 2022 · 2 comments

Comments

@iainelder
Copy link

I have a parameter that is deployed across all accounts in my organization.

The parameter has been configured differently in some accounts. I want to check how the configuration varies across the organization.

Specifically I want to check which parameters with a given name across the organization are using standard-tier v advanced-tier.

So I was surprised to discover today that AWS Config does not yet support SSM Parameters at all.

I expected a query like this to give me a summary of one type versus the other.

SELECT
  configuration.tier,
  COUNT(*)
WHERE
  resourceType = 'AWS::SSM::Parameter'
  AND resourceName = '/my/org/wide/param'
GROUP BY
  configuration.tier
;

With a result like this:

configuration.tier COUNT(*)
Standard 1111
Advanced 2222
@clustermaster99
Copy link

I second this!
Looking for the same to validate proper log group usage for Systems Manager

@matthew-mattoon
Copy link

I too would like this, especially to confirm Secure-String.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants