thinkspill / terraform-aws-sonarqube

SonarQube Terraform Module for AWS

Home Page:https://registry.terraform.io/modules/cn-terraform/sonarqube

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SonarQube Terraform Module for AWS

This Terraform module deploys a SonarQube community server on AWS. Based on official Sonarqube Docker image https://hub.docker.com/_/sonarqube.

CircleCI

Usage

Check valid versions on:

The networking module should look like this:

    module "networking" {
	    source          = "cn-terraform/networking/aws"
        version         = "2.0.4"
        name_preffix    = "base"
        profile         = "aws_profile"
        region          = "us-east-1"
        vpc_cidr_block  = "192.168.0.0/16"
        availability_zones                          = [ "us-east-1a", "us-east-1b", "us-east-1c", "us-east-1d" ]
        public_subnets_cidrs_per_availability_zone  = [ "192.168.0.0/19", "192.168.32.0/19", "192.168.64.0/19", "192.168.96.0/19" ]
        private_subnets_cidrs_per_availability_zone = [ "192.168.128.0/19", "192.168.160.0/19", "192.168.192.0/19", "192.168.224.0/19" ]
	}

Check versions for this module on:

Output values

  • sonar_lb_id: SonarQube Load Balancer ID
  • sonar_lb_arn: SonarQube Load Balancer ARN
  • sonar_lb_arn_suffix: SonarQube Load Balancer ARN Suffix
  • sonar_lb_dns_name: SonarQube Load Balancer DNS Name
  • sonar_lb_zone_id: SonarQube Load Balancer Zone ID

About

SonarQube Terraform Module for AWS

https://registry.terraform.io/modules/cn-terraform/sonarqube

License:Apache License 2.0


Languages

Language:HCL 100.0%