cloudformation-cli
cloudformation-cli copied to clipboard
The CloudFormation Provider Development Toolkit allows you to author your own resource providers and modules that can be used by CloudFormation.
Generated documentation is currently generating as: ``` "ArrayOfObj" : [ [ ArrayOfObj, ... ], ... ], ``` i.e. it is doubly encapsulating. Additionally, the object properties file (`arrayofobj.md` in the...
We were getting stabilization errors on an `AWS::CloudFormation::ResourceVersion` of ours. The `schema.json` passed validation and generated correctly via `cfn-cli`. Anyway, here is the diff of the change to our `schema.json`...
When trying to run an `invoke` or `test` with the cfn cli against a resource type, I'm finding that I need to run a `cfn submit --dry-run` before I can...
handler_commons files does not have unit test coverage. As we have increased the complexity of this file, unit test coverage is important to ensure quality of code.
https://github.com/aws-cloudformation/cloudformation-cli/pull/367#discussion_r395955803 https://github.com/aws-cloudformation/aws-cloudformation-resource-schema/pull/121 https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-some-interrupt
*Description of changes:* https://github.com/aws-cloudformation/cloudformation-cli/issues/623 Enforce "secure transport" bucket policy on the access logs bucket. By submitting this pull request, I confirm that my contribution is made under the terms of...
Currently when doing a test the code will use `get_session_token` when an execution role isn't provided or the credential chain being used doesn't have a session token. https://github.com/aws-cloudformation/cloudformation-cli/blob/1d32b070d26cf6c8d17b03dc06190c08d5c9444b/src/rpdk/core/boto_helpers.py#L67 The [get_session_token](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sts.html#STS.Client.get_session_token)...
When doing some testing it appears that the cfn command doesn't handle environment variables like AWS_REGION for its commands. It would be nice to have support for the standard AWS...
I would like a way to package up many Resource Types (possibly all sharing an Organization or Organization::Service prefix) and allow users to register them as a set.
The artifacts bucket created has a Deny for insecure transfer. But the upload task does not use SSE. The workaround for it is adding the ExtraArgs={'ServerSideEncryption': 'AES256'} ``` [2020-11-11T00:30:21Z] DEBUG...