Skip to content

FireTail-io/terraform-provider-get

terraform-provider-get

a Terraform provider for downloading remote artifacts via go-getter

Getting Started

terraform {
  required_providers {
    aws = {
      source  = "hashicorp/aws"
      version = ">= 3.0.0"
    }
    get = {
      source  = "firetail-io/get"
      version = "0.0.2"
    }
  }
}

# download lambda artifact
resource "get_artifact" "benthos_serverless" {
  url             = "https://github.com/Jeffail/benthos/releases/download/v3.62.0/benthos-lambda_3.62.0_linux_amd64.zip"
  checksum        = "file:https://github.com/Jeffail/benthos/releases/download/v3.62.0/benthos_3.62.0_checksums.txt"
  dest            = "benthos-lambda_3.62.0_linux_amd64.zip"
  mode            = "file"
  archive         = false
  workdir         = abspath(path.root)
  repo_org        = "flitnetics"
  repo_name       = "jaeger-objectstorage"
  release_version = "v0.0.1"
  release_file    = "jaeger-objectstorage-0.0.1.zip"
  token           = "ghp_8abdefg" # github token
}

# provision lambda function
resource "aws_lambda_function" "this" {
  filename         = get_artifact.benthos_serverless.dest
  function_name    = var.name
  handler          = "benthos-lambda"
  role             = var.role_arn
  runtime          = "go1.x"
  source_code_hash = get_artifact.benthos_serverless.sum64
  timeout          = 30

  environment {
    variables = {
      BENTHOS_CONFIG = <<-YAML
        output:
          broker:
            pattern: fan_out
            outputs:
            - kafka:
                addresses:
                - todo:9092
                client_id: benthos_serverless
                topic: example_topic
            - sync_response: {}
      YAML
    }
  }
}

License

Licensed under the MIT License
Copyright (c) 2023 FireTail

About

No description, website, or topics provided.

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages