Skip to content

Commit

Permalink
feat: monthly fixes, small refactor and other fixes (#30)
Browse files Browse the repository at this point in the history
feat: monthly updates
feat: move vault-init to initialization and vault-configuration to configuration
feat: add .gitignore for terraform modules and terraform lock file
  • Loading branch information
venkatamutyala authored May 14, 2023
1 parent 6d6643f commit fb6f6e9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions captain-repo.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,21 @@ module "captain_repository" {
"platform.yaml" = module.glueops_platform_helm_values[each.value.environment_name].helm_values
"README.md" = module.tenant_readmes[each.value.environment_name].tenant_readme
"terraform/kubernetes/.gitkeep" = ""
"terraform/vault/vault-init/main.tf" = <<EOT
".gitignore" = <<EOT
.terraform
.terraform.lock.hcl
EOT
"terraform/vault/initialization/main.tf" = <<EOT
module "initialize_vault_cluster" {
source = "git::https://github.com/GlueOps/terraform-module-kubernetes-hashicorp-vault-initialization.git?ref=v0.3.0"
}
EOT
"terraform/vault/vault-config/main.tf" = <<EOT
"terraform/vault/configuration/main.tf" = <<EOT
module "configure_vault_cluster" {
source = "git::https://github.com/GlueOps/terraform-module-kubernetes-hashicorp-vault-configuration.git?ref=0.4.3"
source = "git::https://github.com/GlueOps/terraform-module-kubernetes-hashicorp-vault-configuration.git?ref=v0.4.3"
oidc_client_secret = "${random_password.dex_vault_client_secret[each.key].result}"
captain_domain = "${each.value.environment_name}.${aws_route53_zone.main.name}"
org_team_policy_mappings = [
Expand Down
2 changes: 1 addition & 1 deletion modules/tenant-readme/0.1.0/readme.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ locals {
codespace_version = "v0.23.0"
argocd_crd_version = "v2.6.7"
argocd_helm_chart_version = "5.29.1"
glueops_platform_version = "0.12.0"
glueops_platform_version = "0.13.2"
tools_version = "v0.1.1"
}

Expand Down

0 comments on commit fb6f6e9

Please sign in to comment.