nixops-aws
nixops-aws copied to clipboard
So if you provision a security group in region A and try to use it on instance in region B you'd get: ``` node......................> got (possibly transient) EC2 error code...
``` frontend> disassociating IP address ‘54.235.75.201’... Traceback (most recent call last): File "/nix/store/0h2c0k9mr8y5pvjd3ml30ms5rdf4kia1-nixops-1.5.1/bin/..nixops-wrapped-wrapped", line 951, in args.op() File "/nix/store/0h2c0k9mr8y5pvjd3ml30ms5rdf4kia1-nixops-1.5.1/bin/..nixops-wrapped-wrapped", line 379, in op_deploy repair=args.repair, dry_activate=args.dry_activate) File "/nix/store/0h2c0k9mr8y5pvjd3ml30ms5rdf4kia1-nixops-1.5.1/lib/python2.7/site-packages/nixops/deployment.py", line 990, in...
I'm seeing the same issue as https://github.com/NixOS/nixops/issues/488 If I deploy the same instance in the same region and availability zone via the AWS console, it's EBS Optimized. If I deploy...
I tried to make an IPv6 security group entry with `::/0`: ```nix resources.ec2SecurityGroups.mygroup = { accessKeyId = "myaccesskeyid"; region = "eu-central-1"; name = "mygroup"; description = "mygroup"; rules = [...
When `--check` mode is used to _re_deploy a EC2 Security Group with has a port wildcard grant (1-65535) fails, because `boto` returns (None, None) as the port range. Sadly, I...
Error `error: 'GroupOrCIDR' object has no attribute 'groupName'` which is thrown during deploy --check : https://github.com/NixOS/nixops/blob/master/nixops/resources/ec2_security_group.py#L133
I occasionally get an error when running "nixops destroy" - probably 10-20% of the times I run "nixops destroy". When the error happens, I end up with a volume that...
Currently, after a deployment is destroyed, backup data (result of `nixops backup` ) is removed from the state file. It makes sense to keep that data because a reasonable use...
I think this happened during the update of security groups on a machine with multiple ENIs (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html) attached: ``` InvalidInstanceIDThere are multiple interfaces attached to instance 'i-'. Please specify an...
Changing the description from `"a"` to `"b"` and doing a deployment does *not* result in a change on AWS. ``` resources.ec2SecurityGroups.a = { inherit accessKeyId region; description = "a"; rules...