This commit is contained in:
2025-03-26 10:52:39 -05:00
parent 6ab1d11d79
commit bc4d380c06
11 changed files with 136 additions and 6 deletions

32
terraform/dns/provider.tf Normal file
View File

@@ -0,0 +1,32 @@
# Configure the DNS Provider
provider "freeipa" {
host = "infra01.int.mk-labs.cloud"
username = "admin"
password = var.freeipa_password
insecure = true
}
variable "freeipa_server" {
description = "The server for the FreeIPA provider"
type = string
}
variable "freeipa_admin" {
description = "The admin username for the FreeIPA provider"
type = string
}
variable "freeipa_password" {
description = "The password for the FreeIPA provider"
type = string
sensitive = true
}
terraform {
required_providers {
freeipa = {
source = "rework-space-com/freeipa"
version = "5.0.0"
}
}
}