diff --git a/README.md b/README.md index 1eea9de..de2fce1 100644 --- a/README.md +++ b/README.md @@ -30,9 +30,9 @@ Create `module.tf` to call the module from terraform registry, then modify it un ```hcl module "helm_deploy" { source = "fuchicorp/chart/helm" - remote_chart = "true" ## Set to true for remote chart + remote_chart = true ## Set to true for remote chart chart_repo = "https://github.io/helm-charts" ## Provide repository url - enabled = "true" ## Enable to deploy the chart + enabled = true ## Enable to deploy the chart deployment_name = "example-deployment-name" ## Release name in the namespace deployment_environment = "dev" ## Kubernetes Namespace deployment_path = "example-remote-name" ## Name of the remote chart @@ -59,8 +59,8 @@ module "helm_deploy_local" { deployment_name = "my-example-chart" ## Release name in the namespace deployment_environment = "dev" ## Kubernetes Namespace deployment_path = "charts/my-example-chart" ## Remote chart location - remote_chart = "false" ## Set to false for local chart - enabled = "true" ## Enable to deploy the chart + remote_chart = false ## Set to false for local chart + enabled = true ## Enable to deploy the chart template_custom_vars = { deployment_endpoint = "my-example-chart.domain.com" deployment_image = "nginx" @@ -80,7 +80,7 @@ ingress: enabled: true annotations: {} # kubernetes.io/ingress.class: nginx - # kubernetes.io/tls-acme: "true" + # kubernetes.io/tls-acme: true hosts: - host: ${deployment_endpoint} ## my-example-chart.domain.com paths: [] @@ -104,8 +104,8 @@ module "helm_deploy_remote" { deployment_environment = "dev" deployment_path = "grafana/grafana" chart_repo = "https://grafana.github.io/helm-charts" - enabled = "true" - remote_chart = "true" + enabled = true + remote_chart = true release_version = "6.22.0" remote_override_values = <