Skip to content

Commit bdf2cb2

Browse files
committed
release_major: v7.0.0
{"version":"v7.0.0","inputs":"server=v7.0.0","type":"major"}
1 parent f79f4d1 commit bdf2cb2

6 files changed

Lines changed: 16 additions & 16 deletions

File tree

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@ This repository provides a [Terraform module](https://learn.hashicorp.com/tutori
66

77
This repository provides four submodules:
88

9-
1. The [executors module](https://registry.terraform.io/modules/sourcegraph/executors/aws/6.12.0/submodules/executors) provisions compute resources for executors.
10-
2. The [docker-mirror module](https://registry.terraform.io/modules/sourcegraph/executors/aws/6.12.0/submodules/docker-mirror) provisions a Docker registry pull-through cache.
11-
3. The [networking module](https://registry.terraform.io/modules/sourcegraph/executors/aws/6.12.0/submodules/networking) provisions a network to be shared by the executor and Docker registry resources.
12-
4. The [credentials module](https://registry.terraform.io/modules/sourcegraph/executors/aws/6.12.0/submodules/credentials) provisions credentials required by the Sourcegraph instance to enable observability and auto-scaling of executors.
9+
1. The [executors module](https://registry.terraform.io/modules/sourcegraph/executors/aws/7.0.0/submodules/executors) provisions compute resources for executors.
10+
2. The [docker-mirror module](https://registry.terraform.io/modules/sourcegraph/executors/aws/7.0.0/submodules/docker-mirror) provisions a Docker registry pull-through cache.
11+
3. The [networking module](https://registry.terraform.io/modules/sourcegraph/executors/aws/7.0.0/submodules/networking) provisions a network to be shared by the executor and Docker registry resources.
12+
4. The [credentials module](https://registry.terraform.io/modules/sourcegraph/executors/aws/7.0.0/submodules/credentials) provisions credentials required by the Sourcegraph instance to enable observability and auto-scaling of executors.
1313

14-
The [multiple-executors example](https://github.com/sourcegraph/terraform-aws-executors/blob/v6.12.0/examples/multiple-executors) uses the submodule directly to provision multiple executor resource groups performing different types of work. Follow this example if you are:
14+
The [multiple-executors example](https://github.com/sourcegraph/terraform-aws-executors/blob/v7.0.0/examples/multiple-executors) uses the submodule directly to provision multiple executor resource groups performing different types of work. Follow this example if you are:
1515

1616

1717
1. Provisioning executors for use with multiple features (e.g., both [auto-indexing](https://sourcegraph.com/docs/code_intelligence/explanations/auto_indexing) and [server-side batch changes](https://sourcegraph.com/docs/batch_changes/explanations/server_side)), or
1818
2. Provisioning resources for multiple Sourcegraph instances (e.g., test, prod)
1919

20-
This repository also provides a [root module](https://registry.terraform.io/modules/sourcegraph/executors/aws/6.12.0) combining the executors, network, and docker-mirror resources into an easier to use package.
20+
This repository also provides a [root module](https://registry.terraform.io/modules/sourcegraph/executors/aws/7.0.0) combining the executors, network, and docker-mirror resources into an easier to use package.
2121

22-
The [single-executor example](https://github.com/sourcegraph/terraform-aws-executors/blob/v6.12.0/examples/single-executor) uses the root module to provision a single executor type. Follow this example if you are deploying to a single Sourcegraph instance and using a single executors-backed feature.
22+
The [single-executor example](https://github.com/sourcegraph/terraform-aws-executors/blob/v7.0.0/examples/single-executor) uses the root module to provision a single executor type. Follow this example if you are deploying to a single Sourcegraph instance and using a single executors-backed feature.
2323

2424
## Requirements
2525

@@ -28,7 +28,7 @@ The [single-executor example](https://github.com/sourcegraph/terraform-aws-execu
2828
- 4.2.0 and above: `>= 1.1.0, < 2.0.0`
2929
- [hashicorp/aws](https://registry.terraform.io/providers/hashicorp/aws)
3030
- 4.1.0 and below: `~> 3.0.0`
31-
- 4.2.0 and above: `>= 3.0, < 6.12.0`
31+
- 4.2.0 and above: `>= 3.0, < 7.0.0`
3232

3333
## Setup
3434

examples/multiple-executors/main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ locals {
66

77
module "networking" {
88
source = "sourcegraph/executors/aws//modules/networking"
9-
version = "6.12.0" # LATEST
9+
version = "7.0.0" # LATEST
1010

1111
availability_zone = local.availability_zone
1212
randomize_resource_names = true
1313
}
1414

1515
module "docker-mirror" {
1616
source = "sourcegraph/executors/aws//modules/docker-mirror"
17-
version = "6.12.0" # LATEST
17+
version = "7.0.0" # LATEST
1818

1919
vpc_id = module.networking.vpc_id
2020
subnet_id = module.networking.subnet_id
@@ -25,7 +25,7 @@ module "docker-mirror" {
2525

2626
module "executors-codeintel" {
2727
source = "sourcegraph/executors/aws//modules/executors"
28-
version = "6.12.0" # LATEST
28+
version = "7.0.0" # LATEST
2929

3030
vpc_id = module.networking.vpc_id
3131
subnet_id = module.networking.subnet_id
@@ -43,7 +43,7 @@ module "executors-codeintel" {
4343

4444
module "executors-batches" {
4545
source = "sourcegraph/executors/aws//modules/executors"
46-
version = "6.12.0" # LATEST
46+
version = "7.0.0" # LATEST
4747

4848
vpc_id = module.networking.vpc_id
4949
subnet_id = module.networking.subnet_id

examples/private-single-executor/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ locals {
55

66
module "executors" {
77
source = "sourcegraph/executors/aws"
8-
version = "6.12.0" # LATEST
8+
version = "7.0.0" # LATEST
99

1010
availability_zone = local.availability_zone
1111
executor_instance_tag = "codeintel-prod"

examples/single-executor/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ locals {
55

66
module "executors" {
77
source = "sourcegraph/executors/aws"
8-
version = "6.12.0" # LATEST
8+
version = "7.0.0" # LATEST
99

1010
availability_zone = local.availability_zone
1111
executor_instance_tag = "codeintel-prod"

modules/docker-mirror/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ data "aws_ami" "latest_ami" {
4848

4949
filter {
5050
name = "name"
51-
values = ["sourcegraph-executors-docker-mirror-6-12-*"]
51+
values = ["sourcegraph-executors-docker-mirror-7-0-*"]
5252
}
5353

5454
filter {

modules/executors/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ data "aws_ami" "latest_ami" {
153153

154154
filter {
155155
name = "name"
156-
values = ["sourcegraph-executors-6-12-*"]
156+
values = ["sourcegraph-executors-7-0-*"]
157157
}
158158

159159
filter {

0 commit comments

Comments
 (0)