Skip to content

Commit

Permalink
clean up truth errors in workload rosa-cli (#5093)
Browse files Browse the repository at this point in the history
  • Loading branch information
newgoliath authored Jul 13, 2022
1 parent 5b2663f commit d0d9420
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,18 +52,18 @@

- name: Run rosa tasks as {{ student_name }}
become_user: "{{ student_name }}"
become: yes
become: true
block:
- name: Create .aws directory
file:
path: ~/.aws
state: directory

- name: Add aws credentials
no_log: True
no_log: true
blockinfile:
path: ~/.aws/credentials
create: yes
create: true
mode: 0600
block: |-
[default]
Expand All @@ -73,7 +73,7 @@
- name: Add aws config
blockinfile:
path: ~/.aws/config
create: yes
create: true
mode: 0600
block: |-
[default]
Expand Down

0 comments on commit d0d9420

Please sign in to comment.