forked from orsonkent/bosh-sample-release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwordpress-aws.yml
106 lines (93 loc) · 2.07 KB
/
wordpress-aws.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
---
name: wordpress
director_uuid: 718f5344-c8e4-4266-ab10-3a75e1638e25 # CHANGE: Director UUID
release:
name: wordpress
version: latest
compilation:
workers: 3
network: default
reuse_compilation_vms: true
cloud_properties:
instance_type: m1.small
update:
canaries: 1
canary_watch_time: 3000-120000
update_watch_time: 3000-120000
max_in_flight: 4
max_errors: 1
networks:
- name: elastic
type: vip
cloud_properties: {}
- name: default
type: dynamic
cloud_properties:
security_groups:
- default # CHANGE: Security Group
resource_pools:
- name: common
network: default
size: 4
stemcell:
name: bosh-stemcell
version: latest
cloud_properties:
instance_type: m1.small
jobs:
- name: mysql
template: mysql
instances: 1
resource_pool: common
networks:
- name: default
default: [dns, gateway]
- name: nfs
template: debian_nfs_server
instances: 1
resource_pool: common
networks:
- name: default
default: [dns, gateway]
- name: wordpress
template: wordpress
instances: 1
resource_pool: common
networks:
- name: default
default: [dns, gateway]
- name: nginx
template: nginx
instances: 1
resource_pool: common
networks:
- name: default
default: [dns, gateway]
- name: elastic
static_ips:
- 107.21.118.225 # CHANGE: Elastic IP 1
properties:
env:
mysql:
address: 0.mysql.default.wordpress.microbosh
password: rootpass
nfs_server:
address: 0.nfs.default.wordpress.microbosh
network: *.wordpress.microbosh
wordpress:
admin: [email protected]
servers:
- 0.wordpress.default.wordpress.microbosh
servername: 107.21.118.225 # CHANGE: Elastic IP 1
db:
name: wp
user: wordpress
pass: w0rdpr3ss
auth_key: random key
secure_auth_key: random key
logged_in_key: random key
nonce_key: random key
auth_salt: random key
secure_auth_salt: random key
logged_in_salt: random key
nonce_salt: random key