0
0
llucycodes42
The code creates a Cobbler provider that stores the username, password, and URL for the application in the variables named var.cobbler, var.cobbler_password, and var.cobbler_url.
Shortcut: tf_cobbler
provider "cobbler" {
username = "\${var.cobbler}"
password = "\${var.cobbler_password}"
url = "\${var.cobbler_url}"
}