Skip to content

Commit 7493e4c

Browse files
authored
fix(provider-generator): skip attribute from AWSCC provider
Since we don't currently support a StringListMapMap class, the AWSCC provider will no longer build and our tests are failing. This is the quickest solution we can implement in lieu of a proper long-term fix due to bandwidth constraints.
1 parent c7c1144 commit 7493e4c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/@cdktf/provider-generator/lib/get/generator/skipped-attributes.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ const SKIPPED_ATTRIBUTES: string[] = [
1717

1818
"oci.data_oci_objectstorage_private_endpoint.fqdns",
1919
"oci.data_oci_objectstorage_private_endpoint_summaries.private_endpoint_summaries.fqdns",
20+
21+
// The below is a quick fix to get the AWSCC provider tests passing / get the provider building again
22+
// This is the quickest solution in lieu of a proper long-term fix due to bandwidth constraints
23+
// @TODO Fix this by implementing StringListMapMap in packages/cdktf/lib/complex-computed-list.ts
24+
"awscc.data_awscc_appintegrations_data_integration.object_configuration",
2025
];
2126

2227
/**

0 commit comments

Comments
 (0)