|
|
---
|
|
|
# switch ufo entrance
|
|
|
|
|
|
- hosts: localhost
|
|
|
|
|
|
vars_prompt:
|
|
|
- name: "confirmation"
|
|
|
prompt: "Start to change . Please Enter YES to continue."
|
|
|
private: no
|
|
|
- name: "switch_to_where"
|
|
|
prompt: "switch to qcloud, please enter [qq], switch to aws, enter [aws]"
|
|
|
private: no
|
|
|
|
|
|
vars_files:
|
|
|
- extra_vars/all.yml
|
|
|
|
|
|
vars:
|
|
|
qcloud_key: "{{ lookup('hashi_vault', 'secret=yoho/ops/qcloud token='+'{{vault.token}}'+' url='+'{{vault.server}}') }}"
|
|
|
|
|
|
tasks:
|
|
|
- name: "make sure user type YES to confirm"
|
|
|
fail:
|
|
|
msg: "user do not type YES"
|
|
|
when: confirmation != 'YES'
|
|
|
|
|
|
- name: switch to qq
|
|
|
domain_modify:
|
|
|
secretId: "{{ qcloud_key.SecretId }}"
|
|
|
secretKey: "{{ qcloud_key.SecretKey }}"
|
|
|
domain_name: "2.yohobuy.com"
|
|
|
value: "140.143.217.201"
|
|
|
when: switch_to_where == 'qq'
|
|
|
|
|
|
- name: switch to aws
|
|
|
domain_modify:
|
|
|
secretId: "{{ qcloud_key.SecretId }}"
|
|
|
secretKey: "{{ qcloud_key.SecretKey }}"
|
|
|
domain_name: "2.yohobuy.com"
|
|
|
value: "java-public-lb-862332839.cn-north-1.elb.amazonaws.com.cn"
|
|
|
when: switch_to_where == 'aws' |
|
|
\ No newline at end of file |
...
|
...
|
|