6f3f9ec6da
They're mostly rather higgledy-piggledy at the moment which makes it quite difficult to compare against files where these are sorted. EG compute.yaml from I687a00c7dc164ba044f9f2dfca96a02401427855. Change-Id: I508a3d0f6a79810d2100fdd1ad143bcd37bf8c00
32 lines
1004 B
YAML
32 lines
1004 B
YAML
description: 'Debian-mirror: A Debian or Ubuntu mirror in the cloud'
|
|
parameters:
|
|
DebianMirrorArchitectures:
|
|
default: [{"arch": "amd64"}]
|
|
description: The architectures to be mirrored
|
|
type: JSON
|
|
DebianMirrorComponents:
|
|
default: ["main", "restricted", "universe", "multiverse"]
|
|
description: The components to be mirrored
|
|
type: JSON
|
|
DebianMirrorMirror:
|
|
default: http://archive.ubuntu.com/ubuntu
|
|
description: The mirror that is to be used as the source
|
|
type: string
|
|
DebianMirrorSuites:
|
|
default: ["saucy", "saucy-updates", "saucy-security"]
|
|
description: The suites to be mirrored
|
|
type: JSON
|
|
resources:
|
|
debianMirrorConfig:
|
|
type: AWS::AutoScaling::LaunchConfiguration
|
|
metadata:
|
|
debian-mirror:
|
|
mirror:
|
|
get_param: DebianMirrorMirror
|
|
suites:
|
|
get_param: DebianMirrorSuites
|
|
architectures:
|
|
get_param: DebianMirrorArchitectures
|
|
components:
|
|
get_param: DebianMirrorComponents
|