Skip to content

Commit

Permalink
terraform fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
sekka1 committed Sep 21, 2021
1 parent c15c350 commit 16d842d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
locals {
base_name = "kubernetes-external-secrets"
iam_policy_file = "iam-policy.tpl.json"
base_name = "kubernetes-external-secrets"
iam_policy_file = "iam-policy.tpl.json"
k8s_service_account_name = "kubernetes-external-secrets"
}

Expand All @@ -20,8 +20,8 @@ module "iam_assumable_role_admin" {
data "template_file" "iam_policy" {
template = file("${path.module}/iam-policy.tpl.json")
vars = {
awsAccountID = data.aws_caller_identity.current.account_id
awsRegion = data.aws_region.current.name
awsAccountID = data.aws_caller_identity.current.account_id
awsRegion = data.aws_region.current.name
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
variable helm_version {
variable "helm_version" {
type = string
default = "8.3.0"
description = "Helm chart version"
}

variable verify {
variable "verify" {
type = bool
default = false
description = "Verify the helm download"
}

variable "create_namespace" {
type = bool
default = true
type = bool
default = true
description = "Create namespace if it does not exist"
}

variable namespace {
variable "namespace" {
type = string
default = "kubernetes-external-secrets"
description = "Namespace to install in"
}

variable chart_name {
variable "chart_name" {
type = string
default = "kubernetes-external-secrets"
description = "Name to set the helm deployment to"
}

variable helm_values {
variable "helm_values" {
type = string
default = ""
description = "Additional helm values to pass in. These values would override the default in this module."
}

variable "environment_name" {
type = string
default = "env"
type = string
default = "env"
description = "An environment name to attach to some resources. Optional only needed if you are going to create more than one of these items in an AWS account"
}

Expand Down

0 comments on commit 16d842d

Please sign in to comment.