feat: initial commit
- have been working on this for some time now
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user