Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 1.67 KB

File metadata and controls

46 lines (33 loc) · 1.67 KB

SonarQube

A Terraform module for creating sonarqube with its needed infrastructure.

Module Features

This module creates a sonarqube with the following infrastructure ready to work:

Getting Started

module "sonarqube" {
    source = "../../modules/sonarqube"

    resource_group_name = "mysonarqube123"
    account_name = "mysonarqube123"
    sql_server_name = "mysonarqube122"
    app_service_plan_name = "mysonarqube123"
    sonarqube_instances = [ "sonarqube-for-organization-a", "sonarqube-for-organization-b" ]

    tags =  {
        MyTag = "MyTag value"
    }
}

Module Argument Reference

See variables.tf

Samples

You have the samples in samples folder