From 7622c1857567b828f27ca3e0c738405628bbd7e0 Mon Sep 17 00:00:00 2001 From: Steve Smith Date: Wed, 21 Oct 2020 13:13:14 +1100 Subject: [PATCH] DCD-1123: Typo in playbook, and add rest of EC2 instances. --- migraion-video-instances.yml | 20 ------------------- migration-video-instances.yml | 36 +++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+), 20 deletions(-) delete mode 100644 migraion-video-instances.yml create mode 100644 migration-video-instances.yml diff --git a/migraion-video-instances.yml b/migraion-video-instances.yml deleted file mode 100644 index fefb95f..0000000 --- a/migraion-video-instances.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -- hosts: localhost - connection: local - gather_facts: True - become: False - - vars: - vpc_name: "DCD-Migration-Video" - business_unit: "Engineering-Server" - resource_owner: "{{ ansible_user_id }}" - aws_region: "us-west-2" - ec2_termination_protection: True - dns_domain: "deplops.com" - - roles: - - role: aws-vpc - - role: ec2-instance - vars: - instance_name: "Jira Software Migration Source Instance" - instance_hostname: "jira-software-before" diff --git a/migration-video-instances.yml b/migration-video-instances.yml new file mode 100644 index 0000000..4426a61 --- /dev/null +++ b/migration-video-instances.yml @@ -0,0 +1,36 @@ +--- +- hosts: localhost + connection: local + gather_facts: True + become: False + + vars: + vpc_name: "DCD-Migration-Video" + business_unit: "Engineering-Server" + resource_owner: "{{ ansible_user_id }}" + aws_region: "us-west-2" + ec2_termination_protection: True + dns_domain: "deplops.com" + + roles: + - role: aws-vpc + - role: ec2-instance + vars: + instance_name: "Jira Software Migration Source Instance" + instance_hostname: "jira-software-before" + - role: ec2-instance + vars: + instance_name: "Jira ServiceDesk Migration Source Instance" + instance_hostname: "jira-sd-before" + - role: ec2-instance + vars: + instance_name: "Confluence Migration Source Instance" + instance_hostname: "confluence-before" + - role: ec2-instance + vars: + instance_name: "Bitbucket Migration Source Instance" + instance_hostname: "bitbucket-before" + - role: ec2-instance + vars: + instance_name: "Crowd Migration Source Instance" + instance_hostname: "crowd-before"