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. |
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: [email protected]
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)
}
}
account_service_key
(Attributes) Monte Carlo generated Account Service Key used to authenticate API calls of this provider. Should not be confused with personal API key.
For more information: https://docs.getmontecarlo.com/docs/creating-an-api-token#creating-an-api-key
(see below for nested schema)
Required:
id
(String, Sensitive) Monte Carlo Account service key ID.token
(String, Sensitive) Monte Carlo Account service key token.