We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10b66e6 commit 0e3b593Copy full SHA for 0e3b593
roles/runtime/tasks/initialize_setup.yml
@@ -19,3 +19,14 @@
19
20
- name: Initialize CDP Runtime setup
21
ansible.builtin.include_tasks: "initialize_base.yml"
22
+
23
+- name: Prepare for CDP DW experiences
24
+ when: run__include_dw
25
+ block:
26
+ - name: Confirm public subnet count CDP DW public load balancer
27
+ when: not run__dw_private_load_balancer
28
+ ansible.builtin.assert:
29
+ that:
30
+ - run__public_subnet_ids | length == 3
31
+ fail_msg: "Must have exactly 3 public subnets when deploying CDP Data Warehouse with a public load balancer"
32
+ quiet: yes
0 commit comments