Skip to content

Commit

Permalink
Refactor bucket name to lowercase and update repo topics in configura…
Browse files Browse the repository at this point in the history
…tion files for CSVD and SCT-Engineering
  • Loading branch information
Your Name committed Jun 16, 2025
1 parent cabbe03 commit e9d0b32
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 2 deletions.
18 changes: 18 additions & 0 deletions .terraform_commits
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,23 @@
"commit_message": "Add repo topics for pip-config in default.tfvars",
"author": "arnol377",
"timestamp": "2025-04-04T17:10:52.321216"
},
{
"commit_hash": "cabbe0348f78ef1aaa702854626397d40f11824f",
"commit_message": "Add configuration files for CSVD and SCT-Engineering repositories\n\n- Created `csvd.json` and `csvd.tfvars` for CSVD organization with repository definitions and settings.\n- Created `sct-engineering.json` and `sct-engineering.tfvars` for SCT-Engineering organization with repository definitions and settings.",
"author": "arnol377",
"timestamp": "2025-04-21T14:37:56.928928"
},
{
"commit_hash": "cabbe0348f78ef1aaa702854626397d40f11824f",
"commit_message": "Add configuration files for CSVD and SCT-Engineering repositories\n\n- Created `csvd.json` and `csvd.tfvars` for CSVD organization with repository definitions and settings.\n- Created `sct-engineering.json` and `sct-engineering.tfvars` for SCT-Engineering organization with repository definitions and settings.",
"author": "arnol377",
"timestamp": "2025-05-01T14:37:03.590607"
},
{
"commit_hash": "cabbe0348f78ef1aaa702854626397d40f11824f",
"commit_message": "Add configuration files for CSVD and SCT-Engineering repositories\n\n- Created `csvd.json` and `csvd.tfvars` for CSVD organization with repository definitions and settings.\n- Created `sct-engineering.json` and `sct-engineering.tfvars` for SCT-Engineering organization with repository definitions and settings.",
"author": "arnol377",
"timestamp": "2025-06-16T12:27:41.585877"
}
]
2 changes: 1 addition & 1 deletion actions-bucket.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
locals {
base_bucket_name = "${var.github_org}-dev-ew-github-actions"
base_bucket_name = "${lower(var.github_org)}-dev-ew-github-actions"
east_bucket_name = "${local.base_bucket_name}-east"
kms_key_deletion_days = 30
kms_description = "KMS key for actions bucket @ ${var.github_org} encryption"
Expand Down
3 changes: 3 additions & 0 deletions automation-repos.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
{
"name": "terraform-github-repo-subdir",
"path": "../terraform-github-repo-subdir"
},
{
"path": "../terraform-aws-codebuild"
}
],
"settings": {
Expand Down
10 changes: 10 additions & 0 deletions varfiles/csvd.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,16 @@ repolist = [
"morpheus-infra",
]
},
{
description = "Terraform module repo for terraform-morpheus-database"
repo_org = "CSVD"
name = "docker-images"
is_template = false
is_private = false
repo_topics = [
"morpheus-infra",
]
},
{
description = "Terraform module repo for terraform-morpheus-efs"
repo_org = "CSVD"
Expand Down
24 changes: 23 additions & 1 deletion varfiles/sct-engineering.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,18 @@ repolist = [
is_template = false
is_private = false
repo_topics = [
"template-repos",
"eks-cluster-deployment",
]
},
{
description = "Github Repo for managing Template Repos through Lambda Functions"
repo_org = "SCT-Engineering"
name = "packer-pipeline"
enforce_prs = false
is_template = false
is_private = false
repo_topics = [
"lambda-deployment",
]
},
{
Expand All @@ -34,6 +45,17 @@ repolist = [
"template-repos",
]
},
{
description = "Terraform module for Template Repo Deployment through Lambda Functions"
repo_org = "SCT-Engineering"
name = "template-repos-lambda-deployment"
enforce_prs = false
is_template = false
import = false
repo_topics = [
"template-repos-lambda-deployment",
]
},
{
description = "Terraform module for EKS management"
repo_org = "SCT-Engineering"
Expand Down

0 comments on commit e9d0b32

Please sign in to comment.