28 lines
577 B
YAML
28 lines
577 B
YAML
|
---
|
||
|
x-efs_fs_opts_common: &common_fs_opts
|
||
|
fstype: efs
|
||
|
fsopts:
|
||
|
- _netdev
|
||
|
- tls
|
||
|
- iam
|
||
|
- rw
|
||
|
|
||
|
mounts:
|
||
|
- name: build-repos-internal
|
||
|
<<: *common_fs_opts
|
||
|
fsid: fs-XXXXXXXX
|
||
|
mount_point: /mnt/repos-internal
|
||
|
ip_map:
|
||
|
us-east-2a: 10.100.100.248
|
||
|
us-east-2b: 10.100.101.248
|
||
|
us-east-2c: 10.100.102.248
|
||
|
- name: build-repos-production
|
||
|
<<: *common_fs_opts
|
||
|
fsid: fs-XXXXXXXX
|
||
|
mount_point: /mnt/repos-production
|
||
|
ip_map:
|
||
|
us-east-2a: 10.100.100.248
|
||
|
us-east-2b: 10.100.101.248
|
||
|
us-east-2c: 10.100.102.248
|
||
|
...
|