» Cobbler Provider
The Cobbler provider is used to interact with a locally installed Cobbler service. The provider needs to be configured with the proper credentials before it can be used.
Use the navigation to the left to read about the available resources.
» Example Usage
# Configure the Cobbler provider
provider "cobbler" {
username = "${var.cobbler_username}"
password = "${var.cobbler_password}"
url = "${var.cobbler_url}"
}
# Create a Cobbler Distro
resource "cobbler_distro" "ubuntu-1404-x86_64" {
# ...
}
» Argument Reference
The following arguments are supported:
-
username
- (Required) The username to the Cobbler service. This can also be specified with theCOBBLER_USERNAME
shell environment variable. -
password
- (Required) The password to the Cobbler service. This can also be specified with theCOBBLER_PASSWORD
shell environment variable. -
url
- (Required) The url to the Cobbler service. This can also be specified with theCOBBLER_URL
shell environment variable. -
insecure
- (Optional) Ignore SSL certificate warnings and errors. This can also be specified with theCOBBLER_INSECURE
shell environment variable. -
cacert_file
- (Optional) The path or contents of an SSL CA certificate. This can also be specified with theCOBBLER_CACERT_FILE
shell environment variable.