Skip to content

Commit

Permalink
fixup! [u] Fix: Lambda servicecachehealth times out (#5467, #5622)
Browse files Browse the repository at this point in the history
  • Loading branch information
achave11-ucsc committed Feb 2, 2024
1 parent 82125cb commit 747ea77
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions terraform/gitlab/gitlab.tf.json.template.py
Original file line number Diff line number Diff line change
Expand Up @@ -1018,11 +1018,13 @@ def qq(*words):
for zone in range(num_zones)
},
'aws_vpc_endpoint': {
f'{service}_gateway': {
f'gitlab_{service}': {
'service_name': f'com.amazonaws.{config.region}.{service}',
'vpc_endpoint_type': 'Gateway',
'vpc_id': '${aws_vpc.gitlab.id}',
'route_table_ids': ['${aws_route_table.gitlab_%d.id}' % i for i in range(num_zones)],
'route_table_ids': [
'${aws_route_table.gitlab_%d.id}' % i for i in range(num_zones)
],
}
for service in ['dynamodb', 's3']
},
Expand Down

0 comments on commit 747ea77

Please sign in to comment.