kasm-terraform/oci/single_server/provider.tf
2024-02-12 22:45:26 +00:00

30 lines
566 B
HCL

terraform {
required_version = "~> 1.0"
required_providers {
oci = {
source = "oracle/oci"
version = "~> 5.0"
}
acme = {
source = "vancluever/acme"
version = "~> 2.0"
}
tls = {
source = "hashicorp/tls"
version = "~> 4.0"
}
}
}
provider "oci" {
tenancy_ocid = var.tenancy_ocid
user_ocid = var.user_ocid
fingerprint = var.fingerprint
private_key_path = var.private_key_path
region = var.region
}
provider "acme" {
server_url = local.letsencrypt_server_url
}