feat: initial commit

- have been working on this for some time now
This commit is contained in:
2025-05-30 22:36:55 +10:00
commit cb67816eee
188 changed files with 6145 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
locals {
puppet_cert_ca = get_env("PUPPET_CERT_CA")
puppet_cert_pub = get_env("PUPPET_CERT_PUB")
puppet_cert_priv = get_env("PUPPET_CERT_PRIV")
puppetdb_url = get_env("PUPPETDB_URL")
puppetca_url = get_env("PUPPETCA_URL")
cobbler_url = get_env("COBBLER_URL")
cobbler_password = get_env("COBBLER_PASSWORD")
cobbler_username = get_env("COBBLER_USERNAME")
}
inputs = {
puppet_cert_ca = local.puppet_cert_ca
puppet_cert_pub = local.puppet_cert_pub
puppet_cert_priv = local.puppet_cert_priv
puppetdb_url = local.puppetdb_url
puppetca_url = local.puppetca_url
cobbler_url = local.cobbler_url
cobbler_username = local.cobbler_username
cobbler_password = local.cobbler_password
}