The intent is to define terse, standards-supported names for AWS regions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2019/01/04 12:49:26 [INFO] Terraform version: 0.11.11 ac4fff416318bf0915a0ab80e062a99ef3724334 | |
2019/01/04 12:49:26 [INFO] Go runtime version: go1.11.1 | |
2019/01/04 12:49:26 [INFO] CLI args: []string{"/usr/local/bin/terraform", "apply"} | |
2019/01/04 12:49:26 [DEBUG] Attempting to open CLI config file: /root/.terraformrc | |
2019/01/04 12:49:26 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2019/01/04 12:49:26 [INFO] CLI command args: []string{"apply"} | |
2019/01/04 12:49:26 [TRACE] module source: "git::https://github.com/cloudposse/terraform-aws-vpc.git?ref=master" | |
2019/01/04 12:49:27 [TRACE] module source: "git::https://github.com/cloudposse/terraform-aws-dynamic-subnets.git?ref=master" | |
2019/01/04 12:49:27 [TRACE] module source: "git::https://github.com/cloudposse/terraform-aws-ec2-autoscale-group.git?ref=master" | |
2019/01/04 12:49:27 [TRACE] module source: "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.3.3" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Produces load on all available CPU cores. | |
Requires system environment var STRESS_MINS to be set. | |
""" | |
from multiprocessing import Pool | |
from multiprocessing import cpu_count | |
import time | |
import os |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) 2018 Bao Nguyen <[email protected]> | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: | |
# | |
# The above copyright notice and this permission notice shall be included in all |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import logging | |
import os | |
import datetime | |
import time | |
class SingletonType(type): | |
_instances = {} |
OlderNewer