Skip to content

Commit 5bfb3e0

Browse files
committed
syntax fix
1 parent a2b9b45 commit 5bfb3e0

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

..env

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
TAG=6.4.1
33
ELASTIC_VERSION=6.4.1
44
ELASTIC_HOST_NAME=elksvr0
5-
ELASTIC_HOST_IP=10.243.48.7
6-
ELASTIC_CLUSTER=10.243.48.7,10.243.50.11,10.243.50.7
5+
ELASTIC_HOST_IP=10.20.40.7
6+
ELASTIC_CLUSTER=10.20.40.7,10.20.30.11,10.20.30.7
77
ELASTIC_PASSWORD=CHANGEME
88
ELASTIC_CONFIG_DIR=/usr/share/elasticsearch/config

config/beats/CrushFTP-Filbeat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
filebeat::beat_name: 'CrushFTP'
22
filebeat::outputs:
33
logstash:
4-
hosts: ['10.243.50.24:5000'] #AZURE-LB
4+
hosts: ['10.20.30.24:5000'] #AZURE-LB
55
loadbalance: true
66
filebeat::logging:
77
level: 'info'

config/beats/SMTP-Filebeat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
filebeat::beat_name: 'smtpbeat'
22
filebeat::outputs:
33
logstash:
4-
hosts: ['10.243.50.24:5000'] #AZURE-LB
4+
hosts: ['10.20.30.24:5000'] #AZURE-LB
55
loadbalance: true
66
filebeat::logging:
77
level: 'info'

config/certs/instances.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
instances:
22
- name: "monitoringksvr0"
33
ip:
4-
- "10.243.48.7"
4+
- "10.20.40.7"
55
dns:
66
- "monitoringksvr0.dom.co.uk"
77
- name: "monitoringesvr0"
88
ip:
9-
- "10.243.50.11"
9+
- "10.20.30.11"
1010
dns:
1111
- "monitoringesvr0.dom.co.uk"
1212
- name: "monitoringesvr1"
1313
ip:
14-
- "10.243.50.7"
14+
- "10.20.30.7"
1515
dns:
1616
- "monitoringesvr1.dom.co.uk"

config/logstash/logstash.conf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,17 +75,17 @@ output {
7575
stdout { codec => rubydebug }
7676
if "smtp-relay" in [tags] {
7777
elasticsearch {
78-
hosts => ["10.243.50.29","10.243.50.28","10.243.50.31"]
78+
hosts => ["10.20.30.29","10.20.30.28","10.20.30.31"]
7979
user => 'elastic'
80-
password => 'mLQRt8Uat63f'
80+
password => 'changeme'
8181
index => "smtp-%{[@metadata][version]}-%{+YYYY.MM.dd}"
8282
}
8383
}
8484
else {
8585
elasticsearch {
86-
hosts => ["10.243.50.29","10.243.50.28","10.243.50.31"]
86+
hosts => ["10.20.30.29","10.20.30.28","10.20.30.31"]
8787
user => 'elastic'
88-
password => 'mLQRt8Uat63f'
88+
password => 'changeme'
8989
index => "crushftp-%{[@metadata][version]}-%{+YYYY.MM.dd}" #with version
9090
}
9191
}

config/puppet/monitoring.pp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
# determine git branch
2626
if $::environment == 'production' {
2727
$gitbranch = 'master'
28-
$cluster = '10.243.50.29,10.243.50.28,10.243.50.31'
28+
$cluster = '10.20.30.29,10.20.30.28,10.20.30.31'
2929
}
3030
else {
3131
$gitbranch = 'development'
32-
$cluster = '172.21.248.133,172.21.248.137,172.21.248.139'
32+
$cluster = '172.20.20.133,172.20.20.137,172.20.20.139'
3333
}
3434
# create docker environment file
3535
$nodename = $trusted['hostname']
@@ -137,8 +137,8 @@
137137
# $elastic_host_ip = $facts['networking']['ip']
138138
# $elastic_host_name = $trusted['hostname']
139139
# $elastic_cluster = $trusted['hostname'] ? {
140-
# /^dev/ => "172.21.248.133,172.21.248.137,172.21.248.139",
141-
# default => "10.243.50.29,10.243.50.28,10.243.50.31",
140+
# /^dev/ => "172.20.20.133,172.20.20.137,172.20.20.139",
141+
# default => "10.20.30.29,10.20.30.28,10.20.30.31",
142142
# }
143143
#
144144
# docker::run { 'elasticsearch':

terraform/vars.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,20 +52,20 @@ variable "env_vars" {
5252
SubID = ""
5353
vNetName = "production"
5454
SubNetName = "app"
55-
SubNetSpace = "10.243.50.0/23"
55+
SubNetSpace = "10.20.30.0/23"
5656

5757
#DR
5858
drlocation = "westeurope"
5959
drSubID = ""
6060
drvNetName = "dr"
6161
drSubNetName = "app"
62-
drSubNetSpace = "10.243.58.0/23"
62+
drSubNetSpace = "10.20.60.0/23"
6363

6464
#DEV
6565
devlocation = "northeurope"
6666
devSubID = ""
6767
devvNetName = "sdlc"
6868
devSubNetName = "app"
69-
devSubNetSpace = "172.21.248.128/25"
69+
devSubNetSpace = "172.20.20.128/25"
7070
}
7171
}

0 commit comments

Comments
 (0)