terraform/website/source/docs/providers/cobbler/r/kickstart_file.html.markdown

30 lines
676 B
Markdown
Raw Normal View History

---
layout: "cobbler"
page_title: "Cobbler: cobbler_kickstart_file"
sidebar_current: "docs-cobbler-resource-kickstart_file"
description: |-
Manages a Kickstart File within Cobbler.
---
2017-04-10 18:15:47 +02:00
# cobbler_kickstart_file
Manages a Kickstart File within Cobbler.
## Example Usage
2017-04-10 18:15:47 +02:00
```hcl
resource "cobbler_kickstart_file" "my_kickstart" {
name = "/var/lib/cobbler/kickstarts/my_kickstart.ks"
body = "<content of kickstart file>"
}
```
## Argument Reference
The following arguments are supported:
* `body` - (Required) The body of the kickstart file.
* `name` - (Required) The name of the kickstart file. This must be
the full path, including `/var/lib/cobbler/kickstarts`.