Skip to content

Commit 3af719c

Browse files
update module
1 parent e7e2517 commit 3af719c

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

examples/complete/aws/main.tf

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
locals {
2-
name = "test"
3-
region = "ap-south-1"
4-
environment = "squareops"
2+
name = ""
3+
region = ""
4+
environment = ""
55
additional_tags = {
66
Owner = "organization_name"
77
Expires = "Never"
@@ -11,7 +11,7 @@ locals {
1111

1212
module "sonarqube" {
1313
source = "squareops/sonarqube/kubernetes"
14-
version = "3.1.0"
14+
version = "3.1.1"
1515
sonarqube_config = {
1616
hostname = "sonarqube.squareops.in"
1717
values_yaml = file("./helm/values.yaml")
@@ -24,8 +24,8 @@ module "sonarqube" {
2424
postgresql_external_server_url = ""
2525
sonarqube_password = ""
2626

27-
updateExistingSonarqube = true
28-
sonarqube_current_password = "orWZVlhIXZvD3W4RXA7h" # if you upgrade sonarqube then you have to provide your previous sonarqube password ##Secret name=sonarqube-postgresql
29-
postgresql_current_password = "ZIMOR6c3joeYJvAyVUnu" # if you upgrade sonarqube then you have to provide your previous postgresql password ##Secret name=sonarqube-sonarqube-admin-password
27+
updateExistingSonarqube = false # if you have existing sonarqube and want to upgrade,then enable it.
28+
sonarqube_current_password = "xxxxx" # if you upgrade sonarqube then you have to provide your previous sonarqube password ##Secret name=sonarqube-postgresql
29+
postgresql_current_password = "xxxxxxx" # if you upgrade sonarqube then you have to provide your previous postgresql password ##Secret name=sonarqube-sonarqube-admin-password
3030
}
3131
}

examples/complete/aws/provider.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ provider "aws" {
66
}
77

88
data "aws_eks_cluster" "cluster" {
9-
name = "stage-sqops"
9+
name = ""
1010
}
1111

1212
data "aws_eks_cluster_auth" "cluster" {
13-
name = "stage-sqops"
13+
name = ""
1414
}
1515

1616

0 commit comments

Comments
 (0)