Just ask someone to invite you from the orgs you want to join.
- Ask [email protected] to enable multi accounts for your organization
- go to app.datadoghq.com/account/new_org from your main account, and chose an account name
import boto | |
import boto.ec2 | |
accounts = [ | |
('<AWS_access_key_id>', '<AWS_secret_access_key>'), | |
] | |
REGIONS = ['us-east-1', 'us-west-2', 'us-west-1'] | |
for key, secret in accounts: |
import boto | |
import boto.ec2 | |
import boto.ec2.cloudwatch | |
accounts = [ | |
('<key>', '<secret>'), | |
] | |
regions = [r.name for r in boto.ec2.regions()] | |
for key, secret in accounts: | |
for region in regions: |
Just ask someone to invite you from the orgs you want to join.