Skip to content

Instantly share code, notes, and snippets.

@bramvdklinkenberg
bramvdklinkenberg / adf-airflow.tf
Last active March 15, 2023 10:52
Terraform template to deploy a Managed Airflow instance within Azure Data Factory using the Terraform AzApi provider
terraform {
required_version = ">=1.3.9"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.46.0"
}
azapi = {
@bramvdklinkenberg
bramvdklinkenberg / Dockerfile
Created June 29, 2021 20:54
Github Action workflow for image scanning
################
## Dockerfile ##
################
FROM nginx:latest
COPY ./index.html /usr/share/nginx/html/index.html