Skip to content

Commit

Permalink
terraform fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
inductor committed May 22, 2023
1 parent 7cd7132 commit 1550d99
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
18 changes: 18 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,19 @@
.idea/

# Local .terraform directories
**/.terraform/*

# .tfstate files
**/*.tfstate
**/*.tfstate.*

# Exclude all .tfvars files, which are likely to contain sensitive data, such as
# password, private keys, and other secrets. These should not be part of version
# control as they are data points which are potentially sensitive and subject
# to change depending on the environment.
**/*.tfvars
**/*.tfvars.json

# Ignore CLI configuration files
**/.terraformrc
**/terraform.rc
4 changes: 2 additions & 2 deletions terraform/onp_cluster_minecraft_secrets.tf
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ resource "kubernetes_secret" "onp_minecraft_prod_mariadb_root_password" {
}

data = {
"root-password" = var.minecraft__prod_mariadb_root_password
"root-password" = var.minecraft__prod_mariadb_root_password
"mcserver-password" = var.minecraft__prod_mariadb_mcserver_password
}

Expand All @@ -84,7 +84,7 @@ resource "kubernetes_secret" "onp_minecraft_debug_mariadb_root_password" {
}

data = {
"root-password" = var.minecraft__debug_mariadb_root_password
"root-password" = var.minecraft__debug_mariadb_root_password
"mcserver-password" = var.minecraft__debug_mariadb_mcserver_password
}

Expand Down
4 changes: 2 additions & 2 deletions terraform/onp_cluster_secrets.tf
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ resource "kubernetes_secret" "minio_prod_access_secret" {
}

data = {
"MINIO_ACCESS_KEY" = var.minio_prod_access_key
"MINIO_ACCESS_KEY" = var.minio_prod_access_key
"MINIO_ACCESS_SECRET" = var.minio_prod_access_secret
}

Expand All @@ -108,7 +108,7 @@ resource "kubernetes_secret" "minio_debug_access_secret" {
}

data = {
"MINIO_ACCESS_KEY" = var.minio_debug_access_key
"MINIO_ACCESS_KEY" = var.minio_debug_access_key
"MINIO_ACCESS_SECRET" = var.minio_debug_access_secret
}

Expand Down

0 comments on commit 1550d99

Please sign in to comment.