theforeman.foreman.scc_account 模块 – 管理 SUSE 客户中心账户

注意

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

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

要安装它,请使用: ansible-galaxy collection install theforeman.foreman。您需要其他要求才能使用此模块,请参阅 需求 以了解详情。

要在 playbook 中使用它,请指定: theforeman.foreman.scc_account

theforeman.foreman 1.0.0 中的新增功能

概要

别名:foreman_scc_account

需求

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

  • requests

参数

参数

注释

base_url

字符串

SUSE 客户中心账户的 URL

interval

字符串

同步 SUSE 客户中心账户的时间间隔

选项

  • "never"

  • "daily"

  • "weekly"

  • "monthly"

login

字符串

SUSE 客户中心账户的登录 ID

name

字符串 / 必需

SUSE 客户中心账户的名称

organization

字符串 / 必需

相关组织的名称

password

字符串 / 必需

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

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

scc_account_password

字符串

SUSE 客户中心账户的密码

server_url

字符串 / 必需

Foreman 服务器的 URL。

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

state

字符串

SUSE 客户中心账户的状态

选项

  • "present" ← (默认)

  • "absent"

  • "synced"

sync_date

字符串

SUSE 客户中心账户上次同步时间

test_connection

布尔值

测试连接到服务器的 SUSE 客户中心账户凭据

选项

  • false ← (默认)

  • true

updated_name

字符串

要更新的 SUSE 客户中心账户名称

username

字符串 / 必需

访问 Foreman 服务器的用户名。

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

validate_certs

布尔值

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

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

选项

  • false

  • true ← (默认)

属性

属性

支持

描述

check_mode

支持:完全支持

可以在检查模式下运行并返回更改状态预测,而无需修改实体

diff_mode

支持:完全支持

在差异模式下,将返回有关已更改内容(或在检查模式下可能需要更改的内容)的详细信息

示例

- name: "Create a suse customer center account"
  theforeman.foreman.scc_account:
    username: "admin"
    password: "changeme"
    server_url: "https://foreman.example.com"
    name: "Test"
    login: "abcde"
    scc_account_password: "12345"
    base_url: "https://scc.suse.com"
    state: present

- name: "Update a suse customer center account"
  theforeman.foreman.scc_account:
    username: "admin"
    password: "changeme"
    server_url: "https://foreman.example.com"
    name: "Test1"
    state: present

- name: "Delete a suse customer center account"
  theforeman.foreman.scc_account:
    username: "admin"
    password: "changeme"
    server_url: "https://foreman.example.com"
    name: "Test"
    state: absent

返回值

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

描述

entity

字典

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

返回:成功

scc_accounts

列表 / 元素=字典

SCC 账户列表。

返回:成功

作者

  • Manisha Singhal (@manisha15) ATIX AG