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

Interact with Systems Manager Parameter Store? #836

Closed
krlmlr opened this issue Sep 18, 2024 · 4 comments
Closed

Interact with Systems Manager Parameter Store? #836

krlmlr opened this issue Sep 18, 2024 · 4 comments
Labels
question 🧐❓ Further information is requested

Comments

@krlmlr
Copy link

krlmlr commented Sep 18, 2024

https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html

I searched for it but didn't find it. Would you support that? It seems to be a more affordable alternative to the Secrets Manager.

The https://github.com/paws-r/paws/blob/main/DEVELOPER_GUIDE.md doesn't seem to mention the provision of new services.

@DyfanJones
Copy link
Member

I might be missing something but I believe we support it: https://www.paws-r-sdk.com/docs/ssm_get_parameters/

import boto3

ssm = boto3.client('ssm', 'us-east-2')
response = ssm.get_parameters(
    Names=['LambdaSecureString'],WithDecryption=True
)
library(paws)

client <- ssm(region = "us-east-2")
resp <- client$get_parameters(
  Names=list('LambdaSecureString'), WithDecryption=TRUE
)

@DyfanJones
Copy link
Member

@krlmlr paws is regenerated (new services get added) every 4 months (https://github.com/paws-r/paws/blob/main/.github/workflows/regen.yml). I should add this in the documentation 😄 . Paws 0.7.0 was recently released so it should be fairly up to date :)

@krlmlr
Copy link
Author

krlmlr commented Sep 18, 2024

Nice, thanks for the super-quick response! Yes, I just didn't find it.

How do you feel about adding "Amazon Simple Systems Manager (SSM)" next to "Ssm" (capitalization?) in the reference?

@krlmlr krlmlr closed this as completed Sep 18, 2024
@DyfanJones
Copy link
Member

Makes sense, I think that should be fairly easy to do :)

@DyfanJones DyfanJones added the question 🧐❓ Further information is requested label Sep 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question 🧐❓ Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants