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.
Hi everyone, I'm implementing a custom resource provider that creates a Project into an external service. That service exposes a set of APIs that requires a token to authenticate the...
We provide a contract for handlers to follow in the docs, but it will be useful for providers to know what each individual test within the contract tests is trying...
Hey, Our team is failing with contract test contract_update_non_existent_resource due it use contract_update_create_only_property test json file as previous resource model. This will make a failure loop that: If test update...
Hi, This is a general question on contract tests like contract_create_delete and contract_create_read_success. For these tests, one of the expectation is that the input Resource Model matches the output. 1....
When a customer wants to create a our resource, he sends a request like so: ```json { "ourObj": { "someProp": "someValue" } } ``` And our API, upon successful creation,...
Log file attached [rpdk.log](https://github.com/aws-cloudformation/cloudformation-cli/files/6314056/rpdk.log)
The [modules documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/modules.html) says, > Module parameters don't support Type or Constraint enforcement. Does that mean that modules can't support CommaDelimitedList parameters? We have a module fragment: ``` --- Parameters:...
I have a property `FilterAndOperator` which has 2 sub-properties: - `Prefix` - `Tags` which is a list containing items of type `Tag`. The requirement for `FilterAndOperator` is this: - It...
A customer attempted to register modules using CodeBuild and reported this to us: - The registration failed with "internal failure". It was not clear what the error was. In the...
The two code links below are removing `readOnlyProperties` from the result of a create. While [this](https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-schema.html#schema-properties-readonlyproperties) describes only having `readOnlyProperties` on read/list I think there are times that a create/update...