This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| provider "aws" { | |
| region = "eu-central-1" | |
| } | |
| provider "aws" { | |
| alias = "us_east_1" | |
| region = "us-east-1" | |
| } | |
| locals { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ubuntu:bionic | |
| RUN apt-get update && \ | |
| apt-get install -y git libglib2.0-dev zlib1g-dev autoconf automake libtool \ | |
| libpcap-dev libnet-dev \ | |
| python-pip python-setuptools python-nids && \ | |
| apt-get clean && \ | |
| apt-get autoclean | |
| RUN cd /tmp && \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # nixos-unstable - 2023-04-10 | |
| with (import (fetchTarball https://github.com/nixos/nixpkgs/archive/db24d86dd8a4769c50d6b7295e81aa280cd93f35.tar.gz) {}); | |
| let | |
| larkparser = pkgs.python3Packages.buildPythonPackage rec { | |
| name = "lark-parser"; | |
| version = "0.12.0"; | |
| src = pkgs.fetchPypi { |
OlderNewer