Skip to content

Commit

Permalink
Explicitly handle none values for testing CA (#435)
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarber-akamai authored Nov 6, 2023
1 parent e08635f commit 15b78af
Show file tree
Hide file tree
Showing 66 changed files with 66 additions and 66 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
2 changes: 1 addition & 1 deletion tests/integration/targets/domain_basic/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
2 changes: 1 addition & 1 deletion tests/integration/targets/domain_list/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

2 changes: 1 addition & 1 deletion tests/integration/targets/domain_record/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -245,5 +245,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

2 changes: 1 addition & 1 deletion tests/integration/targets/domain_zone_file/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

2 changes: 1 addition & 1 deletion tests/integration/targets/event_list/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
2 changes: 1 addition & 1 deletion tests/integration/targets/firewall_basic/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -283,4 +283,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
2 changes: 1 addition & 1 deletion tests/integration/targets/firewall_device/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,6 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'


2 changes: 1 addition & 1 deletion tests/integration/targets/firewall_icmp/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
2 changes: 1 addition & 1 deletion tests/integration/targets/firewall_list/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

2 changes: 1 addition & 1 deletion tests/integration/targets/firewall_update/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -887,5 +887,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

2 changes: 1 addition & 1 deletion tests/integration/targets/image_basic/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
2 changes: 1 addition & 1 deletion tests/integration/targets/image_list/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
2 changes: 1 addition & 1 deletion tests/integration/targets/image_upload/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
2 changes: 1 addition & 1 deletion tests/integration/targets/instance_basic/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -156,5 +156,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

2 changes: 1 addition & 1 deletion tests/integration/targets/instance_booted/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

Original file line number Diff line number Diff line change
Expand Up @@ -224,4 +224,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

2 changes: 1 addition & 1 deletion tests/integration/targets/instance_list/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

2 changes: 1 addition & 1 deletion tests/integration/targets/instance_reboot/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
2 changes: 1 addition & 1 deletion tests/integration/targets/instance_timeout/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

2 changes: 1 addition & 1 deletion tests/integration/targets/ip_assign/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'


2 changes: 1 addition & 1 deletion tests/integration/targets/ip_info/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

2 changes: 1 addition & 1 deletion tests/integration/targets/ip_rdns/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'


2 changes: 1 addition & 1 deletion tests/integration/targets/ip_share/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,4 @@
LINODE_UA_PREFIX: '{{ ua_prefix }}'
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
2 changes: 1 addition & 1 deletion tests/integration/targets/ipv6_range_info/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

Original file line number Diff line number Diff line change
Expand Up @@ -149,5 +149,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
Original file line number Diff line number Diff line change
Expand Up @@ -98,5 +98,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

2 changes: 1 addition & 1 deletion tests/integration/targets/lke_version_list/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

2 changes: 1 addition & 1 deletion tests/integration/targets/mysql_basic/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
2 changes: 1 addition & 1 deletion tests/integration/targets/mysql_complex/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
Original file line number Diff line number Diff line change
Expand Up @@ -112,5 +112,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
Original file line number Diff line number Diff line change
Expand Up @@ -126,5 +126,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

Original file line number Diff line number Diff line change
Expand Up @@ -325,4 +325,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
Original file line number Diff line number Diff line change
Expand Up @@ -114,5 +114,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

2 changes: 1 addition & 1 deletion tests/integration/targets/object_basic/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

2 changes: 1 addition & 1 deletion tests/integration/targets/postgresql_basic/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
2 changes: 1 addition & 1 deletion tests/integration/targets/profile_info/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

2 changes: 1 addition & 1 deletion tests/integration/targets/region_list/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
2 changes: 1 addition & 1 deletion tests/integration/targets/ssh_key_info/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
2 changes: 1 addition & 1 deletion tests/integration/targets/ssh_key_list/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
2 changes: 1 addition & 1 deletion tests/integration/targets/stackscript_info/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
2 changes: 1 addition & 1 deletion tests/integration/targets/stackscript_list/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
2 changes: 1 addition & 1 deletion tests/integration/targets/token_basic/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
2 changes: 1 addition & 1 deletion tests/integration/targets/token_info/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

2 changes: 1 addition & 1 deletion tests/integration/targets/token_list/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

2 changes: 1 addition & 1 deletion tests/integration/targets/type_list/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
2 changes: 1 addition & 1 deletion tests/integration/targets/user_basic/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'

2 changes: 1 addition & 1 deletion tests/integration/targets/user_grants/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,4 @@
LINODE_API_TOKEN: '{{ api_token }}'
LINODE_API_URL: '{{ api_url }}'
LINODE_API_VERSION: '{{ api_version }}'
LINODE_CA: '{{ ca_file }}'
LINODE_CA: '{{ ca_file or "" }}'
Loading

0 comments on commit 15b78af

Please sign in to comment.