Skip to content
This repository was archived by the owner on Jul 16, 2024. It is now read-only.

Commit f6fb321

Browse files
dzenovgkowski
andauthored
fix: data mesh roles (#436)
* Security refactor * fix doc for default role * refactored data access role to tag based permissions * Remove managed policies * Fix cross account resource * Fix cdk exec role arn and resource id * add e2e tests * add cross env reference via secret manager * Construct event bus arn * Fix workflows * add data mesh tests * Update crawler workflow * Update database parameters, log groups, and tests Co-authored-by: Vincent Gromakowski <[email protected]>
1 parent 74440c0 commit f6fb321

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+2888
-2130
lines changed

core/.projen/deps.json

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/.projen/tasks.json

Lines changed: 6 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/.projenrc.js

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const glob = require('glob');
88

99
const { awscdk } = require('projen');
1010

11-
const CDK_VERSION = '2.27.0';
11+
const CDK_VERSION = '2.35.0';
1212
const project = new awscdk.AwsCdkConstructLibrary({
1313
majorVersion: 2,
1414
authorName: 'Amazon Web Services',
@@ -25,7 +25,7 @@ const project = new awscdk.AwsCdkConstructLibrary({
2525
],
2626

2727
cdkVersion: CDK_VERSION,
28-
constructsVersion: '10.1.38',
28+
constructsVersion: '10.1.66',
2929
defaultReleaseBranch: 'main',
3030
license: 'MIT-0',
3131
name: 'aws-analytics-reference-architecture',
@@ -119,14 +119,6 @@ project.addTask('test:integ', {
119119
exec: 'jest --group=integ',
120120
});
121121

122-
project.addTask('test:integ/data-lake', {
123-
exec: 'jest --group=integ/data-lake',
124-
});
125-
126-
project.addTask('test:integ/redshift', {
127-
exec: 'jest --group=integ/redshift',
128-
});
129-
130122
const testDeploy = project.addTask('test:deploy', {
131123
exec: 'cdk --version && cdk deploy --app=./lib/integ.default.js',
132124
});

0 commit comments

Comments
 (0)