Update clobber provider

This commit is contained in:
Seth Vargo 2017-04-10 12:15:47 -04:00
parent a4f78613b5
commit 11ce92e9ca
No known key found for this signature in database
GPG Key ID: C921994F9C27E0FF
6 changed files with 11 additions and 11 deletions

View File

@ -17,7 +17,7 @@ Use the navigation to the left to read about the available resources.
## Example Usage
```
```hcl
# Configure the Cobbler provider
provider "cobbler" {
username = "${var.cobbler_username}"

View File

@ -6,13 +6,13 @@ description: |-
Manages a distribution within Cobbler.
---
# cobbler\_distro
# cobbler_distro
Manages a distribution within Cobbler.
## Example Usage
```
```hcl
resource "cobbler_distro" "ubuntu-1404-x86_64" {
name = "foo"
breed = "ubuntu"

View File

@ -6,13 +6,13 @@ description: |-
Manages a Kickstart File within Cobbler.
---
# cobbler\_kickstart\_file
# cobbler_kickstart_file
Manages a Kickstart File within Cobbler.
## Example Usage
```
```hcl
resource "cobbler_kickstart_file" "my_kickstart" {
name = "/var/lib/cobbler/kickstarts/my_kickstart.ks"
body = "<content of kickstart file>"

View File

@ -6,13 +6,13 @@ description: |-
Manages a Profile within Cobbler.
---
# cobbler\_profile
# cobbler_profile
Manages a Profile within Cobbler.
## Example Usage
```
```hcl
resource "cobbler_profile" "my_profile" {
name = "/var/lib/cobbler/snippets/my_snippet"
distro = "ubuntu-1404-x86_64"

View File

@ -6,13 +6,13 @@ description: |-
Manages a Snippet within Cobbler.
---
# cobbler\_snippet
# cobbler_snippet
Manages a Snippet within Cobbler.
## Example Usage
```
```hcl
resource "cobbler_snippet" "my_snippet" {
name = "/var/lib/cobbler/snippets/my_snippet"
body = "<content of snippet>"

View File

@ -6,13 +6,13 @@ description: |-
Manages a System within Cobbler.
---
# cobbler\_system
# cobbler_system
Manages a System within Cobbler.
## Example Usage
```
```hcl
resource "cobbler_system" "my_system" {
name = "my_system"
profile = "${cobbler_profile.my_profile.name}"