hashicorp / terraform-provider-awscc

Terraform AWS Cloud Control provider
https://registry.terraform.io/providers/hashicorp/awscc/latest/docs
Mozilla Public License 2.0
256 stars 116 forks source link

Cannot generate latest schema for `AWS::StepFunctions::StateMachine` #751

Open ewbankkit opened 1 year ago

ewbankkit commented 1 year ago

Community Note

The current AWS::StepFunctions::StateMachine CloudFormation resource schema includes

       "additionalProperties": false,
       "patternProperties": {
         "": {
-          "type": "string"
+          "oneOf": [
+            {
+              "type": "string"
+            },
+            {
+              "type": "integer"
+            },
+            {
+              "type": "boolean"
+            }
+          ]
         }
       },
       "minProperties": 1

for which we cannot currently generate an equivalent Terraform schema.

ewbankkit commented 1 year ago

Relates https://github.com/hashicorp/terraform-provider-awscc/issues/99.