ansible.builtin.hcloud_server_type_facts (v2.8.17) — module

Gather facts about the Hetzner Cloud server types.

| "added in version" 2.8 of ansible.builtin"

Authors: Lukas Kaemmerling (@lkaemmerling)

preview | supported by community

Install Ansible via pip

Install with pip install ansible==2.8.17

Description

Gather facts about your Hetzner Cloud server types.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Gather hcloud server type facts
  local_action:
    module: hcloud_server_type_facts
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Print the gathered facts
  debug:
    var: ansible_facts.hcloud_server_type_facts

Inputs

    
id:
    description:
    - The ID of the server type you want to get.
    type: int

name:
    description:
    - The name of the server type you want to get.
    type: str

endpoint:
    default: https://api.hetzner.cloud/v1
    description:
    - This is the API Endpoint for the Hetzner Cloud.
    type: str

api_token:
    description:
    - This is the API Token for the Hetzner Cloud.
    - You can also set this option by using the environment variable HCLOUD_TOKEN
    required: true
    type: str

Outputs

hcloud_server_type_facts:
  contains:
    cores:
      description: Number of cpu cores a server of this type will have
      returned: always
      sample: 1
      type: int
    cpu_type:
      description: Type of cpu
      returned: always
      sample: shared
      type: str
    description:
      description: Detail description of the server type
      returned: always
      sample: Falkenstein DC Park 1
      type: str
    disk:
      description: Disk size a server of this type will have in GB
      returned: always
      sample: 25
      type: int
    id:
      description: Numeric identifier of the server type
      returned: always
      sample: 1937415
      type: int
    memory:
      description: Memory a server of this type will have in GB
      returned: always
      sample: 1
      type: int
    name:
      description: Name of the server type
      returned: always
      sample: fsn1
      type: str
    storage_type:
      description: Type of server boot drive
      returned: always
      sample: local
      type: str
  description: The server type facts as list
  returned: always
  type: complex

See also