This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
DevOpsOpenHack/support/sqlsecretrotation/iac/terraform/locals.tf

8 lines
423 B
Terraform
Raw Normal View History

2022-11-03 20:41:13 +00:00
locals {
suffix = "sqlsecrot"
resource_group_name = "${var.resources_prefix}${local.suffix}rg"
storage_account_name = "${var.resources_prefix}${local.suffix}st"
function_app_name = "${var.resources_prefix}${local.suffix}func"
app_service_plan_name = "${var.resources_prefix}${local.suffix}plan"
application_insights_name = "${var.resources_prefix}${local.suffix}appi"
}