Skip to content

Commit

Permalink
add lightsail instances
Browse files Browse the repository at this point in the history
  • Loading branch information
riceissa committed Aug 27, 2018
1 parent adac869 commit 55a9116
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions sql/amazon-lightsail-instances.sql
@@ -0,0 +1,16 @@
# Data from http://archive.today/2018.08.27-213433/https://aws.amazon.com/lightsail/pricing/ and https://aws.amazon.com/blogs/aws/amazon-lightsail-update-more-instance-sizes-and-price-reductions/ and https://web.archive.org/web/20180724215301/https://aws.amazon.com/lightsail/pricing/
insert into cloud_instances(provider, operating_system, date_observed, cost, ram, cpu, storage_type, storage_size)
('Amazon Lightsail', 'Linux', '2018-07-24', 0.006845, 0.5, 1, 'SSD', 20)
,('Amazon Lightsail', 'Linux', '2018-07-24', 0.013689, 1, 1, 'SSD', 30)
,('Amazon Lightsail', 'Linux', '2018-07-24', 0.027379, 2, 1, 'SSD', 40)
,('Amazon Lightsail', 'Linux', '2018-07-24', 0.054757, 4, 2, 'SSD', 60)
,('Amazon Lightsail', 'Linux', '2018-07-24', 0.109514, 8, 2, 'SSD', 80)

,('Amazon Lightsail', 'Linux', '2018-08-27', 0.004791, 0.5, 1, 'SSD', 20)
,('Amazon Lightsail', 'Linux', '2018-08-27', 0.006845, 1, 1, 'SSD', 40)
,('Amazon Lightsail', 'Linux', '2018-08-27', 0.013689, 2, 1, 'SSD', 60)
,('Amazon Lightsail', 'Linux', '2018-08-27', 0.027379, 4, 2, 'SSD', 80)
,('Amazon Lightsail', 'Linux', '2018-08-27', 0.054757, 8, 2, 'SSD', 160)
,('Amazon Lightsail', 'Linux', '2018-08-27', 0.109514, 16, 4, 'SSD', 320)
,('Amazon Lightsail', 'Linux', '2018-08-27', 0.219028, 32, 8, 'SSD', 640)
;

0 comments on commit 55a9116

Please sign in to comment.