Private cross connect

Example Syntax

    - name: Create pcc
      ionoscloudsdk.ionoscloud.pcc:
        name: "{{ name }}"
        description: "{{ description }}"

    - name: Update pcc
      ionoscloudsdk.ionoscloud.pcc:
        pcc_id: "{{pcc.id}}"
        name: "{{ new_name }}"
        description: "{{ new_description }}"
        state: update

    - name: Remove pcc
      ionoscloudsdk.ionoscloud.pcc:
        pcc_id: "{{pcc.id}}"
        state: absent

Parameter Reference

The following parameters are supported:

NameRequiredTypeDefaultDescription

pcc_id

yes/no

string

The ID of the pcc. Required for state = 'update' or state = 'absent'.

name

yes/no

string

The name of the pcc. Required only for state = 'present'.

description

no

string

The description of the pcc.

Last updated