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.
Running on this resource provider: https://github.com/aws-cloudformation/aws-cloudformation-resource-providers-amplifyuibuilder/tree/main/aws-amplifyuibuilder-component With this input: [inputs_1_create.json.zip](https://github.com/aws-cloudformation/cloudformation-cli/files/7794622/inputs_1_create.json.zip) This is the fail error I see: ``` FAILED handler_create.py::contract_create_delete - AssertionError: All properties specified in the request MUST be...
I am not sure which of these three services:AWS Lambda / AWS CloudFormation / AWS Codepipeline that I configured incorrectly. Could you please let me know which part I need...
I'm getting an uncaught exception when generating my types using `cfn generate` with version `0.2.20` Here's the error log: ``` [2021-10-25T23:36:02Z] DEBUG - Unhandled exception Traceback (most recent call last):...
Metadata attribute "taggable" is marked as deprecated inside resource definition schema. https://github.com/aws-cloudformation/cloudformation-cli/blob/d8212e82e3ca84bec4861739766b355de3ef49ad/src/rpdk/core/data/schema/provider.definition.schema.v1.json#L120 Instead, we should use "tagging". Example: ``` ... "tagging": { "taggable": false }, ... ``` However, if I...
We use a lot of profiles (multiple gov profiles, seller profiles, commercial profiles etc.) Since cfn command can only use default profile, we have to manually edit credentials file to...
*Description of changes:* When resource handlers input and output are not equal in contract tests, we can utilize property transform for input model and compare with output model again, if...
I'm using the python library to create a resource. When I try to create this resource within a cloudformation stack the CREATE handler gets called more than once. When the...
I am building my project with cfn submit --set-default . It deploys it successfully, but when i go to create a stack using that new resource i get the following...
I have a few readOnlyProperties that aren't being set or returned when performing a delete. My create handler looks as follows and I'm outputting the progress event before returning it:...
Update contract will use the create handler result as input to generate update request. However, the writeOnlyProperties are removed from the output of create handler for security reason. This causes...