Skip to content

kiwicom/terraform-provider-montecarlo

Repository files navigation

Terraform Provider Monte Carlo

GitHub issues GitHub go.mod Go version) last-commit master cicd status GitHub release Go Report Card coverage milestone

Terraform

The Terraform Provider Monte Carlo enables seamless integration with the Monte Carlo data reliability platform, allowing users to automate infrastructure provisioning and configuration. With this provider, managing data reliability in your applications becomes effortless, ensuring robust and dependable data pipelines. Simplify your infrastructure workflows and enhance your data reliability with this awesome provider.

Quick Starts

Installation

To use the Terraform Provider Monte Carlo, include it in your Terraform project by adding the following configuration to your versions.tf file:

terraform {
  required_providers {
    monte_carlo = {
      source  = "kiwicom/montecarlo"
      version = "~> 0.0.1"
    }
  }
}

Provider initialization with Account Service Key, which is used to authenticate API calls of this provider when communicating with Monte Carlo.

provider "monte_carlo" {
  account_service_key = {
    id    = var.montecarlo_api_key_id     #(secret)
    token = var.montecarlo_api_key_token  #(secret)
  }
}

For more information and examples checkout provider documentation either in the docs folder or at Terraform Registry.

This Terraform provider is using Protocol Version 6, making it compatible with Terraform CLI of version 1.0 and later. Supported Operating systems and architecture combinations are following:

Operating System amd64 386 arm arm64
Windows
Linux
Freebsd
Darwin

Examples

To get started, navigate to the examples folder in this repository to find detailed Terraform files for each component provided by the Terraform Provider Monte Carlo.

License

license

MIT License

Copyright (c) 2023 Kiwi.com

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.