data-platform-hq / terraform-azurerm-application-security-group

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Azure application security group Terraform module

Terraform module for creation Azure application security group

Usage

This module provides an ability to deploy Azure Application security group.

module "application_security_group" {
  source         = "data-platform-hq/terraform-azurerm-application-security-group"
  name           = "example-name"
  location       = "eastus"
  resource_group = "example-rg"
}

Requirements

Name Version
terraform >= 1.0.0
azurerm >= 3.40.0

Providers

Name Version
azurerm >= 3.40.0

Modules

No modules.

Resources

Name Type
azurerm_application_security_group.this resource

Inputs

Name Description Type Default Required
location Specifies the supported Azure location where the resource exists string n/a yes
name Application Security Group name string n/a yes
resource_group The name of the resource group in which resources is created string n/a yes
tags A mapping of tags to assign to the resource map(string) {} no

Outputs

Name Description
id The ID of the Application Security Group

License

Apache 2 Licensed. For more information please see LICENSE

About

License:Other


Languages

Language:HCL 100.0%