ansible.builtin.scaleway_compute (v2.9.27) — module

Scaleway compute management module

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

Authors: Remy Leone (@sieben)

preview | supported by community

Install Ansible via pip

Install with pip install ansible==2.9.27

Description

This module manages compute instances on Scaleway.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Create a server
  scaleway_compute:
    name: foobar
    state: present
    image: 89ee4018-f8c3-4dc4-a6b5-bca14f985ebe
    organization: 951df375-e094-4d26-97c1-ba548eeb9c42
    region: ams1
    commercial_type: VC1S
    tags:
      - test
      - www
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Create a server attached to a security group
  scaleway_compute:
    name: foobar
    state: present
    image: 89ee4018-f8c3-4dc4-a6b5-bca14f985ebe
    organization: 951df375-e094-4d26-97c1-ba548eeb9c42
    region: ams1
    commercial_type: VC1S
    security_group: 4a31b633-118e-4900-bd52-facf1085fc8d
    tags:
      - test
      - www
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Destroy it right after
  scaleway_compute:
    name: foobar
    state: absent
    image: 89ee4018-f8c3-4dc4-a6b5-bca14f985ebe
    organization: 951df375-e094-4d26-97c1-ba548eeb9c42
    region: ams1
    commercial_type: VC1S

Inputs

    
name:
    description:
    - Name of the instance

tags:
    default: []
    description:
    - List of tags to apply to the instance (5 max)
    required: false

wait:
    default: 'no'
    description:
    - Wait for the instance to reach its desired state before returning.
    type: bool

image:
    description:
    - Image identifier used to start the instance with
    required: true

state:
    choices:
    - present
    - absent
    - running
    - restarted
    - stopped
    default: present
    description:
    - Indicate desired state of the instance.

region:
    choices:
    - ams1
    - EMEA-NL-EVS
    - par1
    - EMEA-FR-PAR1
    description:
    - Scaleway compute zone
    required: true

api_url:
    aliases:
    - base_url
    default: https://api.scaleway.com
    description:
    - Scaleway API URL.
    type: str

api_token:
    aliases:
    - oauth_token
    description:
    - Scaleway OAuth token.
    required: true
    type: str

public_ip:
    default: absent
    description:
    - Manage public IP on a Scaleway server
    - Could be Scaleway IP address UUID
    - C(dynamic) Means that IP is destroyed at the same time the host is destroyed
    - C(absent) Means no public IP at all
    version_added: '2.8'
    version_added_collection: ansible.builtin

api_timeout:
    aliases:
    - timeout
    default: 30
    description:
    - HTTP timeout to Scaleway API in seconds.
    type: int

enable_ipv6:
    default: false
    description:
    - Enable public IPv6 connectivity on the instance
    type: bool

organization:
    description:
    - Organization identifier
    required: true

wait_timeout:
    default: 300
    description:
    - Time to wait for the server to reach the expected state
    required: false

security_group:
    description:
    - Security group unique identifier
    - If no value provided, the default security group or current security group will
      be used
    required: false
    version_added: '2.8'
    version_added_collection: ansible.builtin

validate_certs:
    default: true
    description:
    - Validate SSL certs of the Scaleway API.
    type: bool

commercial_type:
    description:
    - Commercial name of the compute node
    required: true

wait_sleep_time:
    default: 3
    description:
    - Time to wait before every attempt to check the state of the server
    required: false

query_parameters:
    default: {}
    description:
    - List of parameters passed to the query string.
    type: dict