From 71127e839fd3ea77a7b2187246ba87ee58b3ca14 Mon Sep 17 00:00:00 2001 From: Aaron Williams Date: Thu, 30 Nov 2023 15:03:47 +0000 Subject: [PATCH] Adding production manifest file * Adding VPC and subnets +ref: FS-3720 +semver: minor --- .../environments/production/manifest.yml | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 apps/pre-award/copilot/environments/production/manifest.yml diff --git a/apps/pre-award/copilot/environments/production/manifest.yml b/apps/pre-award/copilot/environments/production/manifest.yml new file mode 100644 index 00000000..cedb4645 --- /dev/null +++ b/apps/pre-award/copilot/environments/production/manifest.yml @@ -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