Skip to content

Commit 0ac10f9

Browse files
Merge pull request #102 from NHSDigital/NPA-3336-add-prod-env
NPA-3336: Add prod env
2 parents 3b36468 + 57e6a7f commit 0ac10f9

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

manifest_template.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,37 +7,50 @@ APIGEE_ENVIRONMENTS:
77
has_mock_auth: true
88
rate_limit: 300
99
spike_rate_limit: 600pm # 10 requests per second
10+
approval_type: auto
1011
- name: internal-qa
1112
display_name: Internal QA
1213
has_mock_auth: true
1314
rate_limit: 300
1415
spike_rate_limit: 600pm # 10 requests per second
16+
approval_type: auto
1517
- name: internal-dev-sandbox
1618
display_name: Internal Development Sandbox
1719
portal_visibility: false
1820
rate_limit: 300
1921
spike_rate_limit: 600pm # 10 requests per second
22+
approval_type: auto
2023
- name: internal-qa
2124
display_name: Internal QA
2225
has_mock_auth: true
2326
portal_visibility: false
2427
rate_limit: 300
2528
spike_rate_limit: 600pm # 10 requests per second
29+
approval_type: auto
2630
- name: internal-qa-sandbox
2731
display_name: Internal QA Sandbox
2832
portal_visibility: false
2933
rate_limit: 300
3034
spike_rate_limit: 600pm # 10 requests per second
35+
approval_type: auto
3136
- name: sandbox
3237
display_name: Sandbox
3338
portal_visibility: false
3439
rate_limit: 120
3540
spike_rate_limit: 300pm # 5 requests per second
41+
approval_type: auto
3642
- name: int
3743
display_name: Integration Testing
3844
has_mock_auth: true
3945
rate_limit: 300
4046
spike_rate_limit: 600pm # 10 requests per second
47+
approval_type: auto
48+
- name: prod
49+
display_name: Production
50+
has_mock_auth: false
51+
rate_limit: 300
52+
spike_rate_limit: 600pm # 10 requests per second
53+
approval_type: manual
4154
---
4255
meta:
4356
api:
@@ -54,7 +67,7 @@ apigee:
5467
- name: {{ ENV.name }}
5568
products:
5669
- name: {{ NAME }}
57-
approvalType: auto
70+
approvalType: {{ ENV.approval_type }}
5871
attributes:
5972
- name: access
6073
value: public

0 commit comments

Comments
 (0)