nixops-aws
nixops-aws copied to clipboard
When perfroming a deploy operation withe the `--allow-reboot` flag `nixops` actually stop start the instance which can cause issues when dealing with spot instances. It should reboot the instance as...
This PR introduces the possibility of restoring an RDS DB from snapshot. Given that the RDS DB instance restored is automatically placed in the default SG, added the support for...
Another method for authentication to AWS is using STS keys. This is common when using 2FA or when using an identity account that ties together other delegated accounts in AWS....
All password operations could be managed through NixOps. A nice workflow can be achieved with the following behaviors. 1. Leaving out the `masterPassword` causes it to be generated and stored...
Until now, `nixops deploy --check --allow-recreate` would fail to recreate terminated spot instances, instead emitting the error: Exception: spot instance request got fulfilled unexpectedly as instance ‘i-0543dd70c68337dea’ This was because...
@rbvermaa ``` machine_foo = ; resources.route53RecordSets = { a-record = { resources, ... }: { recordValues = [ ]; zoneId = "Z..."; domainName = "www.example.com."; recordType = "A"; }; };...
I would like to define an EC2 resource, which depends on the IP address of a machine being deployed. I.e. `config.nodes.mynode.config.networking.privateIPv4`. Is that impossible or if not how can that...
NixOS/nixops#173 discusses creating S3 buckets. Can nixops also upload things into the buckets?
Once we provision a set of instances and volumes as separate resources, we cannot destroy only the volumes while keeping the instances. ( using --include vol1_data .. ) As it...
Desired behavior: The current bid for a `r3.large` in `eu-central-1` is $0.0238, and I would like to bid $0.024 per hour for an instance. Actual behavior: Because the option is...