yesod-mirror/k8s/bootstrap/providers.tf

22 lines
412 B
Terraform
Raw Normal View History

provider "matchbox" {
endpoint = "192.168.0.101:8081"
client_cert = file("~/.matchbox/client.crt")
client_key = file("~/.matchbox/client.key")
ca = file("~/.matchbox/ca.crt")
}
provider "ct" {}
terraform {
required_providers {
ct = {
source = "poseidon/ct"
version = "0.13.0"
}
matchbox = {
source = "poseidon/matchbox"
version = "0.5.2"
}
}
}