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
    
  
  
    
  | { | |
| "AWSTemplateFormatVersion" : "2010-09-09", | |
| "Description" : "This CloudFormation Template creates a self-signed certificate and uploads it to the accounts S3 bucket for manual use and into IAM Certificates for use in ELB", | |
| "Parameters" : { | |
| "KeyPairName" : { | |
| "Description" : "Amazon EC2 Key Pair. NOTE: If you do not have a Key Pair created, you must create one before running this script.", | |
| "Type" : "AWS::EC2::KeyPair::KeyName" | |
| }, | 
  
    
      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 sys; sys.path.append('../boto-module') | |
| import boto.ec2 | |
| import time | |
| import keychain | |
| import clipboard | |
| import console | |
| import webbrowser | |
| instance_id = sys.argv[1] |