Skip to content

Commit

Permalink
fix name of the helm chart
Browse files Browse the repository at this point in the history
  • Loading branch information
askulkarni2 committed Oct 29, 2024
1 parent 23cdab2 commit e6f4e87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws-neuron-device-plugin.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
resource "helm_release" "aws_neuron_device_plugin" {
count = var.enable_aws_neuron_device_plugin ? 1 : 0

name = try(var.aws_neuron_device_plugin_helm_config["name"], "neuron-device-plugin")
name = try(var.aws_neuron_device_plugin_helm_config["name"], "neuron-helm-chart")
repository = try(var.aws_neuron_device_plugin_helm_config["repository"], null)
chart = try(var.aws_neuron_device_plugin_helm_config["chart"], "oci://public.ecr.aws/neuron/neuron-helm-chart")
version = try(var.aws_neuron_device_plugin_helm_config["version"], "1.0.0")
Expand Down

0 comments on commit e6f4e87

Please sign in to comment.