FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

cobbler_system

Manages a System within Cobbler.

Example Usage

resource "cobbler_system" "my_system" {
  name = "my_system"
  profile = "${cobbler_profile.my_profile.name}"
  name_servers = ["8.8.8.8", "8.8.4.4"]
  comment = "I'm a system"

  interface {
    name = "eth0"
    mac_address = "aa:bb:cc:dd:ee:ff"
    static = true
    ip_address = "1.2.3.4"
    netmask = "255.255.255.0"
  }

  interface {
    name = "eth1"
    mac_address = "aa:bb:cc:dd:ee:fa"
    static = true
    ip_address = "1.2.3.5"
    netmask = "255.255.255.0"
  }
}

Argument Reference

The following arguments are supported:

The interface block supports:

Attribute Reference

All optional attributes listed above are also exported.


See the source of this document at Terraform.io