Skip to content

Repo cleanup #23

Merged
merged 35 commits into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
accfb48
Refactor image pipeline module names and update workflows
Aug 15, 2024
9741a63
Refactor image pipeline module names and update workflows
Aug 15, 2024
e6ccf0e
Refactor image pipeline module names and update workflows
Aug 20, 2024
cb6d484
Refactor image pipeline module names and update workflows
Aug 20, 2024
541131a
chore: Update module name in sandbox.tf
Aug 20, 2024
28bd095
chore: Update module source in sandbox.tf
Aug 20, 2024
66e6caa
first test
gomez385 Oct 1, 2024
e0692bf
make fix
gomez385 Oct 1, 2024
18eff8e
make fix
gomez385 Oct 1, 2024
bd7eae2
make fix
gomez385 Oct 1, 2024
fd76b31
make fix
gomez385 Oct 1, 2024
882465e
make fix
gomez385 Oct 1, 2024
d57284b
make fix
gomez385 Oct 1, 2024
89627f4
Empty
gomez385 Oct 1, 2024
7b54166
make fix
gomez385 Oct 1, 2024
c25ebb2
Empty
gomez385 Oct 1, 2024
ee58694
Update terraform_plan.yaml
arnol377 Oct 1, 2024
508e975
make fix
gomez385 Oct 1, 2024
2f4cfb7
make fix
gomez385 Oct 1, 2024
d455c5b
make fix
gomez385 Oct 1, 2024
cae2331
make fix
gomez385 Oct 1, 2024
b89c165
make fix
gomez385 Oct 1, 2024
b37a747
make fix
gomez385 Oct 1, 2024
96aab09
make fix
gomez385 Oct 1, 2024
ac30e94
make fix
gomez385 Oct 1, 2024
25ba273
make fix
gomez385 Oct 1, 2024
6296b58
make fix
gomez385 Oct 1, 2024
83785c7
make fix
gomez385 Oct 1, 2024
1ab25be
pushing latest
arnol377 Oct 2, 2024
41b3579
Merge branch 'jwt_python' of github.e.it.census.gov:CSVD/automation-r…
arnol377 Oct 2, 2024
d0573a4
Merge branch 'main' into repo_cleanup
gomez385 Oct 7, 2024
4f26fa9
uypdating
arnol377 Oct 7, 2024
f52cb8b
Merge branch 'repo_cleanup' of github.e.it.census.gov:CSVD/automation…
arnol377 Oct 7, 2024
d6e9731
Merge branch 'main' of github.e.it.census.gov:CSVD/automation-repos i…
arnol377 Oct 10, 2024
ced57e3
merging
arnol377 Oct 10, 2024
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
5 changes: 5 additions & 0 deletions imported-repos.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module "netbackup_automation_platform" {
source = "HappyPathway/gh-actions/importer"
version = "0.0.34"
github_repo_topics = []
vulnerability_alerts = false
public_repo = {
Expand All @@ -10,5 +11,9 @@ module "netbackup_automation_platform" {
name = "netbackup-automation-platform"
org = "CSVD"
topics = ["automation-platform"]
collaborators = {
"littl381" = "admin"
"arnol377" = "admin"
}
}
}
2 changes: 2 additions & 0 deletions repolist.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,7 @@ module "repo_list" {
enforce_prs = each.value.enforce_prs
collaborators = local.collaborators
pull_request_bypassers = local.pull_request_bypassers
github_is_private = each.value.is_private
github_org_teams = local.github_organization_teams
}

13 changes: 13 additions & 0 deletions sandbox.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,17 @@ module "sandbox" {
)
}
]
secrets = [
for secret in [for secret in local.secrets : secret if secret != "AWS_ACCESS_KEY_ID"] :
{
name = replace(secret, "GITHUB", "GH")
value = lookup(module.env_var, secret).value
}
]
vars = [
{
name = "AWS_ACCESS_KEY_ID"
value = lookup(module.env_var, "AWS_ACCESS_KEY_ID").value
}
]
}
41 changes: 11 additions & 30 deletions varfiles/default.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ repolist = [
description = "Managing AWS CSVD Secrets"
repo_org = "CSVD"
name = "aws-secrets"
is_private = false
repo_topics = [
"terraform-tools"
]
Expand All @@ -15,48 +16,28 @@ repolist = [
description = "Tools for managing Terraform"
repo_org = "CSVD"
name = "tf-tools"
is_private = false
repo_topics = [
"terraform-tools"
]
},
{
description = "Composite Action for Terraform-Validate"
description = "morpheus-repos"
repo_org = "CSVD"
name = "terraform-validate"
name = "morpheus-repos"
is_private = false
repo_topics = [
"composite-action"
"morpheus"
]
},
{
description = "Composite Action for Terraform-Plan"
description = "supervisord-conf"
repo_org = "CSVD"
name = "terraform-plan"
name = "supervisord-conf"
is_private = false
repo_topics = [
"composite-action"
]
},
{
description = "Composite Action for Terraform-Apply"
repo_org = "CSVD"
name = "terraform-apply"
repo_topics = [
"composite-action"
]
},
{
description = "Composite Action for Terraform-Apply"
repo_org = "CSVD"
name = "terraform-init"
repo_topics = [
"composite-action"
]
},
{
description = "Composite Action for AWS Auth"
repo_org = "CSVD"
name = "aws-auth"
repo_topics = [
"composite-action"
"supervisord",
"automation"
]
}
]
Expand Down
1 change: 1 addition & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ variable "repolist" {
create_codeowners = optional(bool, false)
enforce_prs = optional(bool, false)
repo_topics = optional(list(string), ["terraform-workspace"])
is_private = optional(bool, false)
}))
default = []
}