-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #94 from communitiesuk/FS-3720
FS-3720 - Adding production manifest file
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
apps/pre-award/copilot/environments/production/manifest.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# The manifest for the "dev" environment. | ||
# Read the full specification for the "Environment" type at: | ||
# https://aws.github.io/copilot-cli/docs/manifest/environment/ | ||
|
||
# Your environment name will be used in naming your resources like VPC, cluster, etc. | ||
name: production | ||
type: Environment | ||
|
||
# Import your own VPC and subnets or configure how they should be created. | ||
# Run this in uat/production only - in the test environments, these should be ad-hoc per deployment | ||
network: | ||
vpc: | ||
id: 'vpc-0cf7658b9c8788323' | ||
subnets: | ||
public: | ||
- id: 'subnet-0886358db8e9e1046' | ||
- id: 'subnet-00115bdff509802f9' | ||
private: | ||
- id: 'subnet-007998c5fe35b723d' | ||
- id: 'subnet-08785e0ae77489510' | ||
|
||
# Configure the load balancers in your environment, once created. | ||
# http: | ||
# public: | ||
# private: | ||
|
||
# Configure observability for your environment resources. | ||
observability: | ||
container_insights: false | ||
|
||
cdn: true | ||
|
||
http: | ||
public: | ||
security_groups: | ||
ingress: | ||
restrict_to: | ||
cdn: true |