@resistdesign/voltra 0.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +86 -0
- package/package.json +103 -0
- package/src/api/DataAccessControl.d.ts +85 -0
- package/src/api/DataAccessControl.js +159 -0
- package/src/api/ORM/DACUtils.d.ts +60 -0
- package/src/api/ORM/DACUtils.js +197 -0
- package/src/api/ORM/ListItemUtils.d.ts +7 -0
- package/src/api/ORM/ListItemUtils.js +22 -0
- package/src/api/ORM/ORMRouteMap.d.ts +19 -0
- package/src/api/ORM/ORMRouteMap.js +82 -0
- package/src/api/ORM/TypeInfoORMService.d.ts +103 -0
- package/src/api/ORM/TypeInfoORMService.js +581 -0
- package/src/api/ORM/drivers/DynamoDBDataItemDBDriver/ConfigTypes.d.ts +63 -0
- package/src/api/ORM/drivers/DynamoDBDataItemDBDriver/ConfigTypes.js +2 -0
- package/src/api/ORM/drivers/DynamoDBDataItemDBDriver.d.ts +36 -0
- package/src/api/ORM/drivers/DynamoDBDataItemDBDriver.js +282 -0
- package/src/api/ORM/drivers/S3FileItemDBDriver/ConfigTypes.d.ts +90 -0
- package/src/api/ORM/drivers/S3FileItemDBDriver/ConfigTypes.js +2 -0
- package/src/api/ORM/drivers/S3FileItemDBDriver/S3FileDriver.d.ts +45 -0
- package/src/api/ORM/drivers/S3FileItemDBDriver/S3FileDriver.js +127 -0
- package/src/api/ORM/drivers/S3FileItemDBDriver.d.ts +44 -0
- package/src/api/ORM/drivers/S3FileItemDBDriver.js +182 -0
- package/src/api/ORM/drivers/common/SupportedTypeInfoORMDBDrivers.d.ts +12 -0
- package/src/api/ORM/drivers/common/SupportedTypeInfoORMDBDrivers.js +20 -0
- package/src/api/ORM/drivers/common/Types.d.ts +77 -0
- package/src/api/ORM/drivers/common/Types.js +14 -0
- package/src/api/ORM/drivers/common/index.d.ts +2 -0
- package/src/api/ORM/drivers/common/index.js +18 -0
- package/src/api/ORM/drivers/index.d.ts +3 -0
- package/src/api/ORM/drivers/index.js +19 -0
- package/src/api/ORM/index.d.ts +4 -0
- package/src/api/ORM/index.js +43 -0
- package/src/api/Router/AWS.d.ts +26 -0
- package/src/api/Router/AWS.js +76 -0
- package/src/api/Router/Auth.d.ts +2 -0
- package/src/api/Router/Auth.js +9 -0
- package/src/api/Router/CORS.d.ts +6 -0
- package/src/api/Router/CORS.js +27 -0
- package/src/api/Router/Types.d.ts +71 -0
- package/src/api/Router/Types.js +2 -0
- package/src/api/Router/index.d.ts +18 -0
- package/src/api/Router/index.js +145 -0
- package/src/api/index.d.ts +3 -0
- package/src/api/index.js +39 -0
- package/src/app/index.d.ts +1 -0
- package/src/app/index.js +37 -0
- package/src/app/utils/ApplicationState.d.ts +52 -0
- package/src/app/utils/ApplicationState.js +86 -0
- package/src/app/utils/ApplicationStateLoader.d.ts +46 -0
- package/src/app/utils/ApplicationStateLoader.js +57 -0
- package/src/app/utils/Controller.d.ts +4 -0
- package/src/app/utils/Controller.js +47 -0
- package/src/app/utils/Debug.d.ts +4 -0
- package/src/app/utils/Debug.js +30 -0
- package/src/app/utils/EasyLayout.d.ts +49 -0
- package/src/app/utils/EasyLayout.js +122 -0
- package/src/app/utils/Route.d.ts +28 -0
- package/src/app/utils/Route.js +102 -0
- package/src/app/utils/Service.d.ts +12 -0
- package/src/app/utils/Service.js +34 -0
- package/src/app/utils/TypeInfoORMAPIUtils.d.ts +20 -0
- package/src/app/utils/TypeInfoORMAPIUtils.js +62 -0
- package/src/app/utils/TypeInfoORMClient.d.ts +24 -0
- package/src/app/utils/TypeInfoORMClient.js +69 -0
- package/src/app/utils/index.d.ts +8 -0
- package/src/app/utils/index.js +24 -0
- package/src/common/CommandLine/collectRequiredEnvironmentVariables.d.ts +1 -0
- package/src/common/CommandLine/collectRequiredEnvironmentVariables.js +16 -0
- package/src/common/HelperTypes.d.ts +3 -0
- package/src/common/HelperTypes.js +2 -0
- package/src/common/IdGeneration/getSimpleId.d.ts +4 -0
- package/src/common/IdGeneration/getSimpleId.js +16 -0
- package/src/common/IdGeneration/index.d.ts +1 -0
- package/src/common/IdGeneration/index.js +17 -0
- package/src/common/ItemRelationshipInfoTypes.d.ts +46 -0
- package/src/common/ItemRelationshipInfoTypes.js +20 -0
- package/src/common/ItemRelationships/ItemRelationshipValidation.d.ts +10 -0
- package/src/common/ItemRelationships/ItemRelationshipValidation.js +43 -0
- package/src/common/ItemRelationships/index.d.ts +1 -0
- package/src/common/ItemRelationships/index.js +17 -0
- package/src/common/Logging/Utils.d.ts +10 -0
- package/src/common/Logging/Utils.js +33 -0
- package/src/common/Logging/index.d.ts +1 -0
- package/src/common/Logging/index.js +17 -0
- package/src/common/Routing.d.ts +25 -0
- package/src/common/Routing.js +102 -0
- package/src/common/SearchTypes.d.ts +98 -0
- package/src/common/SearchTypes.js +39 -0
- package/src/common/SearchUtils.d.ts +22 -0
- package/src/common/SearchUtils.js +134 -0
- package/src/common/SearchValidation.d.ts +17 -0
- package/src/common/SearchValidation.js +90 -0
- package/src/common/Storyboarding/Types.d.ts +25 -0
- package/src/common/Storyboarding/Types.js +2 -0
- package/src/common/StringTransformers.d.ts +17 -0
- package/src/common/StringTransformers.js +36 -0
- package/src/common/Testing/CLI.d.ts +2 -0
- package/src/common/Testing/CLI.js +56 -0
- package/src/common/Testing/Types.d.ts +117 -0
- package/src/common/Testing/Types.js +19 -0
- package/src/common/Testing/Utils.d.ts +48 -0
- package/src/common/Testing/Utils.js +334 -0
- package/src/common/Testing/index.d.ts +2 -0
- package/src/common/Testing/index.js +18 -0
- package/src/common/TypeInfoDataItemUtils.d.ts +10 -0
- package/src/common/TypeInfoDataItemUtils.js +55 -0
- package/src/common/TypeInfoORM/Types.d.ts +76 -0
- package/src/common/TypeInfoORM/Types.js +55 -0
- package/src/common/TypeInfoORM/index.d.ts +1 -0
- package/src/common/TypeInfoORM/index.js +17 -0
- package/src/common/TypeParsing/Constants.d.ts +1 -0
- package/src/common/TypeParsing/Constants.js +4 -0
- package/src/common/TypeParsing/ParsingUtils/Constants.d.ts +5 -0
- package/src/common/TypeParsing/ParsingUtils/Constants.js +8 -0
- package/src/common/TypeParsing/ParsingUtils/checkType.d.ts +8 -0
- package/src/common/TypeParsing/ParsingUtils/checkType.js +46 -0
- package/src/common/TypeParsing/ParsingUtils/checkUnionType.d.ts +6 -0
- package/src/common/TypeParsing/ParsingUtils/checkUnionType.js +15 -0
- package/src/common/TypeParsing/ParsingUtils/extractCommentTags.d.ts +2 -0
- package/src/common/TypeParsing/ParsingUtils/extractCommentTags.js +105 -0
- package/src/common/TypeParsing/ParsingUtils/extractLiteralValues.d.ts +6 -0
- package/src/common/TypeParsing/ParsingUtils/extractLiteralValues.js +42 -0
- package/src/common/TypeParsing/ParsingUtils/extractTypeDetails.d.ts +8 -0
- package/src/common/TypeParsing/ParsingUtils/extractTypeDetails.js +14 -0
- package/src/common/TypeParsing/ParsingUtils/getPrimaryFieldForTypeInfo.d.ts +5 -0
- package/src/common/TypeParsing/ParsingUtils/getPrimaryFieldForTypeInfo.js +27 -0
- package/src/common/TypeParsing/ParsingUtils/getTypeInfo.d.ts +3 -0
- package/src/common/TypeParsing/ParsingUtils/getTypeInfo.js +27 -0
- package/src/common/TypeParsing/ParsingUtils/getTypeInfoField.d.ts +3 -0
- package/src/common/TypeParsing/ParsingUtils/getTypeInfoField.js +44 -0
- package/src/common/TypeParsing/ParsingUtils/getTypeInfoFromAliasType.d.ts +4 -0
- package/src/common/TypeParsing/ParsingUtils/getTypeInfoFromAliasType.js +28 -0
- package/src/common/TypeParsing/ParsingUtils/getTypeInfoFromFieldFilter.d.ts +4 -0
- package/src/common/TypeParsing/ParsingUtils/getTypeInfoFromFieldFilter.js +105 -0
- package/src/common/TypeParsing/ParsingUtils/getTypeInfoFromTypeAlias.d.ts +4 -0
- package/src/common/TypeParsing/ParsingUtils/getTypeInfoFromTypeAlias.js +20 -0
- package/src/common/TypeParsing/ParsingUtils/getTypeKeyword.d.ts +3 -0
- package/src/common/TypeParsing/ParsingUtils/getTypeKeyword.js +17 -0
- package/src/common/TypeParsing/ParsingUtils/getUnionOrIntersectionTypeInfo.d.ts +4 -0
- package/src/common/TypeParsing/ParsingUtils/getUnionOrIntersectionTypeInfo.js +49 -0
- package/src/common/TypeParsing/ParsingUtils/getUnionOrLiteralStringValues.d.ts +2 -0
- package/src/common/TypeParsing/ParsingUtils/getUnionOrLiteralStringValues.js +24 -0
- package/src/common/TypeParsing/TypeInfo.d.ts +142 -0
- package/src/common/TypeParsing/TypeInfo.js +13 -0
- package/src/common/TypeParsing/TypeMapping.d.ts +9 -0
- package/src/common/TypeParsing/TypeMapping.js +32 -0
- package/src/common/TypeParsing/TypeParsing.d.ts +5 -0
- package/src/common/TypeParsing/TypeParsing.js +39 -0
- package/src/common/TypeParsing/Utils.d.ts +21 -0
- package/src/common/TypeParsing/Utils.js +94 -0
- package/src/common/TypeParsing/Validation.d.ts +92 -0
- package/src/common/TypeParsing/Validation.js +340 -0
- package/src/common/TypeParsing/index.d.ts +5 -0
- package/src/common/TypeParsing/index.js +44 -0
- package/src/common/index.d.ts +11 -0
- package/src/common/index.js +47 -0
- package/src/iac/SimpleCFT.d.ts +48 -0
- package/src/iac/SimpleCFT.js +82 -0
- package/src/iac/index.d.ts +9 -0
- package/src/iac/index.js +48 -0
- package/src/iac/packs/auth/user-management.d.ts +14 -0
- package/src/iac/packs/auth/user-management.js +302 -0
- package/src/iac/packs/auth.d.ts +19 -0
- package/src/iac/packs/auth.js +47 -0
- package/src/iac/packs/build/utils.d.ts +100 -0
- package/src/iac/packs/build/utils.js +23 -0
- package/src/iac/packs/build.d.ts +29 -0
- package/src/iac/packs/build.js +217 -0
- package/src/iac/packs/cdn.d.ts +12 -0
- package/src/iac/packs/cdn.js +113 -0
- package/src/iac/packs/cloud-function.d.ts +17 -0
- package/src/iac/packs/cloud-function.js +69 -0
- package/src/iac/packs/database.d.ts +29 -0
- package/src/iac/packs/database.js +27 -0
- package/src/iac/packs/dns.d.ts +13 -0
- package/src/iac/packs/dns.js +26 -0
- package/src/iac/packs/file-storage.d.ts +14 -0
- package/src/iac/packs/file-storage.js +71 -0
- package/src/iac/packs/gateway.d.ts +27 -0
- package/src/iac/packs/gateway.js +342 -0
- package/src/iac/packs/index.d.ts +11 -0
- package/src/iac/packs/index.js +27 -0
- package/src/iac/packs/repo.d.ts +10 -0
- package/src/iac/packs/repo.js +34 -0
- package/src/iac/packs/ssl-certificate.d.ts +10 -0
- package/src/iac/packs/ssl-certificate.js +36 -0
- package/src/iac/types/CloudFormationResourceSpecification.d.ts +2 -0
- package/src/iac/types/Constants.d.ts +9 -0
- package/src/iac/types/Constants.js +20 -0
- package/src/iac/types/IaCTypes.d.ts +234994 -0
- package/src/iac/types/IaCTypes.js +14 -0
- package/src/iac/types/Renderers.d.ts +12 -0
- package/src/iac/types/Renderers.js +112 -0
- package/src/iac/types/Types.d.ts +37 -0
- package/src/iac/types/Types.js +2 -0
- package/src/iac/types/Utils.d.ts +2 -0
- package/src/iac/types/Utils.js +60 -0
- package/src/iac/types/generate.d.ts +1 -0
- package/src/iac/types/generate.js +31 -0
- package/src/iac/utils/index.d.ts +36 -0
- package/src/iac/utils/index.js +105 -0
- package/src/iac/utils/patch-utils.d.ts +15 -0
- package/src/iac/utils/patch-utils.js +62 -0
- package/src/index.d.ts +178 -0
- package/src/index.js +214 -0
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.addBuildPipeline = exports.DEFAULT_BUILD_PIPELINE_REPO_PROVIDER = void 0;
|
|
4
|
+
const utils_1 = require("../utils");
|
|
5
|
+
exports.DEFAULT_BUILD_PIPELINE_REPO_PROVIDER = "GitHub";
|
|
6
|
+
/**
|
|
7
|
+
* Add a build pipeline with full permissions.
|
|
8
|
+
*/
|
|
9
|
+
exports.addBuildPipeline = (0, utils_1.createResourcePack)(({ id, buildSpec, dependsOn, environmentVariables, timeoutInMinutes = 10, environmentType = "LINUX_CONTAINER", environmentComputeType = "BUILD_GENERAL1_SMALL", environmentImage = "aws/codebuild/nodejs:10.14.1", repoConfig: { provider = exports.DEFAULT_BUILD_PIPELINE_REPO_PROVIDER, owner, repo, branch, oauthToken, }, }) => ({
|
|
10
|
+
Resources: {
|
|
11
|
+
[`${id}CodeBuildRole`]: {
|
|
12
|
+
Type: "AWS::IAM::Role",
|
|
13
|
+
Properties: {
|
|
14
|
+
AssumeRolePolicyDocument: {
|
|
15
|
+
Statement: [
|
|
16
|
+
{
|
|
17
|
+
Effect: "Allow",
|
|
18
|
+
Principal: {
|
|
19
|
+
Service: ["codebuild.amazonaws.com"],
|
|
20
|
+
},
|
|
21
|
+
Action: ["sts:AssumeRole"],
|
|
22
|
+
},
|
|
23
|
+
],
|
|
24
|
+
},
|
|
25
|
+
Path: "/",
|
|
26
|
+
Policies: [
|
|
27
|
+
{
|
|
28
|
+
PolicyName: "codebuild-service",
|
|
29
|
+
PolicyDocument: {
|
|
30
|
+
Statement: [
|
|
31
|
+
{
|
|
32
|
+
Effect: "Allow",
|
|
33
|
+
Action: "*",
|
|
34
|
+
Resource: "*",
|
|
35
|
+
},
|
|
36
|
+
],
|
|
37
|
+
Version: "2012-10-17",
|
|
38
|
+
},
|
|
39
|
+
},
|
|
40
|
+
],
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
[`${id}CodePipelineRole`]: {
|
|
44
|
+
Type: "AWS::IAM::Role",
|
|
45
|
+
Properties: {
|
|
46
|
+
AssumeRolePolicyDocument: {
|
|
47
|
+
Statement: [
|
|
48
|
+
{
|
|
49
|
+
Effect: "Allow",
|
|
50
|
+
Principal: {
|
|
51
|
+
Service: ["codepipeline.amazonaws.com"],
|
|
52
|
+
},
|
|
53
|
+
Action: ["sts:AssumeRole"],
|
|
54
|
+
},
|
|
55
|
+
],
|
|
56
|
+
},
|
|
57
|
+
Path: "/",
|
|
58
|
+
Policies: [
|
|
59
|
+
{
|
|
60
|
+
PolicyName: "codepipeline-service",
|
|
61
|
+
PolicyDocument: {
|
|
62
|
+
Statement: [
|
|
63
|
+
{
|
|
64
|
+
Action: ["codebuild:*"],
|
|
65
|
+
Resource: "*",
|
|
66
|
+
Effect: "Allow",
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
Action: [
|
|
70
|
+
"s3:GetObject",
|
|
71
|
+
"s3:GetObjectVersion",
|
|
72
|
+
"s3:GetBucketVersioning",
|
|
73
|
+
],
|
|
74
|
+
Resource: "*",
|
|
75
|
+
Effect: "Allow",
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
Action: ["s3:PutObject"],
|
|
79
|
+
Resource: ["arn:aws:s3:::codepipeline*"],
|
|
80
|
+
Effect: "Allow",
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
Action: ["s3:*", "cloudformation:*", "iam:PassRole"],
|
|
84
|
+
Resource: "*",
|
|
85
|
+
Effect: "Allow",
|
|
86
|
+
},
|
|
87
|
+
],
|
|
88
|
+
Version: "2012-10-17",
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
],
|
|
92
|
+
},
|
|
93
|
+
},
|
|
94
|
+
[`${id}PipelineBucket`]: {
|
|
95
|
+
Type: "AWS::S3::Bucket",
|
|
96
|
+
DeletionPolicy: "Delete",
|
|
97
|
+
Properties: {
|
|
98
|
+
BucketEncryption: {
|
|
99
|
+
ServerSideEncryptionConfiguration: [
|
|
100
|
+
{
|
|
101
|
+
ServerSideEncryptionByDefault: {
|
|
102
|
+
SSEAlgorithm: "AES256",
|
|
103
|
+
},
|
|
104
|
+
},
|
|
105
|
+
],
|
|
106
|
+
},
|
|
107
|
+
PublicAccessBlockConfiguration: {
|
|
108
|
+
BlockPublicAcls: true,
|
|
109
|
+
BlockPublicPolicy: true,
|
|
110
|
+
IgnorePublicAcls: true,
|
|
111
|
+
RestrictPublicBuckets: true,
|
|
112
|
+
},
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
[`${id}CodeBuildAndDeploy`]: {
|
|
116
|
+
Type: "AWS::CodeBuild::Project",
|
|
117
|
+
DependsOn: dependsOn,
|
|
118
|
+
Properties: {
|
|
119
|
+
Name: {
|
|
120
|
+
"Fn::Sub": `\${AWS::StackName}-${id}CodeBuildAndDeploy`,
|
|
121
|
+
},
|
|
122
|
+
Description: "Deploy site to S3",
|
|
123
|
+
ServiceRole: {
|
|
124
|
+
"Fn::GetAtt": [`${id}CodeBuildRole`, "Arn"],
|
|
125
|
+
},
|
|
126
|
+
Artifacts: {
|
|
127
|
+
Type: "CODEPIPELINE",
|
|
128
|
+
},
|
|
129
|
+
Environment: {
|
|
130
|
+
Type: environmentType,
|
|
131
|
+
ComputeType: environmentComputeType,
|
|
132
|
+
Image: environmentImage,
|
|
133
|
+
EnvironmentVariables: environmentVariables,
|
|
134
|
+
},
|
|
135
|
+
Source: {
|
|
136
|
+
Type: "CODEPIPELINE",
|
|
137
|
+
BuildSpec: buildSpec,
|
|
138
|
+
},
|
|
139
|
+
TimeoutInMinutes: timeoutInMinutes,
|
|
140
|
+
},
|
|
141
|
+
},
|
|
142
|
+
[`${id}Pipeline`]: {
|
|
143
|
+
Type: "AWS::CodePipeline::Pipeline",
|
|
144
|
+
DependsOn: `${id}CodeBuildAndDeploy`,
|
|
145
|
+
Properties: {
|
|
146
|
+
RoleArn: {
|
|
147
|
+
"Fn::GetAtt": [`${id}CodePipelineRole`, "Arn"],
|
|
148
|
+
},
|
|
149
|
+
Stages: [
|
|
150
|
+
{
|
|
151
|
+
Name: "Acquire-Source",
|
|
152
|
+
Actions: [
|
|
153
|
+
{
|
|
154
|
+
InputArtifacts: [],
|
|
155
|
+
Name: "Source",
|
|
156
|
+
ActionTypeId: {
|
|
157
|
+
Category: "Source",
|
|
158
|
+
Owner: "ThirdParty",
|
|
159
|
+
Version: "1",
|
|
160
|
+
Provider: provider,
|
|
161
|
+
},
|
|
162
|
+
OutputArtifacts: [
|
|
163
|
+
{
|
|
164
|
+
Name: "SourceOutput",
|
|
165
|
+
},
|
|
166
|
+
],
|
|
167
|
+
Configuration: {
|
|
168
|
+
Owner: owner,
|
|
169
|
+
Repo: repo,
|
|
170
|
+
Branch: branch,
|
|
171
|
+
OAuthToken: oauthToken,
|
|
172
|
+
},
|
|
173
|
+
RunOrder: 1,
|
|
174
|
+
},
|
|
175
|
+
],
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
Name: "Build-And-Deploy",
|
|
179
|
+
Actions: [
|
|
180
|
+
{
|
|
181
|
+
Name: "Artifact",
|
|
182
|
+
ActionTypeId: {
|
|
183
|
+
Category: "Build",
|
|
184
|
+
Owner: "AWS",
|
|
185
|
+
Version: "1",
|
|
186
|
+
Provider: "CodeBuild",
|
|
187
|
+
},
|
|
188
|
+
InputArtifacts: [
|
|
189
|
+
{
|
|
190
|
+
Name: "SourceOutput",
|
|
191
|
+
},
|
|
192
|
+
],
|
|
193
|
+
OutputArtifacts: [
|
|
194
|
+
{
|
|
195
|
+
Name: "DeployOutput",
|
|
196
|
+
},
|
|
197
|
+
],
|
|
198
|
+
Configuration: {
|
|
199
|
+
ProjectName: {
|
|
200
|
+
Ref: `${id}CodeBuildAndDeploy`,
|
|
201
|
+
},
|
|
202
|
+
},
|
|
203
|
+
RunOrder: 1,
|
|
204
|
+
},
|
|
205
|
+
],
|
|
206
|
+
},
|
|
207
|
+
],
|
|
208
|
+
ArtifactStore: {
|
|
209
|
+
Type: "S3",
|
|
210
|
+
Location: {
|
|
211
|
+
Ref: `${id}PipelineBucket`,
|
|
212
|
+
},
|
|
213
|
+
},
|
|
214
|
+
},
|
|
215
|
+
},
|
|
216
|
+
},
|
|
217
|
+
}));
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export type AddCDNConfig = {
|
|
2
|
+
id: string;
|
|
3
|
+
hostedZoneId: any;
|
|
4
|
+
domainName: any;
|
|
5
|
+
certificateArn: any;
|
|
6
|
+
fileStorageId: string;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* Add a global cache of static files (a CDN) for things like your front-end, website, etc.
|
|
10
|
+
* Includes a DNS record for the domain.
|
|
11
|
+
* */
|
|
12
|
+
export declare const addCDN: import("../utils").ResourcePackApplier<AddCDNConfig>;
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.addCDN = void 0;
|
|
4
|
+
const utils_1 = require("../utils");
|
|
5
|
+
/**
|
|
6
|
+
* Add a global cache of static files (a CDN) for things like your front-end, website, etc.
|
|
7
|
+
* Includes a DNS record for the domain.
|
|
8
|
+
* */
|
|
9
|
+
exports.addCDN = (0, utils_1.createResourcePack)(({ id, hostedZoneId, domainName, certificateArn, fileStorageId, }) => {
|
|
10
|
+
return {
|
|
11
|
+
Resources: {
|
|
12
|
+
[`${id}CloudFront`]: {
|
|
13
|
+
Type: "AWS::CloudFront::Distribution",
|
|
14
|
+
DependsOn: fileStorageId,
|
|
15
|
+
Properties: {
|
|
16
|
+
DistributionConfig: {
|
|
17
|
+
Aliases: [domainName],
|
|
18
|
+
ViewerCertificate: {
|
|
19
|
+
AcmCertificateArn: certificateArn,
|
|
20
|
+
SslSupportMethod: "sni-only",
|
|
21
|
+
MinimumProtocolVersion: "TLSv1.1_2016",
|
|
22
|
+
},
|
|
23
|
+
DefaultCacheBehavior: {
|
|
24
|
+
ForwardedValues: {
|
|
25
|
+
QueryString: false,
|
|
26
|
+
},
|
|
27
|
+
TargetOriginId: {
|
|
28
|
+
"Fn::Sub": [
|
|
29
|
+
"S3-${S3BucketName}",
|
|
30
|
+
{
|
|
31
|
+
S3BucketName: domainName,
|
|
32
|
+
},
|
|
33
|
+
],
|
|
34
|
+
},
|
|
35
|
+
ViewerProtocolPolicy: "redirect-to-https",
|
|
36
|
+
},
|
|
37
|
+
DefaultRootObject: "index.html",
|
|
38
|
+
Enabled: true,
|
|
39
|
+
IPV6Enabled: false,
|
|
40
|
+
HttpVersion: "http2",
|
|
41
|
+
Origins: [
|
|
42
|
+
{
|
|
43
|
+
DomainName: {
|
|
44
|
+
"Fn::Sub": [
|
|
45
|
+
"${S3BucketName}.s3.amazonaws.com",
|
|
46
|
+
{
|
|
47
|
+
S3BucketName: domainName,
|
|
48
|
+
},
|
|
49
|
+
],
|
|
50
|
+
},
|
|
51
|
+
Id: {
|
|
52
|
+
"Fn::Sub": [
|
|
53
|
+
"S3-${S3BucketName}",
|
|
54
|
+
{
|
|
55
|
+
S3BucketName: domainName,
|
|
56
|
+
},
|
|
57
|
+
],
|
|
58
|
+
},
|
|
59
|
+
S3OriginConfig: {
|
|
60
|
+
OriginAccessIdentity: "",
|
|
61
|
+
},
|
|
62
|
+
},
|
|
63
|
+
],
|
|
64
|
+
CustomErrorResponses: [
|
|
65
|
+
{
|
|
66
|
+
ErrorCachingMinTTL: 300,
|
|
67
|
+
ErrorCode: 404,
|
|
68
|
+
ResponseCode: 200,
|
|
69
|
+
ResponsePagePath: "/index.html",
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
ErrorCachingMinTTL: 300,
|
|
73
|
+
ErrorCode: 403,
|
|
74
|
+
ResponseCode: 200,
|
|
75
|
+
ResponsePagePath: "/index.html",
|
|
76
|
+
},
|
|
77
|
+
],
|
|
78
|
+
PriceClass: "PriceClass_All",
|
|
79
|
+
},
|
|
80
|
+
},
|
|
81
|
+
},
|
|
82
|
+
[`${id}Route53Record`]: {
|
|
83
|
+
Type: "AWS::Route53::RecordSet",
|
|
84
|
+
DependsOn: [`${id}CloudFront`],
|
|
85
|
+
Properties: {
|
|
86
|
+
HostedZoneId: hostedZoneId,
|
|
87
|
+
Type: "A",
|
|
88
|
+
Name: {
|
|
89
|
+
"Fn::Sub": [
|
|
90
|
+
"${DomainName}.",
|
|
91
|
+
{
|
|
92
|
+
DomainName: domainName,
|
|
93
|
+
},
|
|
94
|
+
],
|
|
95
|
+
},
|
|
96
|
+
AliasTarget: {
|
|
97
|
+
HostedZoneId: "Z2FDTNDATAQYW2",
|
|
98
|
+
DNSName: {
|
|
99
|
+
"Fn::Sub": [
|
|
100
|
+
"${DomainName}.",
|
|
101
|
+
{
|
|
102
|
+
DomainName: {
|
|
103
|
+
"Fn::GetAtt": [`${id}CloudFront`, "DomainName"],
|
|
104
|
+
},
|
|
105
|
+
},
|
|
106
|
+
],
|
|
107
|
+
},
|
|
108
|
+
},
|
|
109
|
+
},
|
|
110
|
+
},
|
|
111
|
+
},
|
|
112
|
+
};
|
|
113
|
+
});
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { AWS } from "../types/IaCTypes";
|
|
2
|
+
export declare const PLACEHOLDER_FUNCTION_CODE: AWS.Lambda.Function.Code;
|
|
3
|
+
export type CloudFunctionRuntime = "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "nodejs26.x" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "python3.15" | "java11" | "java17" | "java21" | "java25" | "dotnet6" | "dotnet8" | "dotnet10" | "go1.x" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby3.5" | "provided" | "provided.al2" | "provided.al2023";
|
|
4
|
+
export type AddCloudFunctionConfig = {
|
|
5
|
+
id: string;
|
|
6
|
+
code?: AWS.Lambda.Function.Code;
|
|
7
|
+
environment?: AWS.Lambda.Function.Environment;
|
|
8
|
+
handler?: any;
|
|
9
|
+
runtime?: CloudFunctionRuntime;
|
|
10
|
+
timeout?: any;
|
|
11
|
+
policies?: AWS.IAM.Role.Policy[];
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* Add a serverless cloud function to run part or all of your API (back-end) without always running servers.
|
|
15
|
+
*
|
|
16
|
+
* */
|
|
17
|
+
export declare const addCloudFunction: import("../utils").ResourcePackApplier<AddCloudFunctionConfig>;
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.addCloudFunction = exports.PLACEHOLDER_FUNCTION_CODE = void 0;
|
|
4
|
+
const utils_1 = require("../utils");
|
|
5
|
+
exports.PLACEHOLDER_FUNCTION_CODE = {
|
|
6
|
+
ZipFile: "module.exports = {handler: async () => ({\n statusCode: 200,\n headers: {'Content-Type': 'application/json'},\n body: '\"You did it!\"'\n })};\n",
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* Add a serverless cloud function to run part or all of your API (back-end) without always running servers.
|
|
10
|
+
*
|
|
11
|
+
* */
|
|
12
|
+
exports.addCloudFunction = (0, utils_1.createResourcePack)(({ id, code = exports.PLACEHOLDER_FUNCTION_CODE, environment = {
|
|
13
|
+
Variables: {
|
|
14
|
+
NODE_ENV: "production",
|
|
15
|
+
},
|
|
16
|
+
}, handler = "index.handler", runtime = "nodejs26.x", timeout = 30, policies = [
|
|
17
|
+
{
|
|
18
|
+
PolicyName: "lambda-parameter-store",
|
|
19
|
+
PolicyDocument: {
|
|
20
|
+
Version: "2012-10-17",
|
|
21
|
+
Statement: [
|
|
22
|
+
{
|
|
23
|
+
Effect: "Allow",
|
|
24
|
+
Action: ["*"],
|
|
25
|
+
Resource: "*",
|
|
26
|
+
},
|
|
27
|
+
],
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
], }) => {
|
|
31
|
+
return {
|
|
32
|
+
Resources: {
|
|
33
|
+
[`${id}Role`]: {
|
|
34
|
+
Type: "AWS::IAM::Role",
|
|
35
|
+
Properties: {
|
|
36
|
+
ManagedPolicyArns: [
|
|
37
|
+
"arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole",
|
|
38
|
+
],
|
|
39
|
+
AssumeRolePolicyDocument: {
|
|
40
|
+
Version: "2012-10-17",
|
|
41
|
+
Statement: [
|
|
42
|
+
{
|
|
43
|
+
Action: ["sts:AssumeRole"],
|
|
44
|
+
Effect: "Allow",
|
|
45
|
+
Principal: {
|
|
46
|
+
Service: ["lambda.amazonaws.com"],
|
|
47
|
+
},
|
|
48
|
+
},
|
|
49
|
+
],
|
|
50
|
+
},
|
|
51
|
+
Policies: policies,
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
[id]: {
|
|
55
|
+
Type: "AWS::Lambda::Function",
|
|
56
|
+
Properties: {
|
|
57
|
+
Timeout: timeout,
|
|
58
|
+
Code: code,
|
|
59
|
+
Environment: environment,
|
|
60
|
+
Handler: handler,
|
|
61
|
+
Role: {
|
|
62
|
+
"Fn::GetAtt": [`${id}Role`, "Arn"],
|
|
63
|
+
},
|
|
64
|
+
Runtime: runtime,
|
|
65
|
+
},
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
};
|
|
69
|
+
});
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The configuration for adding a database to a stack.
|
|
3
|
+
* */
|
|
4
|
+
export type AddDatabaseConfig = {
|
|
5
|
+
/**
|
|
6
|
+
* The id of the database table in a stack.
|
|
7
|
+
* */
|
|
8
|
+
tableId: string;
|
|
9
|
+
/**
|
|
10
|
+
* The name of the database table.
|
|
11
|
+
* */
|
|
12
|
+
tableName?: string;
|
|
13
|
+
/**
|
|
14
|
+
* The keys for the database table.
|
|
15
|
+
* */
|
|
16
|
+
keys: Record<string, "HASH" | "RANGE">;
|
|
17
|
+
/**
|
|
18
|
+
* Specific attributes for the database table.
|
|
19
|
+
* */
|
|
20
|
+
attributes: Record<string, "S" | "N" | "B" | "BOOL" | "NULL" | "M" | "L" | "SS" | "NS" | "BS">;
|
|
21
|
+
/**
|
|
22
|
+
* The billing mode for the database table.
|
|
23
|
+
* */
|
|
24
|
+
billingMode?: "PAY_PER_REQUEST" | "PROVISIONED";
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Add a highly available key-value database with global scale performance.
|
|
28
|
+
* */
|
|
29
|
+
export declare const addDatabase: import("../utils").ResourcePackApplier<AddDatabaseConfig>;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.addDatabase = void 0;
|
|
4
|
+
const utils_1 = require("../utils");
|
|
5
|
+
const SimpleCFT_1 = require("../SimpleCFT");
|
|
6
|
+
/**
|
|
7
|
+
* Add a highly available key-value database with global scale performance.
|
|
8
|
+
* */
|
|
9
|
+
exports.addDatabase = (0, utils_1.createResourcePack)(({ tableId, tableName, keys, attributes, billingMode = "PAY_PER_REQUEST", }) => new SimpleCFT_1.SimpleCFT().patch({
|
|
10
|
+
Resources: {
|
|
11
|
+
[tableId]: {
|
|
12
|
+
Type: "AWS::DynamoDB::Table",
|
|
13
|
+
Properties: {
|
|
14
|
+
TableName: tableName,
|
|
15
|
+
AttributeDefinitions: Object.keys(attributes).map((attributeName) => ({
|
|
16
|
+
AttributeName: attributeName,
|
|
17
|
+
AttributeType: attributes[attributeName],
|
|
18
|
+
})),
|
|
19
|
+
KeySchema: Object.keys(keys).map((keyName) => ({
|
|
20
|
+
AttributeName: keyName,
|
|
21
|
+
KeyType: keys[keyName],
|
|
22
|
+
})),
|
|
23
|
+
BillingMode: billingMode,
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
}).template);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { CloudFormationPrimitiveValue } from "../types/IaCTypes";
|
|
2
|
+
export type AddDNSConfig = {
|
|
3
|
+
id: string;
|
|
4
|
+
hostedZoneId: CloudFormationPrimitiveValue<string>;
|
|
5
|
+
domainName: CloudFormationPrimitiveValue<string>;
|
|
6
|
+
resourceRecords: CloudFormationPrimitiveValue<string>[];
|
|
7
|
+
recordType?: CloudFormationPrimitiveValue<string>;
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* Add DNS parameters for reference in other resources.
|
|
11
|
+
* Optionally includes a front-end live development subdomain.
|
|
12
|
+
* */
|
|
13
|
+
export declare const addDNS: import("../utils").ResourcePackApplier<AddDNSConfig>;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.addDNS = void 0;
|
|
4
|
+
const utils_1 = require("../utils");
|
|
5
|
+
const SimpleCFT_1 = require("../SimpleCFT");
|
|
6
|
+
/**
|
|
7
|
+
* Add DNS parameters for reference in other resources.
|
|
8
|
+
* Optionally includes a front-end live development subdomain.
|
|
9
|
+
* */
|
|
10
|
+
exports.addDNS = (0, utils_1.createResourcePack)(({ id, hostedZoneId, domainName, resourceRecords, recordType = "A", }) => {
|
|
11
|
+
let cft = new SimpleCFT_1.SimpleCFT().patch({
|
|
12
|
+
Resources: {
|
|
13
|
+
[id]: {
|
|
14
|
+
Type: "AWS::Route53::RecordSet",
|
|
15
|
+
Properties: {
|
|
16
|
+
HostedZoneId: hostedZoneId,
|
|
17
|
+
Type: recordType,
|
|
18
|
+
Name: domainName,
|
|
19
|
+
ResourceRecords: resourceRecords,
|
|
20
|
+
TTL: "300",
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
});
|
|
25
|
+
return cft.template;
|
|
26
|
+
});
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AWS } from "../types/IaCTypes";
|
|
2
|
+
export type AddSecureFileStorageConfig = {
|
|
3
|
+
id: string;
|
|
4
|
+
bucketName?: any;
|
|
5
|
+
shouldDelete?: boolean;
|
|
6
|
+
blockPublicAccess?: boolean;
|
|
7
|
+
cors?: AWS.S3.Bucket["Properties"]["CorsConfiguration"] | boolean;
|
|
8
|
+
accessControl?: AWS.S3.Bucket["Properties"]["AccessControl"];
|
|
9
|
+
allowACLs?: boolean;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* Add a secure S3 Bucket with an optional parameter to set the bucket name.
|
|
13
|
+
* */
|
|
14
|
+
export declare const addSecureFileStorage: import("../utils").ResourcePackApplier<AddSecureFileStorageConfig>;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.addSecureFileStorage = void 0;
|
|
4
|
+
const utils_1 = require("../utils");
|
|
5
|
+
/**
|
|
6
|
+
* Add a secure S3 Bucket with an optional parameter to set the bucket name.
|
|
7
|
+
* */
|
|
8
|
+
exports.addSecureFileStorage = (0, utils_1.createResourcePack)(({ id, bucketName, shouldDelete = true, blockPublicAccess = true, cors = false, accessControl = undefined, allowACLs = false, }) => {
|
|
9
|
+
return {
|
|
10
|
+
Resources: {
|
|
11
|
+
[id]: {
|
|
12
|
+
Type: "AWS::S3::Bucket",
|
|
13
|
+
DeletionPolicy: shouldDelete ? "Delete" : "Retain",
|
|
14
|
+
Properties: {
|
|
15
|
+
BucketName: bucketName,
|
|
16
|
+
AccessControl: accessControl,
|
|
17
|
+
OwnershipControls: allowACLs
|
|
18
|
+
? {
|
|
19
|
+
Rules: [
|
|
20
|
+
{
|
|
21
|
+
ObjectOwnership: "ObjectWriter",
|
|
22
|
+
},
|
|
23
|
+
],
|
|
24
|
+
}
|
|
25
|
+
: undefined,
|
|
26
|
+
CorsConfiguration: typeof cors === "object"
|
|
27
|
+
? cors
|
|
28
|
+
: cors === true
|
|
29
|
+
? {
|
|
30
|
+
CorsRules: [
|
|
31
|
+
{
|
|
32
|
+
AllowedHeaders: ["*"],
|
|
33
|
+
AllowedMethods: [
|
|
34
|
+
"GET",
|
|
35
|
+
"PUT",
|
|
36
|
+
"POST",
|
|
37
|
+
"DELETE",
|
|
38
|
+
"HEAD",
|
|
39
|
+
],
|
|
40
|
+
AllowedOrigins: ["*"],
|
|
41
|
+
},
|
|
42
|
+
],
|
|
43
|
+
}
|
|
44
|
+
: undefined,
|
|
45
|
+
BucketEncryption: {
|
|
46
|
+
ServerSideEncryptionConfiguration: [
|
|
47
|
+
{
|
|
48
|
+
ServerSideEncryptionByDefault: {
|
|
49
|
+
SSEAlgorithm: "AES256",
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
],
|
|
53
|
+
},
|
|
54
|
+
PublicAccessBlockConfiguration: blockPublicAccess
|
|
55
|
+
? {
|
|
56
|
+
BlockPublicAcls: true,
|
|
57
|
+
BlockPublicPolicy: true,
|
|
58
|
+
IgnorePublicAcls: true,
|
|
59
|
+
RestrictPublicBuckets: true,
|
|
60
|
+
}
|
|
61
|
+
: {
|
|
62
|
+
BlockPublicAcls: false,
|
|
63
|
+
BlockPublicPolicy: false,
|
|
64
|
+
IgnorePublicAcls: false,
|
|
65
|
+
RestrictPublicBuckets: false,
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
},
|
|
69
|
+
},
|
|
70
|
+
};
|
|
71
|
+
});
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { CloudFormationPrimitiveValue } from "../types/IaCTypes";
|
|
2
|
+
export declare const DEFAULT_AUTH_TYPE = "COGNITO_USER_POOLS";
|
|
3
|
+
export type AddGatewayAuthorizerConfig = {
|
|
4
|
+
providerARNs?: string[];
|
|
5
|
+
scopes?: string[];
|
|
6
|
+
type?: "TOKEN" | "COGNITO_USER_POOLS" | "REQUEST";
|
|
7
|
+
identitySource?: string;
|
|
8
|
+
};
|
|
9
|
+
export type AddGatewayConfig = {
|
|
10
|
+
id: string;
|
|
11
|
+
hostedZoneId: any;
|
|
12
|
+
domainName: any;
|
|
13
|
+
certificateArn: CloudFormationPrimitiveValue<string>;
|
|
14
|
+
cloudFunction: {
|
|
15
|
+
id: string;
|
|
16
|
+
region?: string;
|
|
17
|
+
};
|
|
18
|
+
stageName?: any;
|
|
19
|
+
authorizer?: AddGatewayAuthorizerConfig | boolean;
|
|
20
|
+
deploymentSuffix?: string;
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* Add a load-balanced API gateway for your serverless cloud function.
|
|
24
|
+
* Includes authorization config that connects your user management system to your cloud function.
|
|
25
|
+
* Also includes a DNS record for your API/back-end.
|
|
26
|
+
* */
|
|
27
|
+
export declare const addGateway: import("../utils").ResourcePackApplier<AddGatewayConfig>;
|