Skip to content

ritarock/terraform-provider-mackerel

This branch is 288 commits behind mackerelio-labs/terraform-provider-mackerel:main.

Folders and files

NameName
Last commit message
Last commit date
Aug 25, 2021
Sep 24, 2021
Aug 20, 2021
Aug 20, 2021
Mar 25, 2021
Mar 17, 2021
Aug 3, 2021
Aug 20, 2021
Aug 20, 2021
Aug 20, 2021
Feb 26, 2020

Repository files navigation

Terraform provider for mackerel.io

CI 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.0.1"
    }
  }
}

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_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.

About

Terraform provider for Mackerel

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 100.0%