This provider allow use Terraform to handle Blameless resources.
- Terraform
- A Blameless API key
Terraform uses the Terraform Registry to download and install providers. To install
this provider, copy and paste the following code into your Terraform configuration. Then, run terraform init
.
terraform {
required_providers {
blameless = {
version = "~> 1.0.0"
source = "blameless/blameless"
}
}
}
provider "blameless" {
instance = var.blameless_instance
key = var.blameless_key
}
$ terraform init
Generate an API token in the Blamless Identity Management - Key Management section. Then please provide your API key and instance URL by either:
- Putting the values in a
terraform.tfvars
file
blameless_instance = "{{blameless_instance}}"
blameless_key = "{{blameless_api_key}}"
- Setting the environment variables
BLAMELESS_INSTANCE
andBLAMELESS_KEY
We appreciate feedback and contribution to this repo! Before you get started, please see the following:
To provide feedback or report a bug, please raise an issue on our issue tracker.