customresource-elastictranscoder 0.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.rakeTasks +7 -0
- data/ChangeLog.md +4 -0
- data/Gemfile +13 -0
- data/Gemfile.lock +76 -0
- data/LICENSE +201 -0
- data/LICENSE.txt +203 -0
- data/README.md +2 -0
- data/Rakefile +30 -0
- data/bin/cfn-customresource-elastictranscoder +16 -0
- data/customresource-elastictranscoder.gemspec +33 -0
- data/features/.gitkeep +0 -0
- data/features/customresource-elastictranscoder.feature +1 -0
- data/features/step_definitions/.gitkeep +0 -0
- data/features/step_definitions/customresource-elastictranscoder_steps.rb +1 -0
- data/lib/customresource/elastictranscoder.rb +2 -0
- data/lib/customresource/elastictranscoder/cli.rb +64 -0
- data/lib/customresource/elastictranscoder/mixins/actions.rb +135 -0
- data/lib/customresource/elastictranscoder/mixins/cli.rb +282 -0
- data/lib/customresource/elastictranscoder/version.rb +6 -0
- data/tests/elastictranscoder.create.json +672 -0
- data/tests/elastictranscoder.pipeline.create.json +22 -0
- data/tests/elastictranscoder.preset.create.json +24 -0
- data/tests/elastictranscoder.preset.video.create.json +100 -0
- data/tests/elastictranscoder.sh.create.log +74 -0
- data/tests/elastictranscoder.sh.delete.log +74 -0
- data/tests/elastictranscoder.sh.pipeline.create.log +74 -0
- data/tests/elastictranscoder.sh.pipeline.delete.log +74 -0
- data/tests/elastictranscoder.sh.preset.create.log +74 -0
- data/tests/elastictranscoder.sh.preset.video.create.log +75 -0
- data/tests/update.sh +17 -0
- metadata +240 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"StackId": "arn:aws:cloudformation:us-east-1:795848752257:stack/systest-065-drm/54fd4490-3987-11e4-9477-500150b34cb4",
|
|
3
|
+
"ResponseURL": "https://cloudformation-custom-resource-response-useast1.s3.amazonaws.com/arn%3Aaws%3Acloudformation%3Aus-east-1%3A795848752257%3Astack/systest-065-drm/54fd4490-3987-11e4-9477-500150b34cb4%7CVideoTranscoder%7C97087144-e4e5-4a1e-9237-bfd2acdb6ef8?AWSAccessKeyId=AKIAJNXHFR7P7YGKLDPQ&Expires=1411573449&Signature=6cMrGFB%2B8KgBLJsTWxD3ocoy0nQ%3D",
|
|
4
|
+
"ResourceProperties": {
|
|
5
|
+
"Notifications": {
|
|
6
|
+
"Completed": "",
|
|
7
|
+
"Warning": "",
|
|
8
|
+
"Progressing": "",
|
|
9
|
+
"Error": ""
|
|
10
|
+
},
|
|
11
|
+
"Input_Bucket": "amplify-systest-video",
|
|
12
|
+
"Role": "arn:aws:iam::795848752257:role/customresource/elastictranscoder/systest-065-drm-VideoTranscoderIAMRole-CS9XTQDSHVPG",
|
|
13
|
+
"Name": "amplify-systest-pipeline",
|
|
14
|
+
"Output_Bucket": "amplify-systest-video-output",
|
|
15
|
+
"ServiceToken": "arn:aws:sns:us-east-1:795848752257:customresource-elastictranscoder-795848752257-systest"
|
|
16
|
+
},
|
|
17
|
+
"RequestType": "Create",
|
|
18
|
+
"ResourceType": "Custom::ElasticTranscoder_Pipeline",
|
|
19
|
+
"RequestId": "97087144-e4e5-4a1e-9237-bfd2acdb6ef8",
|
|
20
|
+
"TopicArn": "arn:aws:sns:us-east-1:795848752257:customresource-elastictranscoder-795848752257-systest",
|
|
21
|
+
"LogicalResourceId": "TranscoderPipeline"
|
|
22
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"StackId": "arn:aws:cloudformation:us-east-1:795848752257:stack/systest-065-drm/54fd4490-3987-11e4-9477-500150b34cb4",
|
|
3
|
+
"ResponseURL": "https://cloudformation-custom-resource-response-useast1.s3.amazonaws.com/arn%3Aaws%3Acloudformation%3Aus-east-1%3A795848752257%3Astack/systest-065-drm/54fd4490-3987-11e4-9477-500150b34cb4%7CVideoTranscoder%7C97087144-e4e5-4a1e-9237-bfd2acdb6ef8?AWSAccessKeyId=AKIAJNXHFR7P7YGKLDPQ&Expires=1411573449&Signature=6cMrGFB%2B8KgBLJsTWxD3ocoy0nQ%3D",
|
|
4
|
+
"ResourceProperties": {
|
|
5
|
+
"Audio": {
|
|
6
|
+
"Channels": "2",
|
|
7
|
+
"Codec_Options": {
|
|
8
|
+
"Profile": "AAC-LC"
|
|
9
|
+
},
|
|
10
|
+
"Bit_Rate": "128",
|
|
11
|
+
"Codec": "AAC",
|
|
12
|
+
"Sample_Rate": "44100"
|
|
13
|
+
},
|
|
14
|
+
"Container": "ts",
|
|
15
|
+
"Name": "amplify-systest-hlsAudio",
|
|
16
|
+
"Description": "amplify-systest-hlsAudio",
|
|
17
|
+
"ServiceToken": "arn:aws:sns:us-east-1:795848752257:customresource-elastictranscoder-795848752257-systest"
|
|
18
|
+
},
|
|
19
|
+
"RequestType": "Create",
|
|
20
|
+
"ResourceType": "Custom::ElasticTranscoder",
|
|
21
|
+
"RequestId": "97087144-e4e5-4a1e-9237-bfd2acdb6ef8",
|
|
22
|
+
"TopicArn": "arn:aws:sns:us-east-1:795848752257:customresource-elastictranscoder-795848752257-systest",
|
|
23
|
+
"LogicalResourceId": "VideoTranscoder"
|
|
24
|
+
}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
{
|
|
2
|
+
"StackId": "arn:aws:cloudformation:us-east-1:795848752257:stack/systest-065-drm/54fd4490-3987-11e4-9477-500150b34cb4",
|
|
3
|
+
"ResponseURL": "https://cloudformation-custom-resource-response-useast1.s3.amazonaws.com/arn%3Aaws%3Acloudformation%3Aus-east-1%3A795848752257%3Astack/systest-065-drm/54fd4490-3987-11e4-9477-500150b34cb4%7CVideoTranscoder%7C97087144-e4e5-4a1e-9237-bfd2acdb6ef8?AWSAccessKeyId=AKIAJNXHFR7P7YGKLDPQ&Expires=1411573449&Signature=6cMrGFB%2B8KgBLJsTWxD3ocoy0nQ%3D",
|
|
4
|
+
"ResourceProperties": {
|
|
5
|
+
"Container": "ts",
|
|
6
|
+
"Thumbnails": {
|
|
7
|
+
"Format": "png",
|
|
8
|
+
"Sizing_Policy": "ShrinkToFit",
|
|
9
|
+
"Interval": "300",
|
|
10
|
+
"Padding_Policy": "NoPad",
|
|
11
|
+
"Max_Width": "192",
|
|
12
|
+
"Max_Height": "108"
|
|
13
|
+
},
|
|
14
|
+
"Video": {
|
|
15
|
+
"Max_Frame_Rate": "30",
|
|
16
|
+
"Keyframes_Max_Dist": "90",
|
|
17
|
+
"Codec_Options": {
|
|
18
|
+
"Profile": "baseline",
|
|
19
|
+
"MaxReferenceFrames": "1",
|
|
20
|
+
"Level": "3"
|
|
21
|
+
},
|
|
22
|
+
"Sizing_Policy": "ShrinkToFit",
|
|
23
|
+
"Max_Width": "480",
|
|
24
|
+
"Bit_Rate": "340",
|
|
25
|
+
"Codec": "H.264",
|
|
26
|
+
"Max_Height": "270",
|
|
27
|
+
"Frame_Rate": "auto",
|
|
28
|
+
"Watermarks": [
|
|
29
|
+
{
|
|
30
|
+
"Opacity": "100",
|
|
31
|
+
"Horizontal_Align": "Left",
|
|
32
|
+
"Target": "Content",
|
|
33
|
+
"Sizing_Policy": "ShrinkToFit",
|
|
34
|
+
"Max_Width": "10%",
|
|
35
|
+
"Vertical_Align": "Top",
|
|
36
|
+
"Vertical_Offset": "10%",
|
|
37
|
+
"Max_Height": "10%",
|
|
38
|
+
"Horizontal_Offset": "10%",
|
|
39
|
+
"Id": "TopLeft"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"Opacity": "100",
|
|
43
|
+
"Horizontal_Align": "Right",
|
|
44
|
+
"Target": "Content",
|
|
45
|
+
"Sizing_Policy": "ShrinkToFit",
|
|
46
|
+
"Max_Width": "10%",
|
|
47
|
+
"Vertical_Align": "Top",
|
|
48
|
+
"Vertical_Offset": "10%",
|
|
49
|
+
"Max_Height": "10%",
|
|
50
|
+
"Horizontal_Offset": "10%",
|
|
51
|
+
"Id": "TopRight"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"Opacity": "100",
|
|
55
|
+
"Horizontal_Align": "Left",
|
|
56
|
+
"Target": "Content",
|
|
57
|
+
"Sizing_Policy": "ShrinkToFit",
|
|
58
|
+
"Max_Width": "10%",
|
|
59
|
+
"Vertical_Align": "Bottom",
|
|
60
|
+
"Vertical_Offset": "10%",
|
|
61
|
+
"Max_Height": "10%",
|
|
62
|
+
"Horizontal_Offset": "10%",
|
|
63
|
+
"Id": "BottomLeft"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"Opacity": "100",
|
|
67
|
+
"Horizontal_Align": "Right",
|
|
68
|
+
"Target": "Content",
|
|
69
|
+
"Sizing_Policy": "ShrinkToFit",
|
|
70
|
+
"Max_Width": "10%",
|
|
71
|
+
"Vertical_Align": "Bottom",
|
|
72
|
+
"Vertical_Offset": "10%",
|
|
73
|
+
"Max_Height": "10%",
|
|
74
|
+
"Horizontal_Offset": "10%",
|
|
75
|
+
"Id": "BottomRight"
|
|
76
|
+
}
|
|
77
|
+
],
|
|
78
|
+
"Padding_Policy": "NoPad",
|
|
79
|
+
"Fixed_Gop": "true",
|
|
80
|
+
"Display_Aspect_Ratio": "auto"
|
|
81
|
+
},
|
|
82
|
+
"Description": "amplify-systest-hls0400k",
|
|
83
|
+
"Audio": {
|
|
84
|
+
"Channels": "2",
|
|
85
|
+
"Codec_Options": {
|
|
86
|
+
"Profile": "AAC-LC"
|
|
87
|
+
},
|
|
88
|
+
"Bit_Rate": "128",
|
|
89
|
+
"Codec": "AAC",
|
|
90
|
+
"Sample_Rate": "44100"
|
|
91
|
+
},
|
|
92
|
+
"Name": "amplify-systest-hls0400k",
|
|
93
|
+
"ServiceToken": "arn:aws:sns:us-east-1:795848752257:customresource-elastictranscoder-795848752257-systest"
|
|
94
|
+
},
|
|
95
|
+
"RequestType": "Create",
|
|
96
|
+
"ResourceType": "Custom::ElasticTranscoder",
|
|
97
|
+
"RequestId": "97087144-e4e5-4a1e-9237-bfd2acdb6ef8",
|
|
98
|
+
"TopicArn": "arn:aws:sns:us-east-1:795848752257:customresource-elastictranscoder-795848752257-systest",
|
|
99
|
+
"LogicalResourceId": "TranscoderPresethls0400k"
|
|
100
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
BASH=/bin/bash
|
|
2
|
+
BASHOPTS=cmdhist:extquote:force_fignore:hostcomplete:interactive_comments:progcomp:promptvars:sourcepath
|
|
3
|
+
BASH_ALIASES=()
|
|
4
|
+
BASH_ARGC=()
|
|
5
|
+
BASH_ARGV=()
|
|
6
|
+
BASH_CMDS=()
|
|
7
|
+
BASH_LINENO=([0]="0")
|
|
8
|
+
BASH_SOURCE=([0]="/opt/amplify/cfn/bin/elastictranscoder.sh")
|
|
9
|
+
BASH_VERSINFO=([0]="4" [1]="2" [2]="25" [3]="1" [4]="release" [5]="x86_64-pc-linux-gnu")
|
|
10
|
+
BASH_VERSION='4.2.25(1)-release'
|
|
11
|
+
DIRSTACK=()
|
|
12
|
+
DNS_NAME=chef.systest.qa.learning.amplify.com
|
|
13
|
+
EDITOR=vim
|
|
14
|
+
ENVIRONMENT=QA
|
|
15
|
+
EUID=0
|
|
16
|
+
EventProperties='{"StackId": "arn:aws:cloudformation:us-east-1:795848752257:stack/systest-065-drm/54fd4490-3987-11e4-9477-500150b34cb4", "ResponseURL": "https://cloudformation-custom-resource-response-useast1.s3.amazonaws.com/arn%3Aaws%3Acloudformation%3Aus-east-1%3A795848752257%3Astack/systest-065-drm/54fd4490-3987-11e4-9477-500150b34cb4%7CVideoTranscoder%7C97087144-e4e5-4a1e-9237-bfd2acdb6ef8?AWSAccessKeyId=AKIAJNXHFR7P7YGKLDPQ&Expires=1411573449&Signature=6cMrGFB%2B8KgBLJsTWxD3ocoy0nQ%3D", "ResourceProperties": {"Pipelines": [{"Notifications": {"Completed": "", "Warning": "", "Progressing": "", "Error": ""}, "Input_Bucket": "amplify-systest-video", "Role": "arn:aws:iam::795848752257:role/customresource/elastictranscoder/systest-065-drm-VideoTranscoderIAMRole-CS9XTQDSHVPG", "Name": "amplify-systest-pipeline", "Output_Bucket": "amplify-systest-video-output"}], "Presets": [{"Audio": {"Channels": "2", "Codec_Options": {"Profile": "AAC-LC"}, "Bit_Rate": "128", "Codec": "AAC", "Sample_Rate": "44100"}, "Container": "ts", "Name": "amplify-systest-hlsAudio", "Description": "amplify-systest-hlsAudio"}, {"Container": "ts", "Thumbnails": {"Format": "png", "Sizing_Policy": "ShrinkToFit", "Interval": "300", "Padding_Policy": "NoPad", "Max_Width": "192", "Max_Height": "108"}, "Video": {"Max_Frame_Rate": "30", "Keyframes_Max_Dist": "90", "Codec_Options": {"Profile": "baseline", "MaxReferenceFrames": "1", "Level": "3"}, "Sizing_Policy": "ShrinkToFit", "Max_Width": "480", "Bit_Rate": "340", "Codec": "H.264", "Max_Height": "270", "Frame_Rate": "auto", "Watermarks": [{"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopRight"}, {"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomRight"}], "Padding_Policy": "NoPad", "Fixed_Gop": "true", "Display_Aspect_Ratio": "auto"}, "Description": "amplify-systest-hls0400k", "Audio": {"Channels": "2", "Codec_Options": {"Profile": "AAC-LC"}, "Bit_Rate": "128", "Codec": "AAC", "Sample_Rate": "44100"}, "Name": "amplify-systest-hls0400k"}, {"Container": "ts", "Thumbnails": {"Format": "png", "Sizing_Policy": "ShrinkToFit", "Interval": "300", "Padding_Policy": "NoPad", "Max_Width": "192", "Max_Height": "108"}, "Video": {"Max_Frame_Rate": "30", "Keyframes_Max_Dist": "90", "Codec_Options": {"Profile": "baseline", "MaxReferenceFrames": "3", "Level": "3"}, "Sizing_Policy": "ShrinkToFit", "Max_Width": "480", "Bit_Rate": "650", "Codec": "H.264", "Max_Height": "270", "Frame_Rate": "auto", "Watermarks": [{"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopRight"}, {"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomRight"}], "Padding_Policy": "NoPad", "Fixed_Gop": "true", "Display_Aspect_Ratio": "auto"}, "Description": "amplify-systest-hls0600k", "Audio": {"Channels": "2", "Codec_Options": {"Profile": "AAC-LC"}, "Bit_Rate": "128", "Codec": "AAC", "Sample_Rate": "44100"}, "Name": "amplify-systest-hls0600k"}, {"Container": "ts", "Thumbnails": {"Format": "png", "Sizing_Policy": "ShrinkToFit", "Interval": "300", "Padding_Policy": "NoPad", "Max_Width": "192", "Max_Height": "108"}, "Video": {"Max_Frame_Rate": "30", "Keyframes_Max_Dist": "90", "Codec_Options": {"Profile": "main", "MaxReferenceFrames": "3", "Level": "3.1"}, "Sizing_Policy": "ShrinkToFit", "Max_Width": "640", "Bit_Rate": "872", "Codec": "H.264", "Max_Height": "360", "Frame_Rate": "auto", "Watermarks": [{"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopRight"}, {"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomRight"}], "Padding_Policy": "NoPad", "Fixed_Gop": "true", "Display_Aspect_Ratio": "auto"}, "Description": "amplify-systest-hls0800k", "Audio": {"Channels": "2", "Codec_Options": {"Profile": "AAC-LC"}, "Bit_Rate": "128", "Codec": "AAC", "Sample_Rate": "44100"}, "Name": "amplify-systest-hls0800k"}, {"Container": "ts", "Thumbnails": {"Format": "png", "Sizing_Policy": "ShrinkToFit", "Interval": "300", "Padding_Policy": "NoPad", "Max_Width": "192", "Max_Height": "108"}, "Video": {"Max_Frame_Rate": "30", "Keyframes_Max_Dist": "90", "Codec_Options": {"Profile": "main", "MaxReferenceFrames": "3", "Level": "3.1"}, "Sizing_Policy": "ShrinkToFit", "Max_Width": "640", "Bit_Rate": "1372", "Codec": "H.264", "Max_Height": "360", "Frame_Rate": "auto", "Watermarks": [{"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopRight"}, {"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomRight"}], "Padding_Policy": "NoPad", "Fixed_Gop": "true", "Display_Aspect_Ratio": "auto"}, "Description": "amplify-systest-hls1000k", "Audio": {"Channels": "2", "Codec_Options": {"Profile": "AAC-LC"}, "Bit_Rate": "128", "Codec": "AAC", "Sample_Rate": "44100"}, "Name": "amplify-systest-hls1000k"}, {"Container": "ts", "Thumbnails": {"Format": "png", "Sizing_Policy": "ShrinkToFit", "Interval": "300", "Padding_Policy": "NoPad", "Max_Width": "192", "Max_Height": "108"}, "Video": {"Max_Frame_Rate": "30", "Keyframes_Max_Dist": "90", "Codec_Options": {"Profile": "main", "MaxReferenceFrames": "3", "Level": "3.1"}, "Sizing_Policy": "ShrinkToFit", "Max_Width": "960", "Bit_Rate": "1536", "Codec": "H.264", "Max_Height": "540", "Frame_Rate": "auto", "Watermarks": [{"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopRight"}, {"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomRight"}], "Padding_Policy": "NoPad", "Fixed_Gop": "true", "Display_Aspect_Ratio": "auto"}, "Description": "amplify-systest-hls1500k", "Audio": {"Channels": "2", "Codec_Options": {"Profile": "AAC-LC"}, "Bit_Rate": "128", "Codec": "AAC", "Sample_Rate": "44100"}, "Name": "amplify-systest-hls1500k"}, {"Container": "ts", "Thumbnails": {"Format": "png", "Sizing_Policy": "ShrinkToFit", "Interval": "300", "Padding_Policy": "NoPad", "Max_Width": "192", "Max_Height": "108"}, "Video": {"Max_Frame_Rate": "30", "Keyframes_Max_Dist": "90", "Codec_Options": {"Profile": "main", "MaxReferenceFrames": "3", "Level": "3.1"}, "Sizing_Policy": "ShrinkToFit", "Max_Width": "960", "Bit_Rate": "2048", "Codec": "H.264", "Max_Height": "540", "Frame_Rate": "auto", "Watermarks": [{"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopRight"}, {"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomRight"}], "Padding_Policy": "NoPad", "Fixed_Gop": "true", "Display_Aspect_Ratio": "auto"}, "Description": "amplify-systest-hls2000k", "Audio": {"Channels": "2", "Codec_Options": {"Profile": "AAC-LC"}, "Bit_Rate": "128", "Codec": "AAC", "Sample_Rate": "44100"}, "Name": "amplify-systest-hls2000k"}, {"Container": "ts", "Thumbnails": {"Format": "png", "Sizing_Policy": "ShrinkToFit", "Interval": "300", "Padding_Policy": "NoPad", "Max_Width": "192", "Max_Height": "108"}, "Video": {"Max_Frame_Rate": "30", "Keyframes_Max_Dist": "90", "Codec_Options": {"Profile": "main", "MaxReferenceFrames": "3", "Level": "3.1"}, "Sizing_Policy": "ShrinkToFit", "Max_Width": "1280", "Bit_Rate": "2200", "Codec": "H.264", "Max_Height": "720", "Frame_Rate": "auto", "Watermarks": [{"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopRight"}, {"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomRight"}], "Padding_Policy": "NoPad", "Fixed_Gop": "true", "Display_Aspect_Ratio": "auto"}, "Description": "amplify-systest-hls2500k", "Audio": {"Channels": "2", "Codec_Options": {"Profile": "AAC-LC"}, "Bit_Rate": "128", "Codec": "AAC", "Sample_Rate": "44100"}, "Name": "amplify-systest-hls2500k"}], "ServiceToken": "arn:aws:sns:us-east-1:795848752257:customresource-elastictranscoder-795848752257-systest"}, "RequestType": "Create", "ResourceType": "Custom::ElasticTranscoder", "RequestId": "97087144-e4e5-4a1e-9237-bfd2acdb6ef8", "TopicArn": "arn:aws:sns:us-east-1:795848752257:customresource-elastictranscoder-795848752257-systest", "LogicalResourceId": "VideoTranscoder"}'
|
|
17
|
+
GROUPS=()
|
|
18
|
+
HOME=/root
|
|
19
|
+
HOSTNAME=chef.systest.qa.learning.amplify.com
|
|
20
|
+
HOSTTYPE=x86_64
|
|
21
|
+
IFS=$' \t\n'
|
|
22
|
+
LANG=en_US.UTF-8
|
|
23
|
+
LOGNAME=root
|
|
24
|
+
LS_COLORS='rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.axa=00;36:*.oga=00;36:*.spx=00;36:*.xspf=00;36:'
|
|
25
|
+
MACHTYPE=x86_64-pc-linux-gnu
|
|
26
|
+
MAIL=/var/mail/root
|
|
27
|
+
NODE_NAME=i-933a967d__chef.systest.qa.learning.amplify.com
|
|
28
|
+
OPTERR=1
|
|
29
|
+
OPTIND=1
|
|
30
|
+
OSTYPE=linux-gnu
|
|
31
|
+
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/rvm/bin
|
|
32
|
+
PPID=27348
|
|
33
|
+
PS4='+ '
|
|
34
|
+
PWD=/
|
|
35
|
+
ROLES='[chef_server, base, chef_cicd]'
|
|
36
|
+
SHELL=/bin/bash
|
|
37
|
+
SHELLOPTS=braceexpand:hashall:interactive-comments
|
|
38
|
+
SHLVL=3
|
|
39
|
+
SUDO_COMMAND=/bin/bash
|
|
40
|
+
SUDO_GID=1000
|
|
41
|
+
SUDO_UID=1000
|
|
42
|
+
SUDO_USER=ubuntu
|
|
43
|
+
TERM=xterm-256color
|
|
44
|
+
UID=0
|
|
45
|
+
USER=root
|
|
46
|
+
USERNAME=root
|
|
47
|
+
_=/sbin/start-stop-daemon
|
|
48
|
+
_system_arch=x86_64
|
|
49
|
+
_system_name=Ubuntu
|
|
50
|
+
_system_type=Linux
|
|
51
|
+
_system_version=12.04
|
|
52
|
+
rvm_bin_path=/usr/local/rvm/bin
|
|
53
|
+
rvm_gem_options='--no-rdoc --no-ri'
|
|
54
|
+
rvm_path=/usr/local/rvm
|
|
55
|
+
rvm_prefix=/usr/local
|
|
56
|
+
rvm_version='1.25.31 (stable)'
|
|
57
|
+
rvm_debug ()
|
|
58
|
+
{
|
|
59
|
+
(( ${rvm_debug_flag:-0} )) || return 0;
|
|
60
|
+
if rvm_pretty_print stderr; then
|
|
61
|
+
printf "%b" "${rvm_debug_clr:-}$*${rvm_reset_clr:-}\n";
|
|
62
|
+
else
|
|
63
|
+
printf "%b" "$*\n";
|
|
64
|
+
fi 1>&2
|
|
65
|
+
}
|
|
66
|
+
{
|
|
67
|
+
"Status" : "SUCCESS",
|
|
68
|
+
"PhysicalResourceId" : "ElasticTranscoder",
|
|
69
|
+
"StackId" : "",
|
|
70
|
+
"RequestId" : "",
|
|
71
|
+
"LogicalResourceId" : "",
|
|
72
|
+
"Data" : {
|
|
73
|
+
}
|
|
74
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
BASH=/bin/bash
|
|
2
|
+
BASHOPTS=cmdhist:extquote:force_fignore:hostcomplete:interactive_comments:progcomp:promptvars:sourcepath
|
|
3
|
+
BASH_ALIASES=()
|
|
4
|
+
BASH_ARGC=()
|
|
5
|
+
BASH_ARGV=()
|
|
6
|
+
BASH_CMDS=()
|
|
7
|
+
BASH_LINENO=([0]="0")
|
|
8
|
+
BASH_SOURCE=([0]="/opt/amplify/cfn/bin/elastictranscoder.sh")
|
|
9
|
+
BASH_VERSINFO=([0]="4" [1]="2" [2]="25" [3]="1" [4]="release" [5]="x86_64-pc-linux-gnu")
|
|
10
|
+
BASH_VERSION='4.2.25(1)-release'
|
|
11
|
+
DIRSTACK=()
|
|
12
|
+
DNS_NAME=chef.systest.qa.learning.amplify.com
|
|
13
|
+
EDITOR=vim
|
|
14
|
+
ENVIRONMENT=QA
|
|
15
|
+
EUID=0
|
|
16
|
+
EventProperties='{"StackId": "arn:aws:cloudformation:us-east-1:795848752257:stack/systest-065-drm/54fd4490-3987-11e4-9477-500150b34cb4", "ResponseURL": "https://cloudformation-custom-resource-response-useast1.s3.amazonaws.com/arn%3Aaws%3Acloudformation%3Aus-east-1%3A795848752257%3Astack/systest-065-drm/54fd4490-3987-11e4-9477-500150b34cb4%7CVideoTranscoder%7Cb68a061c-4b64-4dc5-a69b-92e71e70ed21?AWSAccessKeyId=AKIAJNXHFR7P7YGKLDPQ&Expires=1411572521&Signature=23leaeGedarXY5hLHt43P2M61QU%3D", "ResourceProperties": {"Pipelines": [{"Status": "Active", "Name": "amplify-systest-pipeline", "Content_Config": {"Storage_Class": "Standard", "Bucket": "amplify-systest-video-output", "Permissions": [{"Access": ["Read"], "Grantee": "AllUsers", "Grantee_Type": "Group"}]}, "Output_Bucket": "amplify-systest-video-output", "Notifications": {"Completed": "", "Warning": "", "Progressing": "", "Error": ""}, "Role": "systest-065-drm-VideoTranscoderIAMRole-CS9XTQDSHVPG", "Input_Bucket": "amplify-systest-video", "Thumbnail_Config": {"Storage_Class": "Standard", "Bucket": "amplify-systest-video-output", "Permissions": [{"Access": ["Read"], "Grantee": "AllUsers", "Grantee_Type": "Group"}]}}], "Presets": [{"Container": "ts", "Audio": {"Channels": "2", "Codec_Options": {"Profile": "AAC-LC"}, "Bit_Rate": "128", "Codec": "AAC", "Sample_Rate": "44100"}, "Type": "Custom", "Name": "amplify-systest-hlsAudio", "Description": "amplify-systest-hlsAudio"}, {"Container": "ts", "Thumbnails": {"Format": "png", "Sizing_Policy": "ShrinkToFit", "Interval": "300", "Padding_Policy": "NoPad", "Max_Width": "192", "Max_Height": "108"}, "Video": {"Max_Frame_Rate": "30", "Keyframes_Max_Dist": "90", "Codec_Options": {"Profile": "baseline", "MaxReferenceFrames": "1", "Level": "3"}, "Sizing_Policy": "ShrinkToFit", "Max_Width": "480", "Bit_Rate": "340", "Codec": "H.264", "Max_Height": "270", "Frame_Rate": "auto", "Watermarks": [{"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopRight"}, {"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomRight"}], "Padding_Policy": "NoPad", "Fixed_Gop": "true", "Display_Aspect_Ratio": "auto"}, "Description": "amplify-systest-hls0400k", "Audio": {"Channels":"2", "Codec_Options": {"Profile": "AAC-LC"}, "Bit_Rate": "128", "Codec": "AAC", "Sample_Rate": "44100"}, "Type": "Custom", "Name": "amplify-systest-hls0400k"}, {"Container": "ts", "Thumbnails": {"Format": "png", "Sizing_Policy": "ShrinkToFit", "Interval": "300", "Padding_Policy": "NoPad", "Max_Width": "192", "Max_Height": "108"}, "Video": {"Max_Frame_Rate": "30", "Keyframes_Max_Dist": "90", "Codec_Options": {"Profile": "baseline", "MaxReferenceFrames": "3", "Level": "3"}, "Sizing_Policy": "ShrinkToFit", "Max_Width": "480", "Bit_Rate": "650", "Codec": "H.264", "Max_Height": "270", "Frame_Rate": "auto", "Watermarks": [{"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopRight"}, {"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomRight"}], "Padding_Policy": "NoPad", "Fixed_Gop": "true", "Display_Aspect_Ratio": "auto"}, "Description": "amplify-systest-hls0600k", "Audio": {"Channels": "2", "Codec_Options": {"Profile": "AAC-LC"}, "Bit_Rate": "128", "Codec": "AAC", "Sample_Rate": "44100"}, "Type": "Custom", "Name": "amplify-systest-hls0600k"}, {"Container": "ts", "Thumbnails": {"Format": "png", "Sizing_Policy": "ShrinkToFit", "Interval": "300", "Padding_Policy": "NoPad", "Max_Width": "192", "Max_Height": "108"}, "Video": {"Max_Frame_Rate": "30", "Keyframes_Max_Dist": "90", "Codec_Options": {"Profile": "main", "MaxReferenceFrames": "3", "Level": "3.1"}, "Sizing_Policy": "ShrinkToFit", "Max_Width": "640", "Bit_Rate": "872", "Codec": "H.264", "Max_Height": "360", "Frame_Rate": "auto", "Watermarks": [{"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopRight"}, {"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomRight"}], "Padding_Policy": "NoPad", "Fixed_Gop": "true", "Display_Aspect_Ratio": "auto"}, "Description": "amplify-systest-hls0800k", "Audio": {"Channels": "2", "Codec_Options": {"Profile": "AAC-LC"}, "Bit_Rate": "128", "Codec": "AAC", "Sample_Rate": "44100"}, "Type": "Custom", "Name": "amplify-systest-hls0800k"}, {"Container": "ts", "Thumbnails": {"Format": "png", "Sizing_Policy": "ShrinkToFit", "Interval": "300", "Padding_Policy": "NoPad", "Max_Width": "192", "Max_Height": "108"}, "Video": {"Max_Frame_Rate": "30", "Keyframes_Max_Dist": "90", "Codec_Options": {"Profile": "main", "MaxReferenceFrames": "3", "Level": "3.1"}, "Sizing_Policy": "ShrinkToFit", "Max_Width": "640", "Bit_Rate": "1372", "Codec": "H.264", "Max_Height": "360", "Frame_Rate": "auto", "Watermarks": [{"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopRight"}, {"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomRight"}], "Padding_Policy": "NoPad", "Fixed_Gop": "true", "Display_Aspect_Ratio": "auto"}, "Description": "amplify-systest-hls1000k", "Audio": {"Channels": "2", "Codec_Options": {"Profile": "AAC-LC"}, "Bit_Rate": "128", "Codec": "AAC", "Sample_Rate": "44100"}, "Type": "Custom", "Name": "amplify-systest-hls1000k"}, {"Container": "ts", "Thumbnails": {"Format": "png", "Sizing_Policy": "ShrinkToFit", "Interval": "300", "Padding_Policy": "NoPad", "Max_Width": "192", "Max_Height": "108"}, "Video": {"Max_Frame_Rate": "30", "Keyframes_Max_Dist": "90", "Codec_Options": {"Profile": "main", "MaxReferenceFrames": "3", "Level": "3.1"}, "Sizing_Policy": "ShrinkToFit", "Max_Width": "960", "Bit_Rate": "1536", "Codec": "H.264", "Max_Height": "540", "Frame_Rate": "auto", "Watermarks": [{"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopRight"}, {"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomRight"}], "Padding_Policy": "NoPad", "Fixed_Gop": "true", "Display_Aspect_Ratio": "auto"}, "Description": "amplify-systest-hls1500k", "Audio": {"Channels": "2", "Codec_Options": {"Profile": "AAC-LC"}, "Bit_Rate": "128", "Codec": "AAC", "Sample_Rate": "44100"}, "Type": "Custom", "Name": "amplify-systest-hls1500k"}, {"Container": "ts", "Thumbnails": {"Format": "png", "Sizing_Policy": "ShrinkToFit", "Interval": "300", "Padding_Policy": "NoPad", "Max_Width": "192", "Max_Height": "108"}, "Video": {"Max_Frame_Rate": "30", "Keyframes_Max_Dist": "90", "Codec_Options": {"Profile": "main", "MaxReferenceFrames": "3", "Level": "3.1"}, "Sizing_Policy": "ShrinkToFit", "Max_Width": "960", "Bit_Rate": "2048", "Codec": "H.264", "Max_Height": "540", "Frame_Rate": "auto","Watermarks": [{"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopRight"}, {"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomRight"}], "Padding_Policy": "NoPad", "Fixed_Gop": "true", "Display_Aspect_Ratio": "auto"}, "Description": "amplify-systest-hls2000k", "Audio": {"Channels": "2", "Codec_Options": {"Profile": "AAC-LC"}, "Bit_Rate": "128", "Codec": "AAC", "Sample_Rate": "44100"}, "Type": "Custom", "Name": "amplify-systest-hls2000k"}, {"Container": "ts", "Thumbnails": {"Format": "png", "Sizing_Policy": "ShrinkToFit", "Interval": "300", "Padding_Policy": "NoPad", "Max_Width": "192", "Max_Height": "108"}, "Video": {"Max_Frame_Rate": "30", "Keyframes_Max_Dist": "90", "Codec_Options": {"Profile": "main", "MaxReferenceFrames": "3", "Level": "3.1"}, "Sizing_Policy": "ShrinkToFit", "Max_Width": "1280", "Bit_Rate": "2200", "Codec": "H.264", "Max_Height": "720", "Frame_Rate": "auto", "Watermarks": [{"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Top", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "TopRight"}, {"Opacity": "100", "Horizontal_Align": "Left", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomLeft"}, {"Opacity": "100", "Horizontal_Align": "Right", "Target": "Content", "Sizing_Policy": "ShrinkToFit", "Max_Width": "10%", "Vertical_Align": "Bottom", "Vertical_Offset": "10%", "Max_Height": "10%", "Horizontal_Offset": "10%", "Id": "BottomRight"}], "Padding_Policy": "NoPad", "Fixed_Gop": "true", "Display_Aspect_Ratio": "auto"}, "Description": "amplify-systest-hls2500k", "Audio": {"Channels": "2", "Codec_Options": {"Profile": "AAC-LC"}, "Bit_Rate": "128", "Codec": "AAC", "Sample_Rate": "44100"}, "Type": "Custom", "Name": "amplify-systest-hls2500k"}], "ServiceToken": "arn:aws:sns:us-east-1:795848752257:customresource-elastictranscoder-795848752257-systest"}, "RequestType": "Delete", "ResourceType": "Custom::ElasticTranscoder", "PhysicalResourceId": "systest-065-drm-VideoTranscoder-1V2GIENRGOTWN", "RequestId": "b68a061c-4b64-4dc5-a69b-92e71e70ed21", "TopicArn": "arn:aws:sns:us-east-1:795848752257:customresource-elastictranscoder-795848752257-systest", "LogicalResourceId": "VideoTranscoder"}'
|
|
17
|
+
GROUPS=()
|
|
18
|
+
HOME=/root
|
|
19
|
+
HOSTNAME=chef.systest.qa.learning.amplify.com
|
|
20
|
+
HOSTTYPE=x86_64
|
|
21
|
+
IFS=$' \t\n'
|
|
22
|
+
LANG=en_US.UTF-8
|
|
23
|
+
LOGNAME=root
|
|
24
|
+
LS_COLORS='rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.axa=00;36:*.oga=00;36:*.spx=00;36:*.xspf=00;36:'
|
|
25
|
+
MACHTYPE=x86_64-pc-linux-gnu
|
|
26
|
+
MAIL=/var/mail/root
|
|
27
|
+
NODE_NAME=i-933a967d__chef.systest.qa.learning.amplify.com
|
|
28
|
+
OPTERR=1
|
|
29
|
+
OPTIND=1
|
|
30
|
+
OSTYPE=linux-gnu
|
|
31
|
+
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/rvm/bin
|
|
32
|
+
PPID=28599
|
|
33
|
+
PS4='+ '
|
|
34
|
+
PWD=/
|
|
35
|
+
ROLES='[chef_server, base, chef_cicd]'
|
|
36
|
+
SHELL=/bin/bash
|
|
37
|
+
SHELLOPTS=braceexpand:hashall:interactive-comments
|
|
38
|
+
SHLVL=3
|
|
39
|
+
SUDO_COMMAND=/bin/bash
|
|
40
|
+
SUDO_GID=1000
|
|
41
|
+
SUDO_UID=1000
|
|
42
|
+
SUDO_USER=ubuntu
|
|
43
|
+
TERM=xterm-256color
|
|
44
|
+
UID=0
|
|
45
|
+
USER=root
|
|
46
|
+
USERNAME=root
|
|
47
|
+
_=/sbin/start-stop-daemon
|
|
48
|
+
_system_arch=x86_64
|
|
49
|
+
_system_name=Ubuntu
|
|
50
|
+
_system_type=Linux
|
|
51
|
+
_system_version=12.04
|
|
52
|
+
rvm_bin_path=/usr/local/rvm/bin
|
|
53
|
+
rvm_gem_options='--no-rdoc --no-ri'
|
|
54
|
+
rvm_path=/usr/local/rvm
|
|
55
|
+
rvm_prefix=/usr/local
|
|
56
|
+
rvm_version='1.25.31 (stable)'
|
|
57
|
+
rvm_debug ()
|
|
58
|
+
{
|
|
59
|
+
(( ${rvm_debug_flag:-0} )) || return 0;
|
|
60
|
+
if rvm_pretty_print stderr; then
|
|
61
|
+
printf "%b" "${rvm_debug_clr:-}$*${rvm_reset_clr:-}\n";
|
|
62
|
+
else
|
|
63
|
+
printf "%b" "$*\n";
|
|
64
|
+
fi 1>&2
|
|
65
|
+
}
|
|
66
|
+
{
|
|
67
|
+
"Status" : "SUCCESS",
|
|
68
|
+
"PhysicalResourceId" : "ElasticTranscoder",
|
|
69
|
+
"StackId" : "",
|
|
70
|
+
"RequestId" : "",
|
|
71
|
+
"LogicalResourceId" : "",
|
|
72
|
+
"Data" : {
|
|
73
|
+
}
|
|
74
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
BASH=/bin/bash
|
|
2
|
+
BASHOPTS=cmdhist:extquote:force_fignore:hostcomplete:interactive_comments:progcomp:promptvars:sourcepath
|
|
3
|
+
BASH_ALIASES=()
|
|
4
|
+
BASH_ARGC=()
|
|
5
|
+
BASH_ARGV=()
|
|
6
|
+
BASH_CMDS=()
|
|
7
|
+
BASH_LINENO=([0]="0")
|
|
8
|
+
BASH_SOURCE=([0]="/opt/amplify/cfn/bin/elastictranscoder.sh")
|
|
9
|
+
BASH_VERSINFO=([0]="4" [1]="2" [2]="25" [3]="1" [4]="release" [5]="x86_64-pc-linux-gnu")
|
|
10
|
+
BASH_VERSION='4.2.25(1)-release'
|
|
11
|
+
DIRSTACK=()
|
|
12
|
+
DNS_NAME=chef.systest.qa.learning.amplify.com
|
|
13
|
+
EDITOR=vim
|
|
14
|
+
ENVIRONMENT=QA
|
|
15
|
+
EUID=0
|
|
16
|
+
EventProperties='{"StackId": "arn:aws:cloudformation:us-east-1:795848752257:stack/systest-066-transcoder/1f87d3a0-4546-11e4-b33b-50e241629418", "ResponseURL": "https://cloudformation-custom-resource-response-useast1.s3.amazonaws.com/arn%3Aaws%3Acloudformation%3Aus-east-1%3A795848752257%3Astack/systest-066-transcoder/1f87d3a0-4546-11e4-b33b-50e241629418%7CTranscoderPipeline%7Caa5b3583-efef-4a52-a98b-778ab91ae9f6?AWSAccessKeyId=AKIAJNXHFR7P7YGKLDPQ&Expires=1411720033&Signature=3EjMrsEDJ4Bm5gYMOXKF1Um%2BX7I%3D", "ResourceProperties": {"Name": "amplify-systest-pipeline", "ServiceToken": "arn:aws:sns:us-east-1:795848752257:customresource-elastictranscoder-795848752257-systest", "Output_Bucket": "amplify-systest-video-output", "Notifications": {"Completed": "", "Warning": "", "Progressing": "", "Error": ""}, "Role": "arn:aws:iam::795848752257:role/customresource/elastictranscoder/systest-066-transcoder-TranscoderIAMRole-3WB0D07BM2AO", "Input_Bucket": "amplify-systest-video"}, "RequestType": "Create", "ResourceType": "Custom::ElasticTranscoder_Pipeline", "RequestId": "aa5b3583-efef-4a52-a98b-778ab91ae9f6", "TopicArn": "arn:aws:sns:us-east-1:795848752257:customresource-elastictranscoder-795848752257-systest", "LogicalResourceId": "TranscoderPipeline"}'
|
|
17
|
+
GROUPS=()
|
|
18
|
+
HOME=/root
|
|
19
|
+
HOSTNAME=chef.systest.qa.learning.amplify.com
|
|
20
|
+
HOSTTYPE=x86_64
|
|
21
|
+
IFS=$' \t\n'
|
|
22
|
+
LANG=en_US.UTF-8
|
|
23
|
+
LOGNAME=root
|
|
24
|
+
LS_COLORS='rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.axa=00;36:*.oga=00;36:*.spx=00;36:*.xspf=00;36:'
|
|
25
|
+
MACHTYPE=x86_64-pc-linux-gnu
|
|
26
|
+
MAIL=/var/mail/root
|
|
27
|
+
NODE_NAME=i-933a967d__chef.systest.qa.learning.amplify.com
|
|
28
|
+
OPTERR=1
|
|
29
|
+
OPTIND=1
|
|
30
|
+
OSTYPE=linux-gnu
|
|
31
|
+
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/rvm/bin
|
|
32
|
+
PPID=27348
|
|
33
|
+
PS4='+ '
|
|
34
|
+
PWD=/
|
|
35
|
+
ROLES='[chef_server, base, chef_cicd]'
|
|
36
|
+
SHELL=/bin/bash
|
|
37
|
+
SHELLOPTS=braceexpand:hashall:interactive-comments
|
|
38
|
+
SHLVL=3
|
|
39
|
+
SUDO_COMMAND=/bin/bash
|
|
40
|
+
SUDO_GID=1000
|
|
41
|
+
SUDO_UID=1000
|
|
42
|
+
SUDO_USER=ubuntu
|
|
43
|
+
TERM=xterm-256color
|
|
44
|
+
UID=0
|
|
45
|
+
USER=root
|
|
46
|
+
USERNAME=root
|
|
47
|
+
_=/sbin/start-stop-daemon
|
|
48
|
+
_system_arch=x86_64
|
|
49
|
+
_system_name=Ubuntu
|
|
50
|
+
_system_type=Linux
|
|
51
|
+
_system_version=12.04
|
|
52
|
+
rvm_bin_path=/usr/local/rvm/bin
|
|
53
|
+
rvm_gem_options='--no-rdoc --no-ri'
|
|
54
|
+
rvm_path=/usr/local/rvm
|
|
55
|
+
rvm_prefix=/usr/local
|
|
56
|
+
rvm_version='1.25.31 (stable)'
|
|
57
|
+
rvm_debug ()
|
|
58
|
+
{
|
|
59
|
+
(( ${rvm_debug_flag:-0} )) || return 0;
|
|
60
|
+
if rvm_pretty_print stderr; then
|
|
61
|
+
printf "%b" "${rvm_debug_clr:-}$*${rvm_reset_clr:-}\n";
|
|
62
|
+
else
|
|
63
|
+
printf "%b" "$*\n";
|
|
64
|
+
fi 1>&2
|
|
65
|
+
}
|
|
66
|
+
{
|
|
67
|
+
"Status" : "SUCCESS",
|
|
68
|
+
"PhysicalResourceId" : "ElasticTranscoder",
|
|
69
|
+
"StackId" : "",
|
|
70
|
+
"RequestId" : "",
|
|
71
|
+
"LogicalResourceId" : "",
|
|
72
|
+
"Data" : {
|
|
73
|
+
}
|
|
74
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
BASH=/bin/bash
|
|
2
|
+
BASHOPTS=cmdhist:extquote:force_fignore:hostcomplete:interactive_comments:progcomp:promptvars:sourcepath
|
|
3
|
+
BASH_ALIASES=()
|
|
4
|
+
BASH_ARGC=()
|
|
5
|
+
BASH_ARGV=()
|
|
6
|
+
BASH_CMDS=()
|
|
7
|
+
BASH_LINENO=([0]="0")
|
|
8
|
+
BASH_SOURCE=([0]="/opt/amplify/cfn/bin/elastictranscoder.sh")
|
|
9
|
+
BASH_VERSINFO=([0]="4" [1]="2" [2]="25" [3]="1" [4]="release" [5]="x86_64-pc-linux-gnu")
|
|
10
|
+
BASH_VERSION='4.2.25(1)-release'
|
|
11
|
+
DIRSTACK=()
|
|
12
|
+
DNS_NAME=chef.systest.qa.learning.amplify.com
|
|
13
|
+
EDITOR=vim
|
|
14
|
+
ENVIRONMENT=QA
|
|
15
|
+
EUID=0
|
|
16
|
+
EventProperties='{"StackId": "arn:aws:cloudformation:us-east-1:795848752257:stack/systest-066-transcoder/1f87d3a0-4546-11e4-b33b-50e241629418", "ResponseURL": "https://cloudformation-custom-resource-response-useast1.s3.amazonaws.com/arn%3Aaws%3Acloudformation%3Aus-east-1%3A795848752257%3Astack/systest-066-transcoder/1f87d3a0-4546-11e4-b33b-50e241629418%7CTranscoderPipeline%7C1786f376-d28a-4fd6-9e60-68ff0c5ba2da?AWSAccessKeyId=AKIAJNXHFR7P7YGKLDPQ&Expires=1411720921&Signature=3zh9XIN9Ic6QBbAbA60Vyd4zbog%3D", "ResourceProperties": {"Name": "amplify-systest-pipeline", "ServiceToken": "arn:aws:sns:us-east-1:795848752257:customresource-elastictranscoder-795848752257-systest", "Output_Bucket": "amplify-systest-video-output", "Notifications": {"Completed": "", "Warning": "", "Progressing": "", "Error": ""}, "Role": "arn:aws:iam::795848752257:role/customresource/elastictranscoder/systest-066-transcoder-TranscoderIAMRole-3WB0D07BM2AO", "Input_Bucket": "amplify-systest-video"}, "RequestType": "Delete", "ResourceType": "Custom::ElasticTranscoder_Pipeline", "PhysicalResourceId": "TranscoderPipeline-systest-066-transcoder-795848752257", "RequestId": "1786f376-d28a-4fd6-9e60-68ff0c5ba2da", "TopicArn": "arn:aws:sns:us-east-1:795848752257:customresource-elastictranscoder-795848752257-systest", "LogicalResourceId": "TranscoderPipeline"}'
|
|
17
|
+
GROUPS=()
|
|
18
|
+
HOME=/root
|
|
19
|
+
HOSTNAME=chef.systest.qa.learning.amplify.com
|
|
20
|
+
HOSTTYPE=x86_64
|
|
21
|
+
IFS=$' \t\n'
|
|
22
|
+
LANG=en_US.UTF-8
|
|
23
|
+
LOGNAME=root
|
|
24
|
+
LS_COLORS='rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.axa=00;36:*.oga=00;36:*.spx=00;36:*.xspf=00;36:'
|
|
25
|
+
MACHTYPE=x86_64-pc-linux-gnu
|
|
26
|
+
MAIL=/var/mail/root
|
|
27
|
+
NODE_NAME=i-933a967d__chef.systest.qa.learning.amplify.com
|
|
28
|
+
OPTERR=1
|
|
29
|
+
OPTIND=1
|
|
30
|
+
OSTYPE=linux-gnu
|
|
31
|
+
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/rvm/bin
|
|
32
|
+
PPID=27348
|
|
33
|
+
PS4='+ '
|
|
34
|
+
PWD=/
|
|
35
|
+
ROLES='[chef_server, base, chef_cicd]'
|
|
36
|
+
SHELL=/bin/bash
|
|
37
|
+
SHELLOPTS=braceexpand:hashall:interactive-comments
|
|
38
|
+
SHLVL=3
|
|
39
|
+
SUDO_COMMAND=/bin/bash
|
|
40
|
+
SUDO_GID=1000
|
|
41
|
+
SUDO_UID=1000
|
|
42
|
+
SUDO_USER=ubuntu
|
|
43
|
+
TERM=xterm-256color
|
|
44
|
+
UID=0
|
|
45
|
+
USER=root
|
|
46
|
+
USERNAME=root
|
|
47
|
+
_=/sbin/start-stop-daemon
|
|
48
|
+
_system_arch=x86_64
|
|
49
|
+
_system_name=Ubuntu
|
|
50
|
+
_system_type=Linux
|
|
51
|
+
_system_version=12.04
|
|
52
|
+
rvm_bin_path=/usr/local/rvm/bin
|
|
53
|
+
rvm_gem_options='--no-rdoc --no-ri'
|
|
54
|
+
rvm_path=/usr/local/rvm
|
|
55
|
+
rvm_prefix=/usr/local
|
|
56
|
+
rvm_version='1.25.31 (stable)'
|
|
57
|
+
rvm_debug ()
|
|
58
|
+
{
|
|
59
|
+
(( ${rvm_debug_flag:-0} )) || return 0;
|
|
60
|
+
if rvm_pretty_print stderr; then
|
|
61
|
+
printf "%b" "${rvm_debug_clr:-}$*${rvm_reset_clr:-}\n";
|
|
62
|
+
else
|
|
63
|
+
printf "%b" "$*\n";
|
|
64
|
+
fi 1>&2
|
|
65
|
+
}
|
|
66
|
+
{
|
|
67
|
+
"Status" : "SUCCESS",
|
|
68
|
+
"PhysicalResourceId" : "ElasticTranscoder",
|
|
69
|
+
"StackId" : "",
|
|
70
|
+
"RequestId" : "",
|
|
71
|
+
"LogicalResourceId" : "",
|
|
72
|
+
"Data" : {
|
|
73
|
+
}
|
|
74
|
+
}
|