-
Notifications
You must be signed in to change notification settings - Fork 11
/
config.dhall
44 lines (41 loc) · 1.64 KB
/
config.dhall
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
-- https://github.com/aws/aws-cdk/blob/master/packages/%40aws-cdk/cfnspec/build-tools/update.sh
let specifications =
toMap
{ cloudformation =
"https://d1uauaxba7bl26.cloudfront.net/latest/gzip/CloudFormationResourceSpecification.json"
, sam =
"https://raw.githubusercontent.com/awslabs/goformation/master/generate/sam-2016-10-31.json"
}
let templates =
toMap
{ sam/policy-template =
"https://github.com/aws/serverless-application-model/raw/develop/samtranslator/policy_templates_data/policy_templates.json"
}
let excludes =
[ "AWS::EMR::Cluster"
, "AWS::EMR::InstanceGroupConfig"
, "AWS::EMR::InstanceFleetConfig"
, "AWS::Macie::FindingsFilter"
, "AWS::Connect::EvaluationForm"
, "AWS::IoTTwinMaker::ComponentType"
, "AWS::IoTTwinMaker::Entity"
, "AWS::Lex::Bot"
, "AWS::DataBrew::Recipe"
, "AWS::FIS::ExperimentTemplate"
, "AWS::SageMaker::ModelBiasJobDefinition"
, "AWS::SageMaker::ModelQualityJobDefinition"
, "AWS::SageMaker::MonitoringSchedule"
, "AWS::SageMaker::DataQualityJobDefinition"
, "AWS::SageMaker::ModelExplainabilityJobDefinition"
, "AWS::S3::StorageLens"
, "AWS::StepFunctions::StateMachine"
, "AWS::MWAA::Environment"
, "AWS::WAFv2::RuleGroup"
, "AWS::WAFv2::WebACL"
, "AWS::ServiceDiscovery::PrivateDnsNamespace"
, "AWS::ServiceDiscovery::PublicDnsNamespace"
, "AWS::AmplifyUIBuilder::Component"
, "AWS::AmplifyUIBuilder::Theme"
, "AWS::EMRServerless::Application"
]
in { specifications, excludes, templates }