Switch git providers for loadtesting tf (#34180)

untested end-to-end but works as a replacement for plans and doesn't
require a local arm64 build to work.

Co-authored-by: Jorge Falcon <22119513+BCTBB@users.noreply.github.com>
This commit is contained in:
Robert Fairburn 2025-10-23 13:53:13 -05:00 committed by GitHub
parent 954b3510a7
commit 30c4798ec6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 16 additions and 16 deletions

View file

@ -185,7 +185,7 @@ terraform workspace delete <workspace_name>
| [aws_secretsmanager_secret.license](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/secretsmanager_secret) | data source |
| [aws_secretsmanager_secret_version.enroll_secret](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/secretsmanager_secret_version) | data source |
| [docker_registry_image.dockerhub](https://registry.terraform.io/providers/kreuzwerker/docker/latest/docs/data-sources/registry_image) | data source |
| [git_repository.tf](https://registry.terraform.io/providers/paultyng/git/latest/docs/data-sources/repository) | data source |
| [git_repository.tf](https://registry.terraform.io/providers/metio/git/latest/docs/data-sources/repository) | data source |
| [terraform_remote_state.shared](https://registry.terraform.io/providers/hashicorp/terraform/latest/docs/data-sources/remote_state) | data source |
## Inputs

View file

@ -2,7 +2,7 @@ data "aws_caller_identity" "current" {}
data "aws_region" "current" {}
data "git_repository" "tf" {
path = "${path.module}/../../../../"
directory = "${path.module}/../../../../"
}
data "aws_acm_certificate" "certificate" {

View file

@ -9,8 +9,8 @@ terraform {
version = "~> 2.16.0"
}
git = {
source = "paultyng/git"
version = "~> 0.1.0"
source = "metio/git"
version = "2025.10.10"
}
}
backend "s3" {
@ -64,4 +64,4 @@ provider "docker" {
}
}
provider "git" {}
provider "git" {}

View file

@ -21,8 +21,8 @@ terraform {
version = "~> 2.16.0"
}
git = {
source = "paultyng/git"
version = "~> 0.1.0"
source = "metio/git"
version = "2025.10.10"
}
}
backend "s3" {
@ -54,7 +54,7 @@ provider "docker" {
provider "git" {}
data "git_repository" "tf" {
path = "${path.module}/../../../"
directory = "${path.module}/../../../"
}
data "terraform_remote_state" "shared" {

View file

@ -135,7 +135,7 @@ terraform workspace delete <workspace_name>
| [aws_ecr_repository.fleet](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/ecr_repository) | data source |
| [aws_region.current](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/region) | data source |
| [docker_registry_image.dockerhub](https://registry.terraform.io/providers/kreuzwerker/docker/latest/docs/data-sources/registry_image) | data source |
| [git_repository.tf](https://registry.terraform.io/providers/paultyng/git/latest/docs/data-sources/repository) | data source |
| [git_repository.tf](https://registry.terraform.io/providers/metio/git/latest/docs/data-sources/repository) | data source |
| [terraform_remote_state.infra](https://registry.terraform.io/providers/hashicorp/terraform/latest/docs/data-sources/remote_state) | data source |
| [terraform_remote_state.shared](https://registry.terraform.io/providers/hashicorp/terraform/latest/docs/data-sources/remote_state) | data source |

View file

@ -3,7 +3,7 @@ data "aws_caller_identity" "current" {}
data "aws_region" "current" {}
data "git_repository" "tf" {
path = "${path.module}/../../../../"
directory = "${path.module}/../../../../"
}
module "osquery_perf" {

View file

@ -9,8 +9,8 @@ terraform {
version = "~> 2.16.0"
}
git = {
source = "paultyng/git"
version = "~> 0.1.0"
source = "metio/git"
version = "2025.10.10"
}
}
backend "s3" {
@ -81,4 +81,4 @@ provider "docker" {
}
}
provider "git" {}
provider "git" {}

View file

@ -20,8 +20,8 @@ terraform {
version = "~> 2.16.0"
}
git = {
source = "paultyng/git"
version = "~> 0.1.0"
source = "metio/git"
version = "2025.10.10"
}
}
backend "s3" {
@ -41,7 +41,7 @@ terraform {
data "aws_caller_identity" "current" {}
data "git_repository" "tf" {
path = "${path.module}/../../../../"
directory = "${path.module}/../../../../"
}
resource "random_pet" "main" {