Skip to content

Instantly share code, notes, and snippets.

@vccabral
Last active December 3, 2015 20:21
Show Gist options
  • Save vccabral/0f151617333666cb61d5 to your computer and use it in GitHub Desktop.
Save vccabral/0f151617333666cb61d5 to your computer and use it in GitHub Desktop.
Non-idempotent IAM users
# Basic user creation example
- hosts: 127.0.0.1
connection: local
tasks:
- name: Create basic System Admin
iam:
iam_type: user
name: "{{ item }}"
state: present
password: "password"
with_items:
- jcleese
- mpython
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment