@aws-mdaa/datawarehouse 1.5.0 → 1.6.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 +108 -154
- package/SCHEMA.md +1563 -1731
- package/lib/config-schema.json +25 -10
- package/lib/datawarehouse-config.d.ts +49 -7
- package/lib/datawarehouse-config.js +7 -2
- package/package.json +17 -15
- package/sample_configs/sample-config-comprehensive.yaml +212 -0
- package/sample_configs/sample-config-minimal.yaml +45 -0
- package/sample_configs/sample-config-public-access-block-external.yaml +31 -0
- package/mdaa.config.json +0 -3
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Redshift Data Warehouse module configuration exercising
|
|
2
|
+
# publicAccessBlockManagedExternally: true.
|
|
3
|
+
# This omits the explicit blockPublicAccess setting on S3 buckets
|
|
4
|
+
# so CDK does not emit a PutBucketPublicAccessBlock API call.
|
|
5
|
+
|
|
6
|
+
adminUsername: admin
|
|
7
|
+
adminPasswordRotationDays: 30
|
|
8
|
+
|
|
9
|
+
dataAdminRoles:
|
|
10
|
+
- arn: arn:{{partition}}:iam::{{account}}:role/Admin
|
|
11
|
+
|
|
12
|
+
enableAuditLoggingToS3: true
|
|
13
|
+
|
|
14
|
+
nodeType: RA3_4XLARGE
|
|
15
|
+
numberOfNodes: 2
|
|
16
|
+
|
|
17
|
+
preferredMaintenanceWindow: Sun:23:45-Mon:00:15
|
|
18
|
+
|
|
19
|
+
securityGroupIngress:
|
|
20
|
+
ipv4:
|
|
21
|
+
- 172.31.0.0/16
|
|
22
|
+
|
|
23
|
+
subnetIds:
|
|
24
|
+
- subnet-12312312421
|
|
25
|
+
- subnet-12312321412
|
|
26
|
+
|
|
27
|
+
vpcId: vpc-12321421412
|
|
28
|
+
|
|
29
|
+
# Omit explicit blockPublicAccess on S3 buckets; managed externally via
|
|
30
|
+
# AWS account-level settings and/or SCPs.
|
|
31
|
+
publicAccessBlockManagedExternally: true
|
package/mdaa.config.json
DELETED