AWS CloudFormation gives developers and systems administrators an easy way to create and manage a collection of related AWS resources, provisioning and updating them in an orderly and predictable fashion.
-1
votes
1answer
21 views
Created CloudFormation stack not visible to SDK
I've created a CloudFormation stack using the Amazon AWS SDK for Ruby. When I navigate to the CloudFormation Management Console I can see it:
my-vpc-stack-name 2013-04-26 11:33:22 UTC+10 ...
1
vote
1answer
26 views
How to set user name and group name in IAM using CloudFormation?
I created a CloudFormation template and I wanted to create IAM user, to do that I used this JSON string:
"CFNUser" : {
"Type" : "AWS::IAM::User",
"Properties" : {
"LoginProfile": {
...
1
vote
1answer
33 views
Convert an existing application AWS stack over to CloudFormation
I have a web site hosted in AWS that makes use of a number of AWS services. The environment was created manually using a combination of the web console and the AWS CLI. I'd like to start managing it ...
0
votes
0answers
35 views
CloudFormation S3 specify physical name
I deployed a template with an s3 bucket. I noticed that the 'Logical ID' field is the resource name, but the 'Physical ID' field is in the format of --. Is there a way to override this behavior? I ...
0
votes
1answer
46 views
How to bootstrap RDS MySQL to create table every time the stack is up?
I'm trying to bootstrap my RDS from Cloudformation. I've used the template from here https://s3.amazonaws.com/cloudformation-templates-us-east-1/RDS_MySQL_55.template.
I can create the RDS from ...
0
votes
0answers
9 views
How can I create a security group if none is specified in a parameter in a cloudformation script?
I have a parameter for security group:
"Parameters" : {
"SecurityGroup" : {
"Description" : "Name of an existing EC2 Security Group ",
"Type" : "String",
"Default" : "default",
...
1
vote
2answers
116 views
Create autoscaling webserver group add to existing elb
I have an Elastic Load Balancer already configured with ports and SSL certificates etc and Route 53 is set to route traffic for my site to it.
I'd like to know if there is an example ...
2
votes
1answer
60 views
How to schedule additional EC2 instances in an Auto Scaling group in CloudFormation?
I've looked all over the place, and can't find a good Amazon CloudFormation example of an Auto Scaling Group configured to add/remove capacity on a schedule.
Its certainly possible with the command ...
2
votes
2answers
144 views
Create AWS cache clusters in VPC with CloudFormation
I am creating an AWS stack inside a VPC using CloudFormation and need to create ElastiCache clusters on it. I have investigated and there is no support in CloudFormation to create cache clusters in ...
1
vote
1answer
53 views
How can I get current date in a CloudFormation script?
I am tagging my resources using Tags in my cfn script:
"Tags" : [ { "Key" : "Owner", "Value" : "my name" },
{ "Key" : "Name", "Value" : "instance name" }
{ "Key" : ...
2
votes
0answers
75 views
Using AWS-Cloudformatting-Resources with Heat & Openstack in a local cloud?
We have set up a local cloud-environment with Openstack (essex) and Heat. But we are confronted with the Problem that we want to add additional files/packages on first boot of an Instance. As far as I ...
0
votes
1answer
176 views
Can I use cloud-init to install and configure chef, but not actually run it?
I have a working cloudformation template, with user data and cloud init, connecting and building successfully to a hosted chef server. I'm using Ubuntu 12.04 on AWS EC2, stock image.
For my own ...
1
vote
0answers
83 views
How to obtain all EC2 instance IDs from AutoScaling?
So I have an AWS CloudFormation template with 3 different instance 'types' (Server, Agent, Relay)
I'm using AutoScaling to dynamically launch X number of instances of a type.
My problem is that I ...
1
vote
0answers
81 views
The f4m document contains errors URL missing from media tag
Sorry if this is in the wrong place.
I’ve gone through Amazon’s guide to setting up a live stream using CloudFront and Flash Media Server as described here: ...
1
vote
1answer
47 views
How to specify multiple buckets in a bucketpolicy in a cfn template?
Hopefully this a quick and easy question. The following is an example of setting a bucketpolicy in a cfn template for A bucket.
"mybucketpolicy" : {
"Type" : "AWS::S3::BucketPolicy",
...
1
vote
3answers
87 views
AWS How to name an Instance in the CloudFormation template?
I have a template that works and generates a stack but i cannot find a property to set or something else that allows me to give a Name to the EC2 Instance I have created. When it is generated the Name ...
0
votes
1answer
61 views
How to use CloudFormer to generate a template?
New to AWS and trying to understand CloudFormation templates. I created two EC2 micro Windows instances instances. I go to CloudFormer and it wants a template file or it offers a default template URL.
...
1
vote
1answer
35 views
Referencing Glacier as Resource in CloudFormation template?
Brand new to AWS and trying to put together a stack with a CloudFormation template.
The stack will have two EC2 Instances with a windows service running on each. Some of the storage will be on S3 and ...
0
votes
1answer
126 views
How to attach pre-uploaded SSL cert to ELB in CloudFormation template?
I've been trying to attach a SSL certificate that I'm currently using for one of my Elastic Load Balancing Instances on a new Cloud Formation Template but each time I get:
Server Certificate not ...
1
vote
1answer
438 views
AWS::CloudFormation::Init how does it work?
we can use the template to excute the commands, upload a files after start an instance.But does anybody know what are the internals of this operation (from amazon's side) ?
When we pass template in, ...
5
votes
2answers
694 views
What is the difference between Elastic Beanstalk and CloudFormation for a .NET project?
I have developed a .NET MVC application and have started playing around with AWS and deploying it via the Visual Studio Toolkit. I have successfully deployed the application using the Elastic ...
0
votes
1answer
97 views
Is there a way to run initial sql when creating an rds database instance using cloudformation
I am creating an RDS instance using Cloudformation using this:
"Resources": {
"myDB": {
"Type": "AWS::RDS::DBInstance",
"Properties": {
...
0
votes
1answer
75 views
How do you monitor auto scaling on AWS CloudFormation?
I setup a quick web app using the Visual Studio Toolkit and deployed it to CloudFormation with the default settings. I then started to load the app using JMeter until eventually it stopped returning ...
0
votes
2answers
300 views
Creating an ec2 instance along with IAM roles using cloud formation
I'm very new to Amazon cloudformation technique. I'm trying to launch an ec2 instance along with the IAM roles.
I have cloudformation script for this. But the problem I face is the IAM roles and Ec2 ...
1
vote
1answer
178 views
Returning the outputs from a CloudFormation template with Boto?
I'm trying to retrieve the list of outputs from a CloudFormation template using Boto. I see in the docs there's an object named boto.cloudformation.stack.Output. But I think this is unimplemented ...
0
votes
1answer
41 views
How to syncronize EC2 instances
I created a web cluster using AWS's Cloudformation template.
The script installs Drupal 7. I connect an intance via ssh, delete Drupal 7 and install Drupal 6.
I want the other instances (and the ...
0
votes
1answer
225 views
AWS Cloud formation cfn-init error
I'm trying to create cluster structure using Cloud Formation script. I'm using Bitnami drupal AMI.
Bu the script produces below eror:
WaitCondition received failed message: 'Failed to run cfn-init' ...
1
vote
1answer
63 views
How can I find the root cause for AWS CloudFormation stack creation failure?
I am trying to install a simple stack using AWS CloudFormation. I create an IAM user and also pass in some script to install puppet and git thru userdata so that it can be executed by cloudinit.
The ...
0
votes
1answer
105 views
shell access to ec2 instance
I have created a durpal site in minutes using cloud formation service and I can see the ec2 instance.
But I am not able to log-in to the instance because I do not know which key pair was used.
I ...
0
votes
0answers
111 views
Download single files from GitHub with CloudFormation template
I would like to download text files from GitHub using CloudFormation Template. The files are versionned in private and public repositories. What I get when I edit the downloaded files is ...
2
votes
1answer
118 views
SSL cert on cloud-formed Elastic beanstalk
I have an elasticbeanstalk application instanciated by cloudformation, but I want to pass it an ARN for an SSL cert to deploy on its ELB. I know how to do it once the ELB is up, I just can't find any ...
0
votes
2answers
146 views
Tag Nodes With Chef Roles Using cloudformation
So my goal is to launch say 100 nodes in the cloud using cloudformation and I would like to tag nodes with chef roles within my cloudformation script instead of using knife. I have setup my ...
3
votes
4answers
185 views
Cloud Agnostic Tool On Any IaaS Based Cloud
Is there any technology like CloudFormation for aws that would work on any IaaS based cloud to do the same thing? I mean you write it once and then it runs on any IaaS based cloud platform like azure, ...
2
votes
1answer
315 views
Cloudformation extra when compared with Chef
What can I do with Cloudformation that I can not do with chef? It looks like chef support spawning node in the ec2 and I can read back the information of the spawned nodes (ip,..) so why would still ...
0
votes
1answer
44 views
What's the proper way to retry commands in an AWS CFN template?
Sometimes commands like apt-get update -q fail randomly in a cloudformation template user-data script. What's the proper way to retry them till they succeed?
1
vote
1answer
314 views
Customzing EC2 Windows instances without using a Custom AMI
We are currently setting up a CloudFormation stack based on the template created by AWS Toolkit for Visual Studio when deploying using "Load balanced template". We need to create a script that ...
1
vote
1answer
273 views
boto CloudFormation BadRequest (400), Exception: None
I'm implementing CloudFormation in boto and ran into a weird exception.
[sebastian ~/test_project (develop)]$ ./manage.py --template cf-templates/test_project.json --stack labs --validate
Validating ...
0
votes
1answer
201 views
cfn-init will not work in VPC using Cloud Formation
This is my first try with VPC.
I just changed my template to use VPC. Everything was fine when the stack was launched outside of VPC, but now that they are inside VPC, I cannot download my files from ...
0
votes
1answer
40 views
Can't change any properties for an existing AWS::AutoScaling::Trigger
I'm a little baffled; I don't seem to be able to change any of the properties associated with an existing AWS::AutoScaling::Trigger.
This seems like an awfully basic thing you would want to do once ...
0
votes
1answer
91 views
EC2: how to bundle an ssh private key into a private AMI?
I use a private AMI in a cloudformation template, which also assigns a Route53 record to the new instance. Every time I connect to that hostname I get the "remote host identification has changed" and ...
3
votes
0answers
116 views
Amazon CloudFront + Adobe FMS Stack Max Concurrent Users
I have been using Wowza on EC2 and now trying to use FMS Stack in AWS with CloudFront Distribution.
So far I managed to setup a live streaming using m1.large FMS Stack + CloudFront Distribution.
...
3
votes
1answer
408 views
How to allow an instance to delete old snapshots of an attached volume?
I'm trying to create a cloudformation template that would create a EC2 instance, mount a 2GB volume and do periodic snapshots, while also deleting the ones that are say a week or more old.
While I ...
1
vote
2answers
351 views
AWS Signature creation using PHP
I am trying to use AWS API to create a stack in AWS CloudFormation, but they return error saying "signature we calculated does not match the signature you provided"
Fllowing is the code that I am ...
1
vote
2answers
1k views
How to use IAM role to access resources using temporary credentials?
I'm using AWS IAM roles that allows an instance to have access to certain resources using temporary API credentials (access key, secret key and security token).
When I test the temporary credentials ...
1
vote
1answer
2k views
How to create a EC2 instance from snapshot in cloudformation?
I'd like to specify the snapshot id which would be used to create a root device image for a EC2 instance created with cloudformation. How do I do that?
I could only find a way to make volume from a ...
6
votes
1answer
809 views
How can I quickly and effectively debug CloudFormation templates?
CloudFormation is a powerful AWS offering that allows the programmatic creation of AWS resource stacks, such as the web tier of an application, a high performance computing cluster, or an entire ...
2
votes
1answer
420 views
How do I disable detailed monitoring for instances in an auto scaling group in a CloudFormation template?
I'm using CloudFormation to spin up some servers in an auto scaling group, and I want them all to use basic monitoring. I tried setting Monitoring to false in the AWS::AutoScaling::AutoScalingGroup ...
0
votes
1answer
96 views
Automatic Upgrade/Update Service on AWS
I have a bunch on services deployed on AWS.
Each time I have to change something in the service, I have to manually download my WCF files from my build server (builds created by Jenkins) .. modify ...
3
votes
2answers
1k views
Can IAM role temporary credentials be used in cloudformation templates?
I'm building a stack that needs access to a private S3 bucket to download the most current version of my application. I'm using IAM roles, a relatively new AWS feature that allows EC2 instances to be ...
4
votes
2answers
2k views
How can I (securely) download a private S3 asset onto a new EC2 instance with cloudinit?
I'm using CloudFormation to manage a Tomcat webserver stack but am tired of doing raw AMI management for new application versions. I'd like to move in the direction of Chef but don't have the time ...

