The source files for this tutorial can be downloaded from its GitHub repository, or cloned into your current working directory using the command git clone https://github.com/ionos-cloud/module-ansible.git before changing into the module-ansible/docs/tutorials/05__introducing_roles sub-directory.
01__create_jumpbox_and_nlb.yml
---- hosts:localhostconnection:localgather_facts:falsevars_files: - ../vars.yml - vars.ymltasks:# =======================================================================# - name: Get information about the existing data centers# ansible.builtin.uri:# url: "https://api.ionos.com/cloudapi/v6/datacenters?pretty=true&depth=1&offset=0&limit=1000"# method: GET# return_content: true# headers:# Authorization: "Bearer {{ lookup('ansible.builtin.env', 'IONOS_TOKEN', default='') }}"# no_log: true# register: api__get_datacenters_response# - name: Extract the relevant entry from 'api__get_datacenters_response'# ansible.builtin.set_fact:# datacenter: "{{ (api__get_datacenters_response.content | from_json | json_query(jquery))[0] }}"# vars:# jquery: "items[?properties.name=='{{ datacenter_name }}'].{id: id, name: properties.name}" - name:Get information about the datacenter '{{ datacenter_name }}'ionoscloudsdk.ionoscloud.datacenter_info:filters: { 'properties.name':'{{ datacenter_name }}' }register:datacenter_info_response - name:Wait for user confirmationansible.builtin.pause: prompt: "About to delete '{{ datacenter_info_response.datacenters[0].properties.name }}'' and all of its contents. Press <Enter> to proceed..."
- name:Delete the datacenter '{{ datacenter_name }}' and everything contained thereinionoscloudsdk.ionoscloud.datacenter:datacenter:"{{ datacenter_info_response.datacenters[0].id }}"state:absent - name:And delete any 'temporary' or run-time filesansible.builtin.file:path:"{{ item }}"state:absentwith_items: - ssh_config - ssh_known_hosts_tmp - inventory.yml