ansible.builtin.cs_vpn_gateway (v2.9.18) — module

Manages site-to-site VPN gateways on Apache CloudStack based clouds.

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

Authors: René Moser (@resmo)

preview | supported by community

Install Ansible via pip

Install with pip install ansible==2.9.18

Description

Creates and removes VPN site-to-site gateways.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Ensure a vpn gateway is present
  cs_vpn_gateway:
    vpc: my VPC
  delegate_to: localhost
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Ensure a vpn gateway is absent
  cs_vpn_gateway:
    vpc: my VPC
    state: absent
  delegate_to: localhost

Inputs

    
vpc:
    description:
    - Name of the VPC.
    required: true
    type: str

zone:
    description:
    - Name of the zone the VPC is related to.
    - If not set, default zone is used.
    type: str

state:
    choices:
    - present
    - absent
    default: present
    description:
    - State of the VPN gateway.
    type: str

domain:
    description:
    - Domain the VPN gateway is related to.
    type: str

account:
    description:
    - Account the VPN gateway is related to.
    type: str

api_key:
    description:
    - API key of the CloudStack API.
    - If not given, the C(CLOUDSTACK_KEY) env variable is considered.
    required: true
    type: str

api_url:
    description:
    - URL of the CloudStack API e.g. https://cloud.example.com/client/api.
    - If not given, the C(CLOUDSTACK_ENDPOINT) env variable is considered.
    required: true
    type: str

project:
    description:
    - Name of the project the VPN gateway is related to.
    type: str

api_secret:
    description:
    - Secret key of the CloudStack API.
    - If not set, the C(CLOUDSTACK_SECRET) env variable is considered.
    required: true
    type: str

poll_async:
    default: true
    description:
    - Poll async jobs until job has finished.
    type: bool

api_timeout:
    default: 10
    description:
    - HTTP timeout in seconds.
    - If not given, the C(CLOUDSTACK_TIMEOUT) env variable is considered.
    type: int

api_http_method:
    choices:
    - get
    - post
    default: get
    description:
    - HTTP method used to query the API endpoint.
    - If not given, the C(CLOUDSTACK_METHOD) env variable is considered.
    type: str

api_verify_ssl_cert:
    description:
    - Verify CA authority cert file.
    - If not given, the C(CLOUDSTACK_VERIFY) env variable is considered.
    type: str

Outputs

account:
  description: Account the VPN site-to-site gateway is related to.
  returned: success
  sample: example account
  type: str
domain:
  description: Domain the VPN site-to-site gateway is related to.
  returned: success
  sample: example domain
  type: str
id:
  description: UUID of the VPN site-to-site gateway.
  returned: success
  sample: 04589590-ac63-4ffc-93f5-b698b8ac38b6
  type: str
project:
  description: Name of project the VPN site-to-site gateway is related to.
  returned: success
  sample: Production
  type: str
public_ip:
  description: IP address of the VPN site-to-site gateway.
  returned: success
  sample: 10.100.212.10
  type: str
vpc:
  description: Name of the VPC.
  returned: success
  sample: My VPC
  type: str