X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=debian-mirror.yaml;h=7ae12c1b03184abc45b3d370b398a3779cdf483c;hb=b15bdfc8cc42f44089e0214cbfe12227f85a337a;hp=f9e769970a698dd9ed911ff27b22916c8fb9fee9;hpb=70807d77ee33db3958534999d4e8651c6272a348;p=apex-tripleo-heat-templates.git diff --git a/debian-mirror.yaml b/debian-mirror.yaml index f9e76997..7ae12c1b 100644 --- a/debian-mirror.yaml +++ b/debian-mirror.yaml @@ -1,31 +1,31 @@ -Description: 'Debian-mirror: A Debian or Ubuntu mirror in the cloud' -Parameters: +description: 'Debian-mirror: A Debian or Ubuntu mirror in the cloud' +parameters: DebianMirrorMirror: - Default: http://archive.ubuntu.com/ubuntu - Description: The mirror that is to be used as the source - Type: String + 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 + default: ["saucy", "saucy-updates", "saucy-security"] + description: The suites to be mirrored + type: JSON DebianMirrorArchitectures: - Default: [{"arch": "amd64"}] - Description: The architectures to be mirrored - Type: JSON + 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 -Resources: + default: ["main", "restricted", "universe", "multiverse"] + description: The components to be mirrored + type: JSON +resources: debianMirrorConfig: - Type: AWS::AutoScaling::LaunchConfiguration - Metadata: + type: AWS::AutoScaling::LaunchConfiguration + metadata: debian-mirror: mirror: - Ref: DebianMirrorMirror + get_param: DebianMirrorMirror suites: - Ref: DebianMirrorSuites + get_param: DebianMirrorSuites architectures: - Ref: DebianMirrorArchitectures + get_param: DebianMirrorArchitectures components: - Ref: DebianMirrorComponents + get_param: DebianMirrorComponents