Giter Club home page Giter Club logo

terraform-azurerm-caf-diagnostics-logging's Introduction

Build status

Deploys the operations log repositories

Creates Storage Account and Event Hubs to be used for diagnostics and operations logs.

Reference the module to a specific version (recommended):

module "diagnostics_logging" {
    source  = "aztfmod/caf-diagnostics-logging/azurerm"
    version = "0.x.y"
  
    resource_group_name               = var.rg
    prefix                            = var.prefix
    location                          = var.location
    tags                              = var.tags
}

Parameters

resource_group_name

(Required) Name of the resource group to deploy the operations log.

variable "resource_group_name" {
  description = "(Required) Name of the resource group to deploy the operations log."
}

Example

virtual_network_rg = "my-vnet"

location

(Required) Define the region where the resource groups will be created

variable "location" {
  description = "(Required) Define the region where the resource groups will be created"
  type        = string
}

Example

    location    = "southeastasia"

prefix

(Optional) You can use a prefix to add to the list of resource groups you want to create

variable "prefix" {
    description = "(Optional) You can use a prefix to add to the list of resource groups you want to create"
}

Example

locals {
    prefix = "${random_string.prefix.result}-"
}

resource "random_string" "prefix" {
    length  = 4
    upper   = false
    special = false
}

tags

(Required) Map of tags for the deployment

variable "tags" {
  description = "(Required) map of tags for the deployment"
}

Example

tags = {
    environment     = "DEV"
    owner           = "Arnaud"
    deploymentType  = "Terraform"
  }

enable_event_hub

(Optional) Determine to deploy Event Hub for the configuration

variable "enable_event_hub" {
  description = "(Optional) Determine to deploy Event Hub for the configuration"
  default = true
}

Example

enable_event_hub = false

convention

(Required) Naming convention to be used.

variable "convention" {
  description = "(Required) Naming convention used"
}

Example

convention = "cafclassic"

Output

Name Type Description
diagnostics_map map(strings) Contains the diagnostics details as follow:
- "diags_sa"- Storage account resource ID
- "eh_name"- Event Hub Name
- "eh_id" - Event Hub Resource ID

terraform-azurerm-caf-diagnostics-logging's People

Contributors

arnaudlh avatar laurentlesle avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.