aboutsummaryrefslogtreecommitdiffstats
path: root/fdio.infra.ansible/roles/topology/tasks/main.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'fdio.infra.ansible/roles/topology/tasks/main.yaml')
-rw-r--r--fdio.infra.ansible/roles/topology/tasks/main.yaml23
1 files changed, 23 insertions, 0 deletions
diff --git a/fdio.infra.ansible/roles/topology/tasks/main.yaml b/fdio.infra.ansible/roles/topology/tasks/main.yaml
new file mode 100644
index 0000000000..1dc704331d
--- /dev/null
+++ b/fdio.infra.ansible/roles/topology/tasks/main.yaml
@@ -0,0 +1,23 @@
+---
+# file: tasks/main.yaml
+
+- name: Create Topology File
+ ansible.builtin.template:
+ src: "templates/topology-{{ cloud_topology }}.j2"
+ dest: "../topologies/available/{{ cloud_topology }}-{{ testbed_name }}.yaml"
+ tags:
+ - create-topology-file
+
+- name: Create Inventory Folder
+ ansible.builtin.file:
+ path: "./inventories/cloud_inventory/"
+ state: directory
+ tags:
+ - create-inventory-folder-cloud
+
+- name: Create Hosts File
+ ansible.builtin.template:
+ src: "templates/hosts.j2"
+ dest: "./inventories/cloud_inventory/hosts"
+ tags:
+ - create-hosts-file-cloud