-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Updates all docs via autodoc to state of branch master on commit 300dee2. This allows Github action for mkdocs to build and publish the newest documentation pages. (This will then also include foreman_setting, foreman_katello_content_view and other new additions.) Signed-off-by: Dominik Pataky <[email protected]>
- Loading branch information
Showing
42 changed files
with
378 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
|
||
# foreman_jobtemplate | ||
|
||
|
||
Foreman representation of a job template. | ||
|
||
|
||
## Example Usage | ||
|
||
``` | ||
# Autogenerated example with required keys | ||
data "foreman_jobtemplate" "example" { | ||
name = "change content sources" | ||
} | ||
``` | ||
|
||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
- `name` - (Required) job template name. | ||
|
||
|
||
## Attributes Reference | ||
|
||
The following attributes are exported: | ||
|
||
- `description` - | ||
- `description_format` - | ||
- `job_category` - | ||
- `locked` - | ||
- `name` - job template name. | ||
- `provider_type` - | ||
- `snippet` - | ||
- `template` - The template content itself | ||
- `template_inputs` - | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,49 @@ | ||
|
||
# foreman_provisioningtemplate | ||
|
||
|
||
Provisioning templates are scripts used to describe how to bootstrap and install the operating system on the host. | ||
|
||
|
||
## Example Usage | ||
|
||
```hcl | ||
``` | ||
# Autogenerated example with required keys | ||
data "foreman_provisioningtemplate" "example" { | ||
name = "ESXi 6.0 Kickstart - BO1" | ||
} | ||
``` | ||
|
||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
- `name` - (Required) The name of the provisioning template. | ||
|
||
|
||
## Attributes Reference | ||
|
||
The following attributes are exported: | ||
|
||
- `audit_comment` - Notes and comments for auditing purposes. | ||
- `description` - Description of the provisioning template | ||
- `description` - A description of the provisioning template. | ||
- `locked` - Whether or not the template is locked for editing. | ||
- `name` - The name of the provisioning template. | ||
- `operatingsystem_ids` - IDs of the operating systems associated with this provisioning template. | ||
- `snippet` - Whether or not the provisioning template is a snippet be used by other templates. | ||
- `template` - The markup and code of the provisioning template. | ||
- `template_combinations_attributes` - How templates are determined: | ||
|
||
When editing a template, you must assign a list of operating systems which this template can be used with. Optionally, you can restrict a template to a list of host groups and/or environments. | ||
When editing a template, you must assign a list of operating systems which this template can be used with. Optionally, you can restrict a template to a list of host groups and/or environments. | ||
|
||
When a host requests a template, Foreman will select the best match from the available templates of that type in the following order: | ||
|
||
1. host group and environment | ||
2. host group only | ||
3. environment only | ||
4. operating system default | ||
1. host group and environment | ||
2. host group only | ||
3. environment only | ||
4. operating system default | ||
|
||
Template combinations attributes contains an array of hostgroup IDs and environment ID combinations so they can be used in the provisioning template selection described above. | ||
|
||
- `template_kind_id` - ID of the template kind which categorizes the provisioning template. Optional for snippets, otherwise required. | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
|
||
# foreman_setting | ||
|
||
|
||
Setting can be used to read settings from Foreman. | ||
|
||
|
||
## Example Usage | ||
|
||
``` | ||
# Autogenerated example with required keys | ||
data "foreman_setting" "example" { | ||
name = "foreman_url" | ||
} | ||
``` | ||
|
||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
- `name` - (Required) Name of the setting | ||
|
||
|
||
## Attributes Reference | ||
|
||
The following attributes are exported: | ||
|
||
- `category_name` - Name of the category the setting is in. | ||
- `default` - Default value of the setting | ||
- `description` - Description of the setting | ||
- `name` - Name of the setting | ||
- `readonly` - Indicates whether the setting is read-only or not. | ||
- `settings_type` - Data type of this setting (boolean, string, ..) | ||
- `value` - Value of the setting | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
|
||
# foreman_templateinput | ||
|
||
|
||
Foreman representation of a template input. | ||
|
||
|
||
## Example Usage | ||
|
||
``` | ||
# Autogenerated example with required keys | ||
data "foreman_templateinput" "example" { | ||
} | ||
``` | ||
|
||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
|
||
|
||
## Attributes Reference | ||
|
||
The following attributes are exported: | ||
|
||
- `advanced` - | ||
- `default` - | ||
- `description` - | ||
- `fact_name` - | ||
- `hidden_value` - | ||
- `id` - | ||
- `input_type` - | ||
- `name` - The name of the template input | ||
- `puppet_class_name` - | ||
- `puppet_parameter_name` - | ||
- `required` - | ||
- `resource_type` - | ||
- `template_id` - | ||
- `value_type` - | ||
- `variable_name` - | ||
|
Empty file.
Empty file.
Oops, something went wrong.