nixops-aws
nixops-aws copied to clipboard
Currently, unless I'm missing something, it's impossible. NixOps insists on either `accessKeyId` being defined in the config (which in turn relies on secrets being present in `~/.aws/credentials`) or the environment...
I copied the files from https://nixos.org/nixops/manual/#sec-deploying-to-ec2, and only changed the accessKeyId. Unfortunately I get this error: ``` > nixops create ./load-balancer.nix ./load-balancer-ec2.nix -d load-balancer-ec2 created deployment ‘7d8239f3-0d5b-11ea-89e6-02428c63fe0c’ 7d8239f3-0d5b-11ea-89e6-02428c63fe0c > nixops...
Just a place to facilitate discussion.
NixOps should destroy the previous infrastructure and build the new infrastructure when ``` deployment.ec2.keyPair = "your-key-name"; ``` has changed when `--allow-recreate` is set.
I am looking in the AWS Console, and I see after a refresh that machine `m` has a private IPv4 address. However, `nixops ssh m` reports: ``` error: EC2 machine...
Right now we have: ``` deployment.ec2.securityGroups = mkOption { default = [ "default" ]; example = [ "my-group" "my-other-group" ]; type = types.listOf (types.either types.str (resource "ec2-security-group")); apply = map...
Currently, the following single IP declaration is supported. > deployment.ec2.elasticIPv4 = mkOption { > default = ""; > example = "123.1.123.123"; > type = types.either types.str (resource "elastic-ip"); > apply...
Given `deployment.route53.hostName = domain-name.root`, running `nixops deploy` gives error "Exception: hosted zone for com not found". The full exception is ``` webserver..> sending Route53 DNS: example.com A 18.218.14.24 Traceback (most...
`nixops deploy` fails if it tries to remove a security group rule that no longer exists. It should just ignore this error. Example: ``` $ nixops deploy -d nixos-bastion --include...