In order to authenticate to a private GCS bucket, we need to connect the Cloud CDN load balancer through a Backend Service, instead of a Backend Bucket. See Configure private origin authentication for more details.
As of April 2024, the
In order to authenticate to a private GCS bucket, we need to connect the Cloud CDN load balancer through a Backend Service, instead of a Backend Bucket. See Configure private origin authentication for more details.
As of April 2024, the
| #!/usr/bin/env bash | |
| get_task_definition_arns() { | |
| aws ecs list-task-definitions --region ${AWS_REGION} \ | |
| | jq -M -r '.taskDefinitionArns | .[]' | |
| } | |
| delete_task_definition() { | |
| local arn=$1 |