Converting backend provider helm config to use config.yaml
Some checks failed
Ansible Linting / ansible-lint (push) Failing after 6s
Secops Linting and Safety Checks / checkov-scan-s3 (push) Failing after 18s

This commit is contained in:
shockrah 2025-09-27 14:38:26 -07:00
parent fd9bd290af
commit 34e1f6afdf
2 changed files with 8 additions and 2 deletions

View File

@ -50,7 +50,6 @@ provider kubernetes {
provider helm { provider helm {
kubernetes = { kubernetes = {
host = data.vultr_kubernetes.athens.endpoint config_path = "config.yaml"
cluster_ca_certificate = data.vultr_kubernetes.athens.cluster_ca_certificate
} }
} }

View File

@ -0,0 +1,7 @@
resource helm_release nginx {
name = "ingress-nginx"
repository = "https://kubernetes.github.io/ingress-nginx"
chart = "ingress-nginx"
namespace = "ingress-nginx"
create_namespace = true
}