@pipeline-builder/pipeline-manager 3.4.184 → 3.4.185

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.
@@ -17,6 +17,9 @@
17
17
  "Description": "When true, the ingestion Lambda resolves commit timestamps in-account for DORA lead time (extra SCM/secret cost). Enable only for orgs with the advanced_reporting add-on."
18
18
  }
19
19
  },
20
+ "Conditions": {
21
+ "DoraOn": { "Fn::Equals": [{ "Ref": "DoraEnabled" }, "true"] }
22
+ },
20
23
  "Resources": {
21
24
  "EventQueue": {
22
25
  "Type": "AWS::SQS::Queue",
@@ -109,7 +112,7 @@
109
112
  "Resource": [
110
113
  { "Fn::Sub": "arn:aws:secretsmanager:${AWS::Region}:${AWS::AccountId}:secret:pipeline-builder/*/platform-*" },
111
114
  { "Fn::Sub": "arn:aws:secretsmanager:${AWS::Region}:${AWS::AccountId}:secret:pipeline-builder/*/reporting-ingest-*" },
112
- { "Fn::Sub": "arn:aws:secretsmanager:${AWS::Region}:${AWS::AccountId}:secret:pipeline-builder/*/github-token-*" }
115
+ { "Fn::If": ["DoraOn", { "Fn::Sub": "arn:aws:secretsmanager:${AWS::Region}:${AWS::AccountId}:secret:pipeline-builder/*/github-token-*" }, { "Ref": "AWS::NoValue" }] }
113
116
  ]
114
117
  },
115
118
  {
@@ -118,9 +121,11 @@
118
121
  "Resource": { "Fn::Sub": "arn:aws:codepipeline:*:${AWS::AccountId}:*" }
119
122
  },
120
123
  {
121
- "Effect": "Allow",
122
- "Action": "codecommit:GetCommit",
123
- "Resource": { "Fn::Sub": "arn:aws:codecommit:*:${AWS::AccountId}:*" }
124
+ "Fn::If": ["DoraOn", {
125
+ "Effect": "Allow",
126
+ "Action": "codecommit:GetCommit",
127
+ "Resource": { "Fn::Sub": "arn:aws:codecommit:*:${AWS::AccountId}:*" }
128
+ }, { "Ref": "AWS::NoValue" }]
124
129
  }
125
130
  ]
126
131
  }
package/package.json CHANGED
@@ -45,8 +45,8 @@
45
45
  "yaml": "2.9.0",
46
46
  "zod": "4.4.3",
47
47
  "@pipeline-builder/ai-core": "3.4.121",
48
- "@pipeline-builder/api-core": "3.4.121",
49
- "@pipeline-builder/pipeline-core": "3.4.141"
48
+ "@pipeline-builder/pipeline-core": "3.4.141",
49
+ "@pipeline-builder/api-core": "3.4.121"
50
50
  },
51
51
  "keywords": [
52
52
  "ci-cd",
@@ -101,7 +101,7 @@
101
101
  "access": "public",
102
102
  "registry": "https://registry.npmjs.org/"
103
103
  },
104
- "version": "3.4.184",
104
+ "version": "3.4.185",
105
105
  "bugs": {
106
106
  "url": "https://github.com/mwashburn160/pipeline-builder/issues"
107
107
  },