Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 1.91 KB

File metadata and controls

51 lines (38 loc) · 1.91 KB
page_title subcategory description
Monte Carlo Provider
Index
This open-source Terraform provider enables users to seamlessly and quickly integrate the Monte Carlo https://www.montecarlodata.com/ data reliabillity platform into their infrastructure as a code (IaC) workflows. Provider ensures this functionality by communicating with Monte Carlo via its GraphQL API.

Monte Carlo Provider

This open-source Terraform provider enables users to seamlessly and quickly integrate the Monte Carlo data reliabillity platform into their infrastructure as a code (IaC) workflows.

  • Learn more about Monte Carlo functionalities.
  • Conttribute to the repository implementing this provider.

Contact: ndopjera@gmail.com

Example Usage

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

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

Schema

Required

Nested Schema for account_service_key

Required:

  • id (String, Sensitive) Monte Carlo Account service key ID.
  • token (String, Sensitive) Monte Carlo Account service key token.