Skip to content
This repository was archived by the owner on May 16, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions infrahouse-github-terraform.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ module "infrahouse-github-terraform-pem" {
providers = {
aws = aws.aws-303467602807-uw1
}
source = "registry.infrahouse.com/infrahouse/secret/aws"
version = "0.6.0"
source = "registry.infrahouse.com/infrahouse/secret/aws"
version = "1.1.1"

environment = local.environment
secret_description = "infrahouse-github-terraform App private key (pem)"
secret_name = "infrahouse-github-terraform-app-key"
writers = [
Expand Down
23 changes: 13 additions & 10 deletions secrets.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ module "actions-runner-pem" {
providers = {
aws = aws.aws-303467602807-uw1
}
source = "registry.infrahouse.com/infrahouse/secret/aws"
version = "1.0.1"
source = "registry.infrahouse.com/infrahouse/secret/aws"
version = "1.1.1"

environment = local.environment
secret_description = "A copy of infrahouse-github-terraform App private key (pem) for actions-runner tests"
secret_name_prefix = "action-runner-pem-"
Expand All @@ -45,7 +46,7 @@ module "actions-runner-pem-493370826424-uw1" {
aws = aws.aws-493370826424-uw1
}
source = "registry.infrahouse.com/infrahouse/secret/aws"
version = "1.0.1"
version = "1.1.1"
environment = local.environment
secret_description = "A copy of infrahouse-github-terraform App private key (pem) for actions-runner tests"
secret_name_prefix = "action-runner-pem-"
Expand All @@ -54,11 +55,12 @@ module "actions-runner-pem-493370826424-uw1" {


module "github-token" {
source = "infrahouse/secret/aws"
version = "1.0.3"
providers = {
aws = aws.aws-303467602807-uw1
}
source = "registry.infrahouse.com/infrahouse/secret/aws"
version = "1.1.1"

environment = local.environment
secret_description = "Classic GitHub token. Needed for action-runner tests"
secret_name_prefix = "github-token-"
Expand All @@ -71,11 +73,12 @@ module "github-token" {
}

module "openvpn-oauth-client-id" {
source = "infrahouse/secret/aws"
version = "1.1.0"
providers = {
aws = aws.aws-303467602807-uw1
}
source = "registry.infrahouse.com/infrahouse/secret/aws"
version = "1.1.1"

environment = local.environment
secret_description = "Get OAuth 2.0 Client IDs from https://console.cloud.google.com/auth/clients - the secret is used for CI tests in terraform-aws-openvpn"
secret_name_prefix = "openvpn-client-id-"
Expand All @@ -88,16 +91,16 @@ module "openvpn-oauth-client-id" {
}

module "anthropic_api_key" {
source = "infrahouse/secret/aws"
version = "1.1.0"
providers = {
aws = aws.aws-303467602807-uw1
}
source = "registry.infrahouse.com/infrahouse/secret/aws"
version = "1.1.1"

environment = local.environment
secret_description = "ANTHROPIC_API_KEY token for pull request code reviews"
secret_name_prefix = "ANTHROPIC_API_KEY-"
writers = [
tolist(data.aws_iam_roles.sso-admin.arns)[0],
]
}

Loading