Skip to content

Commit

Permalink
Add STS endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
ividito committed Oct 4, 2024
1 parent 199c871 commit 2383626
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions standalone_base_infrastructure/network_construct.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ def __init__(
"cloudwatch-logs": aws_ec2.InterfaceVpcEndpointAwsService.CLOUDWATCH_LOGS,
"s3": aws_ec2.GatewayVpcEndpointAwsService.S3,
"dynamodb": aws_ec2.GatewayVpcEndpointAwsService.DYNAMODB,
"ecr": aws_ec2.InterfaceVpcEndpointAwsService.ECR,
"ecr-docker": aws_ec2.InterfaceVpcEndpointAwsService.ECR_DOCKER,
"ecr": aws_ec2.InterfaceVpcEndpointAwsService.ECR, # allows airflow to pull task images
"ecr-docker": aws_ec2.InterfaceVpcEndpointAwsService.ECR_DOCKER, # allows airflow to pull task images
"sts": aws_ec2.InterfaceVpcEndpointAwsService.STS, # allows airflow tasks to assume access roles
}

for id, service in vpc_endpoints.items():
Expand Down

0 comments on commit 2383626

Please sign in to comment.