question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

allow creation of ssm documents

See original GitHub issue

🚀 Feature Request

General Information

  • 👋 I may be able to implement this feature request
  • ⚠️ This feature might incur a breaking change

Description

Currently to create a ssm document in cdk you can only use a json object as the content

with open('ssm/removal.json', 'r') as f:
            removalDoc = json.load(f)

        aws_ssm.CfnDocument(
          self,'ssmdoc',
          content=removalDoc,
          document_type="Automation"
        )

Proposed Solution

Allow creating of ssm documents in cdk. ability to generate a full document with parameters etc

Other information

I believe this is not on the roadmap for the ssm team but want to capture this so more eyes are on it

Issue Analytics

  • State:open
  • Created 4 years ago
  • Reactions:14
  • Comments:12 (7 by maintainers)

github_iconTop GitHub Comments

5reactions
udondancommented, Mar 14, 2020

@MrArnoldPalmer Just released 1.0.0 of my L3 here: https://github.com/udondan/cdk-ssm-document Let me know If you’re interested in having this migrated into the cdk repo.

3reactions
udondancommented, Mar 13, 2020

I think this should be closed. Creation of SSM docs is already possible - https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-ssm.CfnDocument.html

Read more comments on GitHub >

github_iconTop Results From Across the Web

Creating SSM documents - AWS Systems Manager
If the AWS Systems Manager public documents don't perform all the actions you want to perform on your AWS resources, you can create...
Read more >
How to create SSM Documents and use them to install ...
Creation of a SSM Document ... Let's go to the Shared Resources section at the bottom of the left hand menu, and click...
Read more >
SSM document data elements - Amazon Systems Manager
This topic describes the data elements used in Command and Automation SSM documents. The schema version used to create a document defines the...
Read more >
Creating and Using a Custom Document with Parameter Store ...
Note: SSM documents do not allow using secure string passwords. You'll need an SSM API call to fetch any encrypted parameter, decrypt it,...
Read more >
Curated AWS SSM Scripts - Rewind Backups
SSM documents access can be controlled with IAM policies. What does an SSM document look like? It's a file that looks something like...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found