CiscoDevNet / appdynamics-charts

Helm charts for AppDynamics
https://appdynamics.github.io/appdynamics-charts/
Apache License 2.0
21 stars 38 forks source link

Adding releases / tags in repo #13

Open alexappd opened 3 years ago

alexappd commented 3 years ago

SUMMARY Having tagged releases would enable pulling the exact version with Terraform helm_chart provider: https://registry.terraform.io/providers/hashicorp/helm/latest/docs/resources/release

ADDITIONAL INFORMATION Without a release, a solution that we found is to get the whole repo content:

module "appdynamics_charts_repo" {
  source = "git::https://github.com/Appdynamics/appdynamics-charts.git"
}

output "cluster_agent_file" {
  value = "${path.module}/cluster-agent-0.1.16.tgz"
}