Some checks failed
CI / build (push) Failing after 12s
GitOrigin-RevId: 6370f6ea785709295b6abcf9c60717cacf3ac432
21 lines
412 B
HCL
21 lines
412 B
HCL
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"
|
|
}
|
|
}
|
|
}
|