This file contains 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
Cable Modem Status | |
Item Status Comments | |
Acquired Downstream Channel (Hz) | |
402750000 | |
Locked | |
Ranged Upstream Channel (Hz) | |
39400000 | |
Locked | |
Provisioning State |
This file contains 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 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. | |
# SPDX-License-Identifier: Apache-2.0 | |
AWSTemplateFormatVersion: '2010-09-09' | |
Description: IAM Role needed to use AWS Organizations to assume role into member AWS Accounts. | |
Parameters: | |
ServiceCatalogFactoryAccountId: | |
Description: The account you will be installing AWS Service Catalog Factory into | |
Type: String |
This file contains 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
import boto3 | |
from multiprocessing import Pool | |
import traceback | |
# config | |
account_access_role_arn = "arn:aws:iam::{}:role/OrganizationAccountAccessRole" | |
regions_to_clean = [ | |
"eu-west-1", | |
"eu-west-2", |
This file contains 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
#!/usr/bin/env bash | |
set -e | |
echo "Starting to prune change sets" | |
ALL_STACKS=$(aws cloudformation list-stacks --stack-status-filter CREATE_COMPLETE UPDATE_COMPLETE UPDATE_ROLLBACK_COMPLETE --query 'StackSummaries[].StackName' --output text) | |
for STACK_NAME in $ALL_STACKS | |
do |
This file contains 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
import json | |
import yaml | |
import os | |
from pathlib import Path | |
def load_manifest(manifest_path): | |
# Load the expanded manifest YAML file | |
with open(manifest_path, 'r') as f: |
OlderNewer