This is a list of controls that can be placed into an IAM policy document. All content comes from AWS documentation.
Something wrong? Try looking here.
Table of Contents generated with DocToc
Random recipes of JMESPath for the AWS CLI tools that I might have written or stumbled upon.
A fully fonctional and good-looking linux for less than 256mb of ram
# Redis Cheatsheet | |
# All the commands you need to know | |
redis-server /path/redis.conf # start redis with the related configuration file | |
redis-cli # opens a redis prompt | |
# Strings. |
// Node.js CheatSheet. | |
// Download the Node.js source code or a pre-built installer for your platform, and start developing today. | |
// Download: http://nodejs.org/download/ | |
// More: http://nodejs.org/api/all.html | |
// 0. Synopsis. | |
// http://nodejs.org/api/synopsis.html |
import elasticsearch # https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/index.html | |
import curator # http://curator.readthedocs.io/en/v3.4.1/examples.html | |
import sys | |
PROD_PREFIX = "prod_" | |
REPOSITORY = "Your repository here | |
HOST_LIST = [{"host": "Friendly-hostname-here", "port": 9200}] | |
def main(): |
#!/usr/bin/env python | |
import sys | |
import os | |
import json | |
import argparse | |
import collections | |
__description__ = """Ansible Dynamic Inventory for Terraform.""" | |
__epilog__ = """ |