Install google-cloud-cli instead of google-cloud-sdk

This commit is contained in:
Chris Hawk 2025-01-10 15:58:54 -08:00
parent d1cf030d93
commit b1a75cf383
2 changed files with 8 additions and 5 deletions

View file

@ -8,6 +8,9 @@ galaxy_info:
platforms: platforms:
- name: Ubuntu - name: Ubuntu
versions: versions:
- focal
- jammy
- noble
- precise - precise
- trusty - trusty
- xenial - xenial

View file

@ -9,20 +9,20 @@
ansible.builtin.apt_repository: ansible.builtin.apt_repository:
repo: deb {{ gcloud_apt_url }} {{ gcloud_apt_repo }} main repo: deb {{ gcloud_apt_url }} {{ gcloud_apt_repo }} main
state: present state: present
filename: google-cloud-sdk filename: google-cloud-cli
- name: Gcloud | Debian | Install the google-cloud-sdk package - name: Gcloud | Debian | Install the google-cloud-cli package
ansible.builtin.apt: ansible.builtin.apt:
name: google-cloud-sdk name: google-cloud-cli
update_cache: "yes" update_cache: "yes"
register: task_result register: task_result
until: task_result is success until: task_result is success
retries: 10 retries: 10
delay: 2 delay: 2
- name: Gcloud | Debian | Install the google-cloud-sdk additional components - name: Gcloud | Debian | Install the google-cloud-cli additional components
ansible.builtin.apt: ansible.builtin.apt:
name: google-cloud-sdk-{{ item }} name: google-cloud-cli-{{ item }}
update_cache: "yes" update_cache: "yes"
register: task_result register: task_result
until: task_result is success until: task_result is success