newrelic / aws-log-ingestion

AWS Serverless Application that sends log data from CloudWatch Logs to New Relic Infrastructure - Cloud Integrations.
Apache License 2.0
52 stars 77 forks source link

How to reference to a specific version number in the module? #110

Open carlosmedina-io opened 7 months ago

carlosmedina-io commented 7 months ago

Question.

Hi there, not sure if this is the correct place to ask this, but, I'd like to know how should be the accurate way to set a specific version to the source property in the configuration of the module.

for example I'ld like point to the version 2.8.0 which uses python 3.9. When I set the source property pointing to "github.com/newrelic/aws-log-ingestion", it takes the latest version of the module which uses with python 3.11.

module "newrelic_log_ingestion" {
  source             = "github.com/newrelic/aws-log-ingestion"
  nr_license_key     = "{{YOUR_LICENSE_KEY}}"
}

Thanks in advance.