Skip to content

Commit 141816e

Browse files
authored
CCM-9873: output access logs bucket details from acct component (#468)
1 parent 632f64e commit 141816e

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

infrastructure/terraform/components/acct/outputs.tf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,16 @@ output "github_pat_ssm_param_name" {
1212

1313
output "s3_buckets" {
1414
value = {
15+
access_logs = {
16+
arn = module.s3bucket_access_logs.arn
17+
bucket = module.s3bucket_access_logs.bucket
18+
id = module.s3bucket_access_logs.id
19+
}
1520
backup_reports = {
1621
arn = module.s3bucket_backup_reports.arn
1722
bucket = module.s3bucket_backup_reports.bucket
1823
id = module.s3bucket_backup_reports.id
19-
}
24+
},
2025
}
2126
}
2227

tests/test-team/config/e2e/e2e.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const buildCommand = [
1212

1313
export default defineConfig({
1414
...baseConfig,
15-
15+
fullyParallel: true,
1616
timeout: 60_000, // 30 seconds in the playwright default
1717
expect: {
1818
timeout: 10_000, // default is 5 seconds. After creating and previewing sometimes the load is slow on a cold start

0 commit comments

Comments
 (0)