Commit f186708b authored by root's avatar root
Browse files

updated ansible_workspace_dir

parent c8df999e
No related merge requests found
Showing with 13 additions and 7 deletions
+13 -7
...@@ -16,6 +16,12 @@ config_files_dir: /wingspan_config_files ...@@ -16,6 +16,12 @@ config_files_dir: /wingspan_config_files
# Secret files dir # Secret files dir
docker_secret_files_dir: /wingspan_docker_secret_location docker_secret_files_dir: /wingspan_docker_secret_location
#smtp details
smtp_host: #smtp_host
smtp_port: #smtp_port
smtp_username: #smtp_username
smtp_password: #smtp_password
smtp_email: #from smtp_email
mysql_host: #mysql server IP mysql_host: #mysql server IP
mysql_username: #mysql username mysql_username: #mysql username
......
...@@ -28,8 +28,8 @@ file.config.name=FormConfig.yml ...@@ -28,8 +28,8 @@ file.config.name=FormConfig.yml
#services.esindexer.host=10.2.1.30 #services.esindexer.host=10.2.1.30
#services.esindexer.host.name=http://10.2.1.30/ #services.esindexer.host.name=http://10.2.1.30/
#services.esindexer.host.port=9200 #services.esindexer.host.port=9200
#services.esindexer.username=elastic #services.esindexer.username=elas
#services.esindexer.password=Elastic123 #services.esindexer.password=Elast3
#es.fs.forms.index.name=fs-forms #es.fs.forms.index.name=fs-forms
#es.fs.forms.document.type=forms #es.fs.forms.document.type=forms
#es.fs.formsdata.index.name=fs-forms-data #es.fs.formsdata.index.name=fs-forms-data
......
...@@ -23,12 +23,12 @@ flyway.url=jdbc:mysql://{{ mysql_host }}:3306/retail_user ...@@ -23,12 +23,12 @@ flyway.url=jdbc:mysql://{{ mysql_host }}:3306/retail_user
flyway.locations=db/migration/ddl flyway.locations=db/migration/ddl
### Email configuration ### ### Email configuration ###
mail.smtp.host=email-smtp.ap-south-1.amazonaws.com mail.smtp.host={{ smtp_host }}
mail.smtp.auth=true mail.smtp.auth=true
mail.smtp.port=587 mail.smtp.port={{ smtp_port }}
mail.smtp.user=AKIAUT2CINKDQZBB5BBT mail.smtp.user={{ smtp_username }}
mail.smtp.password=BFlcJ5K2pekNcgLG8Joo9y78JL5DyO0gIhztJpeRm93d mail.smtp.password={{ smtp_password }}
mail.smtp.email=idc-eagle@tarento.com mail.smtp.email={{ smtp_email }}
### Expiry Timings ### ### Expiry Timings ###
otp.validity.mins=5 otp.validity.mins=5
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment