theforeman.foreman.location 模块 – 管理位置

注意

此模块是 theforeman.foreman 集合(版本 4.2.0)的一部分。

如果您正在使用 ansible 包,您可能已经安装了此集合。它不包含在 ansible-core 中。要检查是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用:ansible-galaxy collection install theforeman.foreman。您需要进一步的要求才能使用此模块,有关详细信息,请参阅 要求

要在 Playbook 中使用它,请指定:theforeman.foreman.location

theforeman.foreman 1.0.0 中的新增功能

概要

  • 管理位置

别名:foreman_location

要求

执行此模块的主机需要以下要求。

  • requests

参数

参数

注释

description

字符串

在 theforeman.foreman 4.2.0 中添加

位置的描述

ignore_types

别名:select_all_types

列表 / 元素=字符串

在 theforeman.foreman 3.8.0 中添加

将自动关联的资源类型列表

name

字符串 / 必需

位置的名称

organizations

列表 / 元素=字符串

位置应分配到的组织列表

parameters

列表 / 元素=字典

实体域特定主机参数

name

字符串 / 必需

参数的名称

parameter_type

字符串

参数的类型

选择

  • "string" ← (默认)

  • "boolean"

  • "integer"

  • "real"

  • "array"

  • "hash"

  • "yaml"

  • "json"

value

任何 / 必需

参数的值

parent

字符串

用于嵌套的父位置的标题

password

字符串 / 必需

访问 Foreman 服务器的用户的密码。

如果任务中未指定该值,则将改用环境变量 FOREMAN_PASSWORD 的值。

server_url

字符串 / 必需

Foreman 服务器的 URL。

如果任务中未指定该值,则将改用环境变量 FOREMAN_SERVER_URL 的值。

state

字符串

实体的状态

选择

  • "present" ← (默认)

  • "absent"

username

字符串 / 必需

访问 Foreman 服务器的用户名。

如果任务中未指定该值,则将改用环境变量 FOREMAN_USERNAME 的值。

validate_certs

布尔值

是否验证 Foreman 服务器的 TLS 证书。

如果任务中未指定该值,则将改用环境变量 FOREMAN_VALIDATE_CERTS 的值。

选择

  • false

  • true ← (默认)

属性

属性

支持

描述

check_mode

支持:完全

可以在 check_mode 中运行并返回更改状态预测,而无需修改实体

diff_mode

支持:完全

在 diff 模式下,将返回有关已更改内容(或可能需要在 check_mode 中更改的内容)的详细信息

示例

# Create a simple location
- name: "Create CI Location"
  theforeman.foreman.location:
    username: "admin"
    password: "changeme"
    server_url: "https://foreman.example.com"
    name: "My Cool New Location"
    organizations:
      - "Default Organization"
    state: present

# Create a nested location
- name: "Create Nested CI Location"
  theforeman.foreman.location:
    username: "admin"
    password: "changeme"
    server_url: "https://foreman.example.com"
    name: "My Nested location"
    parent: "My Cool New Location"
    state: present

# Create a new nested location with parent included in name
- name: "Create New Nested Location"
  theforeman.foreman.location:
    username: "admin"
    password: "changeme"
    server_url: "https://foreman.example.com"
    name: "My Cool New Location/New nested location"
    state: present

# Move a nested location to another parent
- name: "Create Nested CI Location"
  theforeman.foreman.location:
    username: "admin"
    password: "changeme"
    server_url: "https://foreman.example.com"
    name: "My Cool New Location/New nested location"
    parent: "My Cool New Location/My Nested location"
    state: present

返回值

常见的返回值记录在此处,以下是此模块独有的字段

描述

entity

字典

受影响的实体按其类型分组的最终状态。

返回:成功

locations

列表 / 元素=字典

位置列表。

返回:成功

作者

  • Matthias M Dellweg (@mdellweg) ATIX AG