sparse-intern-71089
08/28/2023, 9:57 PMbillowy-army-68599
billions-fish-49395
08/28/2023, 10:07 PMconst glueDataCatalogDB = new aws.glue.CatalogDatabase(
'data-catalog-db',
{
name: 'data-catalog-db',
}
);
and it's not in a private subnetbillowy-army-68599
billions-fish-49395
08/28/2023, 10:18 PMconst glueSecurityConfig = new aws.glue.SecurityConfiguration(
'glue-security-config',
{
encryptionConfiguration: {
s3Encryption: {
s3EncryptionMode: 'SSE-S3',
},
cloudwatchEncryption: {
cloudwatchEncryptionMode: 'SSE-KMS',
kmsKeyArn: cloudwatchKms.arn,
},
jobBookmarksEncryption: {
jobBookmarksEncryptionMode: 'CSE-KMS',
kmsKeyArn: glueJobBookmarksKms.arn,
},
},
},
{
dependsOn: [cloudwatchKms, glueJobBookmarksKms],
}
);
billowy-army-68599
billions-fish-49395
08/28/2023, 10:19 PM