-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmain.tf
More file actions
19 lines (17 loc) · 731 Bytes
/
main.tf
File metadata and controls
19 lines (17 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
locals {
region = "us-west-2"
availability_zone = "us-west-2a"
}
module "executors" {
source = "sourcegraph/executors/aws"
version = "6.4.0" # LATEST
availability_zone = local.availability_zone
executor_instance_tag = "codeintel-prod"
executor_sourcegraph_external_url = "https://sourcegraph.acme.com"
executor_sourcegraph_executor_proxy_password = "hunter2"
executor_queue_name = "codeintel"
executor_metrics_environment_label = "prod"
executor_use_firecracker = true
randomize_resource_names = true
private_networking = true
}