Skip to content
This repository was archived by the owner on Dec 5, 2020. It is now read-only.

Files

Latest commit

d81d44e · Aug 28, 2019

History

History
46 lines (29 loc) · 1.4 KB

systemd_unit.html.md

File metadata and controls

46 lines (29 loc) · 1.4 KB
layout page_title sidebar_current description
ignition
Ignition: ignition_systemd_unit
docs-ignition-datasource-systemd-unit
Describes the desired state of the systemd units.

ignition_systemd_unit

Describes the desired state of the systemd units.

Example Usage

data "ignition_systemd_unit" "example" {
	name = "example.service"
	content = "[Service]\nType=oneshot\nExecStart=/usr/bin/echo Hello World\n\n[Install]\nWantedBy=multi-user.target"
}

Argument Reference

The following arguments are supported:

  • name - (Required) The name of the unit. This must be suffixed with a valid unit type (e.g. thing.service).

  • enabled - (Optional) Whether or not the service shall be enabled. When true, the service is enabled. In order for this to have any effect, the unit must have an install section. (default true)

  • mask - (Optional) Whether or not the service shall be masked. When true, the service is masked by symlinking it to /dev/null.

  • content - (Optional) The contents of the unit.

  • dropin - (Optional) The list of drop-ins for the unit.

The dropin block supports:

  • name - (Required) The name of the drop-in. This must be suffixed with .conf.

  • content - (Optional) The contents of the drop-in.

Attributes Reference

The following attributes are exported:

  • rendered - The rendered template to reference this resource in ignition_config.