diff --git a/examples/main.tf b/examples/main.tf index e69de29b..d141f7e9 100644 --- a/examples/main.tf +++ b/examples/main.tf @@ -0,0 +1,16 @@ +module "application_insights" { + source = "registry.terraform.io/T-Systems-MMS/application-insights/azurerm" + application_insights = { + function_app = { + location = "westeurope" + resource_group_name = "service-env-rg" + application_type = "Node.JS" + internet_ingestion_enabled = true + internet_query_enabled = true + retention_in_days = "90" + tags = { + service = "service_name" + } + } + } +} diff --git a/renovate.json b/renovate.json new file mode 100644 index 00000000..f45d8f11 --- /dev/null +++ b/renovate.json @@ -0,0 +1,5 @@ +{ + "extends": [ + "config:base" + ] +}