cloudformation-cli icon indicating copy to clipboard operation
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.

Results 183 cloudformation-cli issues
Sort by recently updated
recently updated
newest added

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...

documentation
contract tests
resource-provider-guidance

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...

question
contract tests

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....

contract tests

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,...

contract tests

Log file attached [rpdk.log](https://github.com/aws-cloudformation/cloudformation-cli/files/6314056/rpdk.log)

modules

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:...

modules

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...

bug
schema processing

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...

contract tests