sleeping-barber / terraform-provider-honeycombio

A Terraform provider for Honeycomb.io

Home Page:https://registry.terraform.io/providers/kvrhdn/honeycombio/latest

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Honeycomb.io Terraform Provider

CI Go Report Card codecov Terraform Registry

A Terraform provider for Honeycomb.io.

📄 Check out the documentation
🏗️ Examples can be found in example/
❓ Questions? Feel free to create a new issue or find us on the Honeycomb Pollinators Slack, channel #terraform-provider (you can find a link to request an invite here)
🔧 Want to contribute? Check out CONTRIBUTING.md

Using the provider

If you are using Terraform 0.13, you can install the provider directly from the Terraform Registry. To use the provider with Terraform 0.12 you'll have to install the provider manually.

Terraform 0.13

Add the following block in your Terraform config. For more information, refer to Automatic installation of third-party providers. This will download the provider from the Terraform Registry:

terraform {
  required_providers {
    honeycombio = {
      source  = "kvrhdn/honeycombio"
      version = "~> 0.1.0"
    }
  }
}

Terraform 0.12

To use this provider with Terraform 0.12, you will need to download and install the executable yourself. You can download the latest version from the releases page or build it directly from source:

# clone the repository and run:
go build -o terraform-provider-honeycombio

Once you have the executable, you can either place it in your working directory (the directory you run terraform init) or install it is a third-party plugin:

# for Linux and macOS
mkdir -p ~/.terraform.d/plugins/
cp terraform-provider-honeycombio ~/.terraform.d/plugins/

License

This software is distributed under the terms of the MIT license, see LICENSE for details.

About

A Terraform provider for Honeycomb.io

https://registry.terraform.io/providers/kvrhdn/honeycombio/latest

License:MIT License


Languages

Language:Go 94.6%Language:HCL 4.1%Language:Makefile 1.3%Language:Shell 0.1%