Hi all,
I faced two issue with newest version 1.22.1 (actually, I could not run on 1.21.0, so I update it to 1.22.1)

- Could not use
redirect_to_https: false:
I put it in my service manifest already:
# The manifest for the "api" service.
# Read the full specification for the "Load Balanced Web Service" type at:
# https://aws.github.io/copilot-cli/docs/manifest/lb-web-service/
# Your service name will be used in naming your resources like log groups, ECS services, etc.
name: api
type: Load Balanced Web Service
# Distribute traffic to your service.
http:
# Requests to this path will be forwarded to your service.
# To match all requests you can use the "/" path.
path: '/'
# You can specify a custom health check path. The default is "/".
healthcheck: '/health-check'
# Configuration for your containers and service.
image:
# Docker build arguments. For additional overrides: https://aws.github.io/copilot-cli/docs/manifest/lb-web-service/#image-build
build:
dockerfile: dockers/AWS.Dockerfile
context: .
args:
BUILDKIT_INLINE_CACHE: 1
# Port exposed through your container to route traffic to it.
port: 3000
cpu: 256 # Number of CPU units for the task.
memory: 512 # Amount of memory in MiB used by the task.
count: 1 # Number of tasks that should be running in your service.
exec: true # Enable running commands in your container.
#secrets: # Pass secrets from AWS Systems Manager (SSM) Parameter Store.
# GITHUB_TOKEN: GITHUB_TOKEN # The key is the name of the environment variable, the value is the name of the SSM parameter.
secrets:
SERVER_ID: /copilot/${COPILOT_APPLICATION_NAME}/${COPILOT_ENVIRONMENT_NAME}/secrets/SERVER_ID
APP_NAME: /copilot/${COPILOT_APPLICATION_NAME}/${COPILOT_ENVIRONMENT_NAME}/secrets/APP_NAME
APP_PORT: /copilot/${COPILOT_APPLICATION_NAME}/${COPILOT_ENVIRONMENT_NAME}/secrets/APP_PORT
# You can override any of the values defined above by environment.
environments:
# test:
# count: 2 # Number of tasks to run for the "test" environment.
# deployment: # The deployment strategy for the "test" environment.
# rolling: 'recreate' # Stops existing tasks before new ones are started for faster deployments.
dev:
deployment:
rolling: default
http:
alias: api.dev.quick.slabss.com
prd:
deployment:
rolling: default
http:
alias:
- name: api.prd.xxxx.com
redirect_to_https: false
And I run this command to test
copilot svc package -n api -e prd --output-dir './infrastructure'
here is the result
{
"Parameters": {
"AddonsTemplateURL": "",
"AppName": "xxxx",
"ContainerImage": "",
"ContainerPort": "3000",
"DNSDelegated": "true",
"EnvFileARN": "",
"EnvName": "prd",
"HTTPSEnabled": "true",
"LogRetention": "30",
"RulePath": "/",
"Stickiness": "false",
"TargetContainer": "api",
"TargetPort": "3000",
"TaskCPU": "256",
"TaskCount": "2",
"TaskMemory": "512",
"WorkloadName": "api"
},
"Tags": {
"copilot-application": "xxxx",
"copilot-environment": "prd",
"copilot-service": "api"
}
}
please focus on: "HTTPSEnabled": "true", => copilot could not compile manifest with the option to false
- Could not use
tls_termination: true
Here my env manifest
name: prd
type: Environment
# Import your own VPC and subnets or configure how they should be created.
network:
vpc:
id: vpc-0fb7032a4983d7fa0
subnets:
public:
- id: subnet-072981b5af6ae44df
- id: subnet-07b08e3e124033341
cdn:
tls_termination: true
http:
public:
security_groups:
ingress:
restrict_to:
cdn: true
here is the output of the command: copilot env package -a quick -n prd --output-dir './environment'
✘ unmarshal environment manifest for "prd": unmarshal environment manifest: unable to unmarshal cdn field into bool or composite-style map

When change
cdn:
tls_termination: true
to
that command could be run, and output
{
"Parameters": {
"ALBWorkloads": "api",
"Aliases": "{\"api\":[\"api.prd.quick.slabss.com\"]}",
"AppDNSDelegationRole": "arn:aws:iam::443171139711:role/quick-DNSDelegationRole",
"AppDNSName": "slabss.com",
"AppName": "quick",
"CreateHTTPSListener": "true",
"CreateInternalHTTPSListener": "false",
"EFSWorkloads": "",
"EnvironmentName": "prd",
"InternalALBWorkloads": "",
"NATWorkloads": "",
"ServiceDiscoveryEndpoint": "prd.quick.local",
"ToolsAccountPrincipalARN": "arn:aws:iam::443171139711:root"
},
"Tags": {
"copilot-application": "quick",
"copilot-environment": "prd"
}
}
So. what am I wrong, or it is a bug?
Thank you so much!
Hi all,

I faced two issue with newest version 1.22.1 (actually, I could not run on 1.21.0, so I update it to 1.22.1)
redirect_to_https: false:I put it in my service manifest already:
And I run this command to test
copilot svc package -n api -e prd --output-dir './infrastructure'here is the result
please focus on:
"HTTPSEnabled": "true",=> copilot could not compile manifest with the option tofalsetls_termination: trueHere my env manifest
here is the output of the command:
copilot env package -a quick -n prd --output-dir './environment'When change
to
that command could be run, and output
So. what am I wrong, or it is a bug?
Thank you so much!