mirror of
https://github.com/nmasur/dotfiles
synced 2024-12-05 01:19:09 +00:00
Compare commits
2 Commits
7ce9ed564e
...
45ec4e5a3f
Author | SHA1 | Date | |
---|---|---|---|
|
45ec4e5a3f | ||
|
48fbb2e2d9 |
@ -17,7 +17,7 @@ data "aws_s3_object" "image" {
|
||||
}
|
||||
|
||||
resource "terraform_data" "image_replacement" {
|
||||
input = data.aws_s3_object.image.checksum_sha256
|
||||
input = data.aws_s3_object.image.etag
|
||||
}
|
||||
|
||||
# Setup IAM access for the VM Importer
|
||||
|
@ -10,10 +10,8 @@
|
||||
|
||||
services.n8n = {
|
||||
settings = {
|
||||
n8n = {
|
||||
listenAddress = "127.0.0.1";
|
||||
port = 5678;
|
||||
};
|
||||
listen_address = "127.0.0.1";
|
||||
port = 5678;
|
||||
};
|
||||
};
|
||||
|
||||
@ -27,7 +25,7 @@
|
||||
handle = [
|
||||
{
|
||||
handler = "reverse_proxy";
|
||||
upstreams = [ { dial = "localhost:${builtins.toString config.services.n8n.settings.n8n.port}"; } ];
|
||||
upstreams = [ { dial = "localhost:${builtins.toString config.services.n8n.settings.port}"; } ];
|
||||
}
|
||||
];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user