Austin Ely

Results 9 comments of Austin Ely

Copilot uses ECS Fargate under the hood, which does not yet support GPUs. You can track ECS' progress on this issue over at the [Containers Roadmap](https://github.com/aws/containers-roadmap/issues/88). We have plans to...

Hey @sojanthomas-st, this is working as intended--secrets are only accessible as environment variables from *inside the container running on ECS*, not at build time. If you need a value to...

Our current workaround we suggest is to pull the secrets into your environment build and push the image outside of Copilot using the `--secret` and `--ssh` flags as appropriate, and...

Hi @SongGithub! Thanks for the bug report. I have a couple of follow up questions so we can best resolve this issue. First, are you using Classic Load Balancing, or...

Thanks so much for bringing this up. We welcome external contributions for the ECS CLI these days, so please feel free to cut a PR for this if it's a...

Hey, this is a great feature request for us. It seems like a natural use case for a `job status` command. Thanks for surfacing this need so we can prioritize...

One approach to exfiltrating the task role is to create a custom extension which sets the task role as a property: ```typescript class MyExtension extends ServiceExtension { public taskRole!: iam.IRole;...

Hi @mikereinhold, this looks like a sensible enhancement to me. There shouldn't be any reason in CloudFront that we should limit you to one custom domain.

For customers using the CDK to manage ECS services, you can override the default behavior which sets an empty LoadBalancers field to undefined. From a cloudformation template: ```typescript declare const...