nixops-aws
nixops-aws copied to clipboard
Once a spot instance is lost or a spot request in cancelled, the root volume re-created is not appended to the block device mapping because the 'first_boot' was set to...
I have ec2 instance, container and my-key-pair resources. When running `nixops destroy`, program asks for confirmation to destroy ec2 instance (which I deny), confirmation to destroy container (which I say...
Hi, i am using a non-default-VPC and specified the correct subnet-id for it. I get the error: error: EC2ResponseError: 400 Bad Request MissingInputNo subnets found for the default VPC 'vpc-meh'....
E.g. provide a sample policy people can use to create an user and policy in the AWS console.
We have a use case where we access instance privately through directconnect. For this usecase, we use DNS names that resolve to private IP of servers within our VPC. It's...
# Problem Deploying an EC2 instance using the command `nixops deploy --debug -d idea-board-aws` produces the following error: ``` Failed assertions: - Neither the root account nor any wheel user...
``` { host1 = { resources, ... }: { deployment.targetEnv = "ec2"; deployment.ec2.region = "eu-central-1"; deployment.ec2.keyPair = resources.ec2KeyPairs.keypairone; deployment.ec2.accessKeyId = "keyname"; deployment.ec2.ami = "ami-2869bb47"; deployment.ec2.instanceType = "t2.large"; }; resources.ec2KeyPairs.keypairone =...
In a VPC deployment I forgot to set `deployment.ec2.associatePublicIpAddress`. Then NixOps will wait forever for a private IP address to become reachable: ``` btc....> creating EC2 instance (AMI ‘ami-d40185ad’, type...
Using nixops master trying to use security groups in the following way: ``` deployment.ec2.securityGroups = []; deployment.ec2.securityGroupIds = ["ssh-access" "default"]; ``` I get: ``` error: Multiple exceptions (5): * aws_a:...
NixOps doesn't cope with rate limits. ``` boto.exception.BotoServerError: BotoServerError: 400 Bad Request Sender Throttling Rate exceeded ``` NixOps could output the amount of requests being done to the various APIs...