16 lines
254 B
Ruby
16 lines
254 B
Ruby
|
|
class StackTemplateEc2 < StackTemplateBase
|
||
|
|
|
||
|
|
def delete_template_file_from_storage
|
||
|
|
raise 'Implement me'
|
||
|
|
end
|
||
|
|
|
||
|
|
class << self
|
||
|
|
private
|
||
|
|
|
||
|
|
def upload_file_to_storage(filename, path)
|
||
|
|
"https://s3.amazonaws.com/#{filename}"
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
end
|