17 lines
284 B
Python
17 lines
284 B
Python
import boto3
|
|
import botocore
|
|
|
|
import json
|
|
import urllib
|
|
import logging
|
|
import sys,os
|
|
import pprint
|
|
|
|
pp = pprint.PrettyPrinter(indent=5, width=80)
|
|
|
|
from libs.opsworks import *
|
|
|
|
AWS_ACCESS_KEY_ID = ''
|
|
AWS_SECRET_ACCESS_KEY = ''
|
|
|
|
describe_stacks(AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY) |