1.2 KiB
1.2 KiB
layout | page_title | sidebar_current | description |
---|---|---|---|
cobbler | Provider: Cobbler | docs-cobbler-index | The Cobbler provider is used to interact with a locally installed, Cobbler service. |
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.