Skip to content

langoureaux-s/terraform-module-azure-security

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

terraform-module-azure-security

This module permit to security group and some security rules associated to it.

terragrunt = {
  terraform {
    source = "git::https://github.com/langoureaux-s/terraform-module-security.git"
  }
  
  location              = "West Europe"
  rg_name               = "bigdata"
  name                  = "myproject"
  security_rules        = [
                            {
                              name                   = "http"
                              priority               = "200"
                              direction              = "Inbound"
                              access                 = "Allow"
                              protocol               = "tcp"
                              destination_port_range = "80"
                              description            = "Http web server"
                            },
                            {
                              name                   = "ssh"
                              priority               = "200"
                              direction              = "Inbound"
                              access                 = "Allow"
                              protocol               = "tcp"
                              destination_port_range = "22"
                              description            = "Openssh server"
                            }
                        ]
  tags                  = {
                            environment = "test"
                            project = "test"
                        }
}

About

Permit to create Security group on Azure from Terragrunt

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages