/terraform-provider-mackerel

Terraform provider for Mackerel

Primary LanguageGoApache License 2.0Apache-2.0

Terraform provider for mackerel.io

Lint acceptance test Coverage Status

A Terraform provider for mackerel.io.

Requirements

Terraform >= v0.14

Usage example

Terraform 0.14 and later

terraform {
  required_providers {
    mackerel = {
      source  = "mackerelio-labs/mackerel"
      version = "~> 0.3.0"
    }
  }
}

resource "mackerel_service" "app" {
  name = "app"
}

resource "mackerel_role" "compute" {
  service = mackerel_service.app.name
  name    = "ecs"
}

Authentication

Mackerel terraform provider offers two ways of setting credential.

Environment Variables

You can provide your Mackerel API key using environment variables, MACKEREL_APIKEY or MACKEREL_API_KEY.

Static credentials

Static credentials can be provided by adding mackerel_api_key.

Usage:

variable "mackerel_api_key" {
}

provider "mackerel" {
  api_key = var.mackerel_api_key
}

Acknowledgements

We thank @xcezx and @kjmkznr for contributing to terraform-provider-mackerel.

License

Copyright 2021 Tsuyoshi Maekawa

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.