FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

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:


See the source of this document at Terraform.io