ionoscloud_group

Type representing a IonosCloud group.

Parameters:

Properties:

Changeable properties:

  • create_data_center

  • create_snapshot

  • reserve_ip

  • access_activity_log

  • s3_privilege

  • create_backup_unit

  • create_internet_access

  • create_k8s_cluster

  • create_pcc

  • members

Examples

To list resources:

puppet resource ionoscloud_group

NOTE: If two resources have the same name only one of them will be shown.

To create, update or delete a resource:

ionoscloud_group { 'Puppet Test' :
  ensure              => present,
  create_data_center  => false,
  create_snapshot     => false,
  reserve_ip          => true,
  access_activity_log => true,
  members             => []
}

NOTE: If two resources with the same name ar found an error will be thrown, this only applies to cases where the resource cannot be identified. Example: an error is thrown for two servers with the same name in the same datacenter, not for two servers with the same name, but in different datacenters.

Last updated