Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resource Suppression: key-value map of set of object is unsupported #1508

Open
breathingdust opened this issue Apr 3, 2024 · 0 comments
Open
Labels
bug resource-suppression Issue that prevents a resource from being generated.

Comments

@breathingdust
Copy link
Member

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment
  • The resources and data sources in this provider are generated from the CloudFormation schema, so they can only support the actions that the underlying schema supports. For this reason submitted bugs should be limited to defects in the generation and runtime code of the provider. Customizing behavior of the resource, or noting a gap in behavior are not valid bugs and should be submitted as enhancements to AWS via the CloudFormation Open Coverage Roadmap.

Description

The emitter is currently unable to handle key-value map of set of objects, so if the resource schema includes this structure then generation will fail.

Affected Resource(s)

  • aws_appconfig_extension

Schema Definition

"Actions": {
"type": "object",
"patternProperties": {
"": {
"$ref": "#/definitions/Actions"
}
},
"additionalProperties": false
},

"Actions": {
"description": "A list of actions for an extension to take at a specific action point.",
"uniqueItems": true,
"type": "array",
"insertionOrder": false,
"items": {
"$ref": "#/definitions/Action"
}
},
"Action": {
"description": "An action for an extension to take at a specific action point.",
"type": "object",
"properties": {
"Name": {
"type": "string",
"description": "The name of the extension action.",
"minLength": 1,
"maxLength": 128
},
"Description": {
"type": "string",
"description": "The description of the extension Action.",
"minLength": 0,
"maxLength": 1024
},
"Uri": {
"type": "string",
"description": "The URI of the extension action.",
"minLength": 1,
"maxLength": 2048
},
"RoleArn": {
"type": "string",
"description": "The ARN of the role for invoking the extension action.",
"minLength": 20,
"maxLength": 2048
}
},
"required": [
"Name",
"Uri"
],
"additionalProperties": false
},

References

@breathingdust breathingdust added bug resource-suppression Issue that prevents a resource from being generated. labels Apr 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug resource-suppression Issue that prevents a resource from being generated.
Projects
None yet
Development

No branches or pull requests

1 participant