├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── commands ├── commands.go ├── list.go └── read.go ├── main.go ├── providers ├── amazon.go ├── amazon_test.go ├── google.go ├── google_test.go ├── test-fixtures │ ├── amazon │ │ ├── 1.0 │ │ │ ├── index.html │ │ │ ├── meta-data │ │ │ │ ├── ami-id │ │ │ │ ├── ami-launch-index │ │ │ │ ├── ami-manifest-path │ │ │ │ ├── hostname │ │ │ │ ├── index.html │ │ │ │ ├── instance-id │ │ │ │ ├── local-ipv4 │ │ │ │ ├── public-keys │ │ │ │ │ ├── 0=one-time │ │ │ │ │ └── index.html │ │ │ │ ├── reservation-id │ │ │ │ └── security-groups │ │ │ └── user-data │ │ ├── 2007-01-19 │ │ │ ├── index.html │ │ │ ├── meta-data │ │ │ │ ├── ami-id │ │ │ │ ├── ami-launch-index │ │ │ │ ├── ami-manifest-path │ │ │ │ ├── hostname │ │ │ │ ├── index.html │ │ │ │ ├── instance-id │ │ │ │ ├── local-hostname │ │ │ │ ├── local-ipv4 │ │ │ │ ├── public-hostname │ │ │ │ ├── public-ipv4 │ │ │ │ ├── public-keys │ │ │ │ │ ├── 0=one-time │ │ │ │ │ └── index.html │ │ │ │ ├── reservation-id │ │ │ │ └── security-groups │ │ │ └── user-data │ │ ├── 2007-03-01 │ │ │ ├── index.html │ │ │ ├── meta-data │ │ │ │ ├── ami-id │ │ │ │ ├── ami-launch-index │ │ │ │ ├── ami-manifest-path │ │ │ │ ├── hostname │ │ │ │ ├── index.html │ │ │ │ ├── instance-id │ │ │ │ ├── local-hostname │ │ │ │ ├── local-ipv4 │ │ │ │ ├── public-hostname │ │ │ │ ├── public-ipv4 │ │ │ │ ├── public-keys │ │ │ │ │ ├── 0=one-time │ │ │ │ │ └── index.html │ │ │ │ ├── reservation-id │ │ │ │ └── security-groups │ │ │ └── user-data │ │ ├── 2007-08-29 │ │ │ ├── index.html │ │ │ ├── meta-data │ │ │ │ ├── ami-id │ │ │ │ ├── ami-launch-index │ │ │ │ ├── ami-manifest-path │ │ │ │ ├── hostname │ │ │ │ ├── index.html │ │ │ │ ├── instance-id │ │ │ │ ├── instance-type │ │ │ │ ├── local-hostname │ │ │ │ ├── local-ipv4 │ │ │ │ ├── public-hostname │ │ │ │ ├── public-ipv4 │ │ │ │ ├── public-keys │ │ │ │ │ ├── 0=one-time │ │ │ │ │ └── index.html │ │ │ │ ├── reservation-id │ │ │ │ └── security-groups │ │ │ └── user-data │ │ ├── 2007-10-10 │ │ │ ├── index.html │ │ │ ├── meta-data │ │ │ │ ├── ami-id │ │ │ │ ├── ami-launch-index │ │ │ │ ├── ami-manifest-path │ │ │ │ ├── hostname │ │ │ │ ├── index.html │ │ │ │ ├── instance-id │ │ │ │ ├── instance-type │ │ │ │ ├── local-hostname │ │ │ │ ├── local-ipv4 │ │ │ │ ├── public-hostname │ │ │ │ ├── public-ipv4 │ │ │ │ ├── public-keys │ │ │ │ │ ├── 0=one-time │ │ │ │ │ └── index.html │ │ │ │ ├── reservation-id │ │ │ │ └── security-groups │ │ │ └── user-data │ │ ├── 2007-12-15 │ │ │ ├── index.html │ │ │ ├── meta-data │ │ │ │ ├── ami-id │ │ │ │ ├── ami-launch-index │ │ │ │ ├── ami-manifest-path │ │ │ │ ├── block-device-mapping │ │ │ │ │ ├── ami │ │ │ │ │ ├── ephemeral0 │ │ │ │ │ ├── ephemeral1 │ │ │ │ │ ├── index.html │ │ │ │ │ └── root │ │ │ │ ├── hostname │ │ │ │ ├── index.html │ │ │ │ ├── instance-id │ │ │ │ ├── instance-type │ │ │ │ ├── local-hostname │ │ │ │ ├── local-ipv4 │ │ │ │ ├── profile │ │ │ │ ├── public-hostname │ │ │ │ ├── public-ipv4 │ │ │ │ ├── public-keys │ │ │ │ │ ├── 0=one-time │ │ │ │ │ └── index.html │ │ │ │ ├── reservation-id │ │ │ │ └── security-groups │ │ │ └── user-data │ │ ├── 2008-02-01 │ │ │ ├── index.html │ │ │ ├── meta-data │ │ │ │ ├── ami-id │ │ │ │ ├── ami-launch-index │ │ │ │ ├── ami-manifest-path │ │ │ │ ├── block-device-mapping │ │ │ │ │ ├── ami │ │ │ │ │ ├── ephemeral0 │ │ │ │ │ ├── ephemeral1 │ │ │ │ │ ├── index.html │ │ │ │ │ └── root │ │ │ │ ├── hostname │ │ │ │ ├── index.html │ │ │ │ ├── instance-id │ │ │ │ ├── instance-type │ │ │ │ ├── local-hostname │ │ │ │ ├── local-ipv4 │ │ │ │ ├── placement │ │ │ │ │ ├── availability-zone │ │ │ │ │ └── index.html │ │ │ │ ├── profile │ │ │ │ ├── public-hostname │ │ │ │ ├── public-ipv4 │ │ │ │ ├── public-keys │ │ │ │ │ ├── 0=one-time │ │ │ │ │ └── index.html │ │ │ │ ├── reservation-id │ │ │ │ └── security-groups │ │ │ └── user-data │ │ ├── 2008-09-01 │ │ │ ├── index.html │ │ │ ├── meta-data │ │ │ │ ├── ami-id │ │ │ │ ├── ami-launch-index │ │ │ │ ├── ami-manifest-path │ │ │ │ ├── block-device-mapping │ │ │ │ │ ├── ami │ │ │ │ │ ├── ephemeral0 │ │ │ │ │ ├── ephemeral1 │ │ │ │ │ ├── index.html │ │ │ │ │ └── root │ │ │ │ ├── hostname │ │ │ │ ├── index.html │ │ │ │ ├── instance-action │ │ │ │ ├── instance-id │ │ │ │ ├── instance-type │ │ │ │ ├── local-hostname │ │ │ │ ├── local-ipv4 │ │ │ │ ├── placement │ │ │ │ │ ├── availability-zone │ │ │ │ │ └── index.html │ │ │ │ ├── profile │ │ │ │ ├── public-hostname │ │ │ │ ├── public-ipv4 │ │ │ │ ├── public-keys │ │ │ │ │ ├── 0=one-time │ │ │ │ │ └── index.html │ │ │ │ ├── reservation-id │ │ │ │ └── security-groups │ │ │ └── user-data │ │ ├── 2009-04-04 │ │ │ ├── dynamic │ │ │ │ ├── index.html │ │ │ │ └── instance-identity │ │ │ │ │ ├── document │ │ │ │ │ ├── index.html │ │ │ │ │ ├── pkcs7 │ │ │ │ │ ├── rsa2048 │ │ │ │ │ └── signature │ │ │ ├── index.html │ │ │ ├── meta-data │ │ │ │ ├── ami-id │ │ │ │ ├── ami-launch-index │ │ │ │ ├── ami-manifest-path │ │ │ │ ├── block-device-mapping │ │ │ │ │ ├── ami │ │ │ │ │ ├── ephemeral0 │ │ │ │ │ ├── ephemeral1 │ │ │ │ │ ├── index.html │ │ │ │ │ └── root │ │ │ │ ├── hostname │ │ │ │ ├── index.html │ │ │ │ ├── instance-action │ │ │ │ ├── instance-id │ │ │ │ ├── instance-type │ │ │ │ ├── local-hostname │ │ │ │ ├── local-ipv4 │ │ │ │ ├── placement │ │ │ │ │ ├── availability-zone │ │ │ │ │ └── index.html │ │ │ │ ├── profile │ │ │ │ ├── public-hostname │ │ │ │ ├── public-ipv4 │ │ │ │ ├── public-keys │ │ │ │ │ ├── 0=one-time │ │ │ │ │ └── index.html │ │ │ │ ├── reservation-id │ │ │ │ └── security-groups │ │ │ └── user-data │ │ ├── 2011-01-01 │ │ │ ├── dynamic │ │ │ │ ├── index.html │ │ │ │ └── instance-identity │ │ │ │ │ ├── document │ │ │ │ │ ├── index.html │ │ │ │ │ ├── pkcs7 │ │ │ │ │ ├── rsa2048 │ │ │ │ │ └── signature │ │ │ ├── index.html │ │ │ ├── meta-data │ │ │ │ ├── ami-id │ │ │ │ ├── ami-launch-index │ │ │ │ ├── ami-manifest-path │ │ │ │ ├── block-device-mapping │ │ │ │ │ ├── ami │ │ │ │ │ ├── ephemeral0 │ │ │ │ │ ├── ephemeral1 │ │ │ │ │ ├── index.html │ │ │ │ │ └── root │ │ │ │ ├── hostname │ │ │ │ ├── index.html │ │ │ │ ├── instance-action │ │ │ │ ├── instance-id │ │ │ │ ├── instance-type │ │ │ │ ├── local-hostname │ │ │ │ ├── local-ipv4 │ │ │ │ ├── mac │ │ │ │ ├── network │ │ │ │ │ ├── index.html │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── macs │ │ │ │ │ │ ├── 12:7c:e2:00:ae:31 │ │ │ │ │ │ ├── device-number │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── interface-id │ │ │ │ │ │ ├── ipv4-associations │ │ │ │ │ │ │ ├── 52.207.213.249 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── local-hostname │ │ │ │ │ │ ├── local-ipv4s │ │ │ │ │ │ ├── mac │ │ │ │ │ │ ├── owner-id │ │ │ │ │ │ ├── public-hostname │ │ │ │ │ │ ├── public-ipv4s │ │ │ │ │ │ ├── security-group-ids │ │ │ │ │ │ ├── security-groups │ │ │ │ │ │ ├── subnet-id │ │ │ │ │ │ ├── subnet-ipv4-cidr-block │ │ │ │ │ │ ├── vpc-id │ │ │ │ │ │ └── vpc-ipv4-cidr-block │ │ │ │ │ │ └── index.html │ │ │ │ ├── placement │ │ │ │ │ ├── availability-zone │ │ │ │ │ └── index.html │ │ │ │ ├── profile │ │ │ │ ├── public-hostname │ │ │ │ ├── public-ipv4 │ │ │ │ ├── public-keys │ │ │ │ │ ├── 0=one-time │ │ │ │ │ └── index.html │ │ │ │ ├── reservation-id │ │ │ │ └── security-groups │ │ │ └── user-data │ │ ├── 2011-05-01 │ │ │ ├── dynamic │ │ │ │ ├── index.html │ │ │ │ └── instance-identity │ │ │ │ │ ├── document │ │ │ │ │ ├── index.html │ │ │ │ │ ├── pkcs7 │ │ │ │ │ ├── rsa2048 │ │ │ │ │ └── signature │ │ │ ├── index.html │ │ │ ├── meta-data │ │ │ │ ├── ami-id │ │ │ │ ├── ami-launch-index │ │ │ │ ├── ami-manifest-path │ │ │ │ ├── block-device-mapping │ │ │ │ │ ├── ami │ │ │ │ │ ├── ephemeral0 │ │ │ │ │ ├── ephemeral1 │ │ │ │ │ ├── index.html │ │ │ │ │ └── root │ │ │ │ ├── hostname │ │ │ │ ├── index.html │ │ │ │ ├── instance-action │ │ │ │ ├── instance-id │ │ │ │ ├── instance-type │ │ │ │ ├── local-hostname │ │ │ │ ├── local-ipv4 │ │ │ │ ├── mac │ │ │ │ ├── metrics │ │ │ │ │ ├── index.html │ │ │ │ │ └── vhostmd │ │ │ │ ├── network │ │ │ │ │ ├── index.html │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── macs │ │ │ │ │ │ ├── 12:7c:e2:00:ae:31 │ │ │ │ │ │ ├── device-number │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── interface-id │ │ │ │ │ │ ├── ipv4-associations │ │ │ │ │ │ │ ├── 52.207.213.249 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── local-hostname │ │ │ │ │ │ ├── local-ipv4s │ │ │ │ │ │ ├── mac │ │ │ │ │ │ ├── owner-id │ │ │ │ │ │ ├── public-hostname │ │ │ │ │ │ ├── public-ipv4s │ │ │ │ │ │ ├── security-group-ids │ │ │ │ │ │ ├── security-groups │ │ │ │ │ │ ├── subnet-id │ │ │ │ │ │ ├── subnet-ipv4-cidr-block │ │ │ │ │ │ ├── vpc-id │ │ │ │ │ │ └── vpc-ipv4-cidr-block │ │ │ │ │ │ └── index.html │ │ │ │ ├── placement │ │ │ │ │ ├── availability-zone │ │ │ │ │ └── index.html │ │ │ │ ├── profile │ │ │ │ ├── public-hostname │ │ │ │ ├── public-ipv4 │ │ │ │ ├── public-keys │ │ │ │ │ ├── 0=one-time │ │ │ │ │ └── index.html │ │ │ │ ├── reservation-id │ │ │ │ └── security-groups │ │ │ └── user-data │ │ ├── 2012-01-12 │ │ │ ├── dynamic │ │ │ │ ├── index.html │ │ │ │ └── instance-identity │ │ │ │ │ ├── document │ │ │ │ │ ├── index.html │ │ │ │ │ ├── pkcs7 │ │ │ │ │ ├── rsa2048 │ │ │ │ │ └── signature │ │ │ ├── index.html │ │ │ ├── meta-data │ │ │ │ ├── ami-id │ │ │ │ ├── ami-launch-index │ │ │ │ ├── ami-manifest-path │ │ │ │ ├── block-device-mapping │ │ │ │ │ ├── ami │ │ │ │ │ ├── ephemeral0 │ │ │ │ │ ├── ephemeral1 │ │ │ │ │ ├── index.html │ │ │ │ │ └── root │ │ │ │ ├── hostname │ │ │ │ ├── index.html │ │ │ │ ├── instance-action │ │ │ │ ├── instance-id │ │ │ │ ├── instance-type │ │ │ │ ├── local-hostname │ │ │ │ ├── local-ipv4 │ │ │ │ ├── mac │ │ │ │ ├── metrics │ │ │ │ │ ├── index.html │ │ │ │ │ └── vhostmd │ │ │ │ ├── network │ │ │ │ │ ├── index.html │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── macs │ │ │ │ │ │ ├── 12:7c:e2:00:ae:31 │ │ │ │ │ │ ├── device-number │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── interface-id │ │ │ │ │ │ ├── ipv4-associations │ │ │ │ │ │ │ ├── 52.207.213.249 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── local-hostname │ │ │ │ │ │ ├── local-ipv4s │ │ │ │ │ │ ├── mac │ │ │ │ │ │ ├── owner-id │ │ │ │ │ │ ├── public-hostname │ │ │ │ │ │ ├── public-ipv4s │ │ │ │ │ │ ├── security-group-ids │ │ │ │ │ │ ├── security-groups │ │ │ │ │ │ ├── subnet-id │ │ │ │ │ │ ├── subnet-ipv4-cidr-block │ │ │ │ │ │ ├── vpc-id │ │ │ │ │ │ └── vpc-ipv4-cidr-block │ │ │ │ │ │ └── index.html │ │ │ │ ├── placement │ │ │ │ │ ├── availability-zone │ │ │ │ │ └── index.html │ │ │ │ ├── profile │ │ │ │ ├── public-hostname │ │ │ │ ├── public-ipv4 │ │ │ │ ├── public-keys │ │ │ │ │ ├── 0=one-time │ │ │ │ │ └── index.html │ │ │ │ ├── reservation-id │ │ │ │ └── security-groups │ │ │ └── user-data │ │ ├── 2014-02-25 │ │ │ ├── dynamic │ │ │ │ ├── index.html │ │ │ │ └── instance-identity │ │ │ │ │ ├── document │ │ │ │ │ ├── index.html │ │ │ │ │ ├── pkcs7 │ │ │ │ │ ├── rsa2048 │ │ │ │ │ └── signature │ │ │ ├── index.html │ │ │ ├── meta-data │ │ │ │ ├── ami-id │ │ │ │ ├── ami-launch-index │ │ │ │ ├── ami-manifest-path │ │ │ │ ├── block-device-mapping │ │ │ │ │ ├── ami │ │ │ │ │ ├── ephemeral0 │ │ │ │ │ ├── ephemeral1 │ │ │ │ │ ├── index.html │ │ │ │ │ └── root │ │ │ │ ├── hostname │ │ │ │ ├── index.html │ │ │ │ ├── instance-action │ │ │ │ ├── instance-id │ │ │ │ ├── instance-type │ │ │ │ ├── local-hostname │ │ │ │ ├── local-ipv4 │ │ │ │ ├── mac │ │ │ │ ├── metrics │ │ │ │ │ ├── index.html │ │ │ │ │ └── vhostmd │ │ │ │ ├── network │ │ │ │ │ ├── index.html │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── macs │ │ │ │ │ │ ├── 12:7c:e2:00:ae:31 │ │ │ │ │ │ ├── device-number │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── interface-id │ │ │ │ │ │ ├── ipv4-associations │ │ │ │ │ │ │ ├── 52.207.213.249 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── local-hostname │ │ │ │ │ │ ├── local-ipv4s │ │ │ │ │ │ ├── mac │ │ │ │ │ │ ├── owner-id │ │ │ │ │ │ ├── public-hostname │ │ │ │ │ │ ├── public-ipv4s │ │ │ │ │ │ ├── security-group-ids │ │ │ │ │ │ ├── security-groups │ │ │ │ │ │ ├── subnet-id │ │ │ │ │ │ ├── subnet-ipv4-cidr-block │ │ │ │ │ │ ├── vpc-id │ │ │ │ │ │ └── vpc-ipv4-cidr-block │ │ │ │ │ │ └── index.html │ │ │ │ ├── placement │ │ │ │ │ ├── availability-zone │ │ │ │ │ └── index.html │ │ │ │ ├── profile │ │ │ │ ├── public-hostname │ │ │ │ ├── public-ipv4 │ │ │ │ ├── public-keys │ │ │ │ │ ├── 0=one-time │ │ │ │ │ └── index.html │ │ │ │ ├── reservation-id │ │ │ │ ├── security-groups │ │ │ │ └── services │ │ │ │ │ ├── domain │ │ │ │ │ └── index.html │ │ │ └── user-data │ │ ├── 2014-11-05 │ │ │ ├── dynamic │ │ │ │ ├── index.html │ │ │ │ └── instance-identity │ │ │ │ │ ├── document │ │ │ │ │ ├── index.html │ │ │ │ │ ├── pkcs7 │ │ │ │ │ ├── rsa2048 │ │ │ │ │ └── signature │ │ │ ├── index.html │ │ │ ├── meta-data │ │ │ │ ├── ami-id │ │ │ │ ├── ami-launch-index │ │ │ │ ├── ami-manifest-path │ │ │ │ ├── block-device-mapping │ │ │ │ │ ├── ami │ │ │ │ │ ├── ephemeral0 │ │ │ │ │ ├── ephemeral1 │ │ │ │ │ ├── index.html │ │ │ │ │ └── root │ │ │ │ ├── hostname │ │ │ │ ├── index.html │ │ │ │ ├── instance-action │ │ │ │ ├── instance-id │ │ │ │ ├── instance-type │ │ │ │ ├── local-hostname │ │ │ │ ├── local-ipv4 │ │ │ │ ├── mac │ │ │ │ ├── metrics │ │ │ │ │ ├── index.html │ │ │ │ │ └── vhostmd │ │ │ │ ├── network │ │ │ │ │ ├── index.html │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── macs │ │ │ │ │ │ ├── 12:7c:e2:00:ae:31 │ │ │ │ │ │ ├── device-number │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── interface-id │ │ │ │ │ │ ├── ipv4-associations │ │ │ │ │ │ │ ├── 52.207.213.249 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── local-hostname │ │ │ │ │ │ ├── local-ipv4s │ │ │ │ │ │ ├── mac │ │ │ │ │ │ ├── owner-id │ │ │ │ │ │ ├── public-hostname │ │ │ │ │ │ ├── public-ipv4s │ │ │ │ │ │ ├── security-group-ids │ │ │ │ │ │ ├── security-groups │ │ │ │ │ │ ├── subnet-id │ │ │ │ │ │ ├── subnet-ipv4-cidr-block │ │ │ │ │ │ ├── vpc-id │ │ │ │ │ │ └── vpc-ipv4-cidr-block │ │ │ │ │ │ └── index.html │ │ │ │ ├── placement │ │ │ │ │ ├── availability-zone │ │ │ │ │ └── index.html │ │ │ │ ├── profile │ │ │ │ ├── public-hostname │ │ │ │ ├── public-ipv4 │ │ │ │ ├── public-keys │ │ │ │ │ ├── 0=one-time │ │ │ │ │ └── index.html │ │ │ │ ├── reservation-id │ │ │ │ ├── security-groups │ │ │ │ └── services │ │ │ │ │ ├── domain │ │ │ │ │ └── index.html │ │ │ └── user-data │ │ ├── 2015-10-20 │ │ │ ├── dynamic │ │ │ │ ├── index.html │ │ │ │ └── instance-identity │ │ │ │ │ ├── document │ │ │ │ │ ├── index.html │ │ │ │ │ ├── pkcs7 │ │ │ │ │ ├── rsa2048 │ │ │ │ │ └── signature │ │ │ ├── index.html │ │ │ ├── meta-data │ │ │ │ ├── ami-id │ │ │ │ ├── ami-launch-index │ │ │ │ ├── ami-manifest-path │ │ │ │ ├── block-device-mapping │ │ │ │ │ ├── ami │ │ │ │ │ ├── ephemeral0 │ │ │ │ │ ├── ephemeral1 │ │ │ │ │ ├── index.html │ │ │ │ │ └── root │ │ │ │ ├── hostname │ │ │ │ ├── index.html │ │ │ │ ├── instance-action │ │ │ │ ├── instance-id │ │ │ │ ├── instance-type │ │ │ │ ├── local-hostname │ │ │ │ ├── local-ipv4 │ │ │ │ ├── mac │ │ │ │ ├── metrics │ │ │ │ │ ├── index.html │ │ │ │ │ └── vhostmd │ │ │ │ ├── network │ │ │ │ │ ├── index.html │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── macs │ │ │ │ │ │ ├── 12:7c:e2:00:ae:31 │ │ │ │ │ │ ├── device-number │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── interface-id │ │ │ │ │ │ ├── ipv4-associations │ │ │ │ │ │ │ ├── 52.207.213.249 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── local-hostname │ │ │ │ │ │ ├── local-ipv4s │ │ │ │ │ │ ├── mac │ │ │ │ │ │ ├── owner-id │ │ │ │ │ │ ├── public-hostname │ │ │ │ │ │ ├── public-ipv4s │ │ │ │ │ │ ├── security-group-ids │ │ │ │ │ │ ├── security-groups │ │ │ │ │ │ ├── subnet-id │ │ │ │ │ │ ├── subnet-ipv4-cidr-block │ │ │ │ │ │ ├── vpc-id │ │ │ │ │ │ └── vpc-ipv4-cidr-block │ │ │ │ │ │ └── index.html │ │ │ │ ├── placement │ │ │ │ │ ├── availability-zone │ │ │ │ │ └── index.html │ │ │ │ ├── profile │ │ │ │ ├── public-hostname │ │ │ │ ├── public-ipv4 │ │ │ │ ├── public-keys │ │ │ │ │ ├── 0=one-time │ │ │ │ │ └── index.html │ │ │ │ ├── reservation-id │ │ │ │ ├── security-groups │ │ │ │ └── services │ │ │ │ │ ├── domain │ │ │ │ │ ├── index.html │ │ │ │ │ └── partition │ │ │ └── user-data │ │ ├── 2016-04-19 │ │ │ ├── dynamic │ │ │ │ ├── index.html │ │ │ │ └── instance-identity │ │ │ │ │ ├── document │ │ │ │ │ ├── index.html │ │ │ │ │ ├── pkcs7 │ │ │ │ │ ├── rsa2048 │ │ │ │ │ └── signature │ │ │ ├── index.html │ │ │ ├── meta-data │ │ │ │ ├── ami-id │ │ │ │ ├── ami-launch-index │ │ │ │ ├── ami-manifest-path │ │ │ │ ├── block-device-mapping │ │ │ │ │ ├── ami │ │ │ │ │ ├── ephemeral0 │ │ │ │ │ ├── ephemeral1 │ │ │ │ │ ├── index.html │ │ │ │ │ └── root │ │ │ │ ├── hostname │ │ │ │ ├── index.html │ │ │ │ ├── instance-action │ │ │ │ ├── instance-id │ │ │ │ ├── instance-type │ │ │ │ ├── local-hostname │ │ │ │ ├── local-ipv4 │ │ │ │ ├── mac │ │ │ │ ├── metrics │ │ │ │ │ ├── index.html │ │ │ │ │ └── vhostmd │ │ │ │ ├── network │ │ │ │ │ ├── index.html │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── macs │ │ │ │ │ │ ├── 12:7c:e2:00:ae:31 │ │ │ │ │ │ ├── device-number │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── interface-id │ │ │ │ │ │ ├── ipv4-associations │ │ │ │ │ │ │ ├── 52.207.213.249 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── local-hostname │ │ │ │ │ │ ├── local-ipv4s │ │ │ │ │ │ ├── mac │ │ │ │ │ │ ├── owner-id │ │ │ │ │ │ ├── public-hostname │ │ │ │ │ │ ├── public-ipv4s │ │ │ │ │ │ ├── security-group-ids │ │ │ │ │ │ ├── security-groups │ │ │ │ │ │ ├── subnet-id │ │ │ │ │ │ ├── subnet-ipv4-cidr-block │ │ │ │ │ │ ├── vpc-id │ │ │ │ │ │ ├── vpc-ipv4-cidr-block │ │ │ │ │ │ └── vpc-ipv4-cidr-blocks │ │ │ │ │ │ └── index.html │ │ │ │ ├── placement │ │ │ │ │ ├── availability-zone │ │ │ │ │ └── index.html │ │ │ │ ├── profile │ │ │ │ ├── public-hostname │ │ │ │ ├── public-ipv4 │ │ │ │ ├── public-keys │ │ │ │ │ ├── 0=one-time │ │ │ │ │ └── index.html │ │ │ │ ├── reservation-id │ │ │ │ ├── security-groups │ │ │ │ └── services │ │ │ │ │ ├── domain │ │ │ │ │ ├── index.html │ │ │ │ │ └── partition │ │ │ └── user-data │ │ ├── 2016-06-30 │ │ │ ├── dynamic │ │ │ │ ├── index.html │ │ │ │ └── instance-identity │ │ │ │ │ ├── document │ │ │ │ │ ├── index.html │ │ │ │ │ ├── pkcs7 │ │ │ │ │ ├── rsa2048 │ │ │ │ │ └── signature │ │ │ ├── index.html │ │ │ ├── meta-data │ │ │ │ ├── ami-id │ │ │ │ ├── ami-launch-index │ │ │ │ ├── ami-manifest-path │ │ │ │ ├── block-device-mapping │ │ │ │ │ ├── ami │ │ │ │ │ ├── ephemeral0 │ │ │ │ │ ├── ephemeral1 │ │ │ │ │ ├── index.html │ │ │ │ │ └── root │ │ │ │ ├── hostname │ │ │ │ ├── index.html │ │ │ │ ├── instance-action │ │ │ │ ├── instance-id │ │ │ │ ├── instance-type │ │ │ │ ├── local-hostname │ │ │ │ ├── local-ipv4 │ │ │ │ ├── mac │ │ │ │ ├── metrics │ │ │ │ │ ├── index.html │ │ │ │ │ └── vhostmd │ │ │ │ ├── network │ │ │ │ │ ├── index.html │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── macs │ │ │ │ │ │ ├── 12:7c:e2:00:ae:31 │ │ │ │ │ │ ├── device-number │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── interface-id │ │ │ │ │ │ ├── ipv4-associations │ │ │ │ │ │ │ ├── 52.207.213.249 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── local-hostname │ │ │ │ │ │ ├── local-ipv4s │ │ │ │ │ │ ├── mac │ │ │ │ │ │ ├── owner-id │ │ │ │ │ │ ├── public-hostname │ │ │ │ │ │ ├── public-ipv4s │ │ │ │ │ │ ├── security-group-ids │ │ │ │ │ │ ├── security-groups │ │ │ │ │ │ ├── subnet-id │ │ │ │ │ │ ├── subnet-ipv4-cidr-block │ │ │ │ │ │ ├── vpc-id │ │ │ │ │ │ ├── vpc-ipv4-cidr-block │ │ │ │ │ │ └── vpc-ipv4-cidr-blocks │ │ │ │ │ │ └── index.html │ │ │ │ ├── placement │ │ │ │ │ ├── availability-zone │ │ │ │ │ └── index.html │ │ │ │ ├── profile │ │ │ │ ├── public-hostname │ │ │ │ ├── public-ipv4 │ │ │ │ ├── public-keys │ │ │ │ │ ├── 0=one-time │ │ │ │ │ └── index.html │ │ │ │ ├── reservation-id │ │ │ │ ├── security-groups │ │ │ │ └── services │ │ │ │ │ ├── domain │ │ │ │ │ ├── index.html │ │ │ │ │ └── partition │ │ │ └── user-data │ │ ├── index.html │ │ └── latest │ │ │ ├── dynamic │ │ │ ├── index.html │ │ │ └── instance-identity │ │ │ │ ├── document │ │ │ │ ├── index.html │ │ │ │ ├── pkcs7 │ │ │ │ ├── rsa2048 │ │ │ │ └── signature │ │ │ ├── index.html │ │ │ ├── meta-data │ │ │ ├── ami-id │ │ │ ├── ami-launch-index │ │ │ ├── ami-manifest-path │ │ │ ├── block-device-mapping │ │ │ │ ├── ami │ │ │ │ ├── ephemeral0 │ │ │ │ ├── ephemeral1 │ │ │ │ ├── index.html │ │ │ │ └── root │ │ │ ├── hostname │ │ │ ├── index.html │ │ │ ├── instance-action │ │ │ ├── instance-id │ │ │ ├── instance-type │ │ │ ├── local-hostname │ │ │ ├── local-ipv4 │ │ │ ├── mac │ │ │ ├── metrics │ │ │ │ ├── index.html │ │ │ │ └── vhostmd │ │ │ ├── network │ │ │ │ ├── index.html │ │ │ │ └── interfaces │ │ │ │ │ ├── index.html │ │ │ │ │ └── macs │ │ │ │ │ ├── 12:7c:e2:00:ae:31 │ │ │ │ │ ├── device-number │ │ │ │ │ ├── index.html │ │ │ │ │ ├── interface-id │ │ │ │ │ ├── ipv4-associations │ │ │ │ │ │ ├── 52.207.213.249 │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── local-hostname │ │ │ │ │ ├── local-ipv4s │ │ │ │ │ ├── mac │ │ │ │ │ ├── owner-id │ │ │ │ │ ├── public-hostname │ │ │ │ │ ├── public-ipv4s │ │ │ │ │ ├── security-group-ids │ │ │ │ │ ├── security-groups │ │ │ │ │ ├── subnet-id │ │ │ │ │ ├── subnet-ipv4-cidr-block │ │ │ │ │ ├── vpc-id │ │ │ │ │ ├── vpc-ipv4-cidr-block │ │ │ │ │ └── vpc-ipv4-cidr-blocks │ │ │ │ │ └── index.html │ │ │ ├── placement │ │ │ │ ├── availability-zone │ │ │ │ └── index.html │ │ │ ├── profile │ │ │ ├── public-hostname │ │ │ ├── public-ipv4 │ │ │ ├── public-keys │ │ │ │ ├── 0=one-time │ │ │ │ └── index.html │ │ │ ├── reservation-id │ │ │ ├── security-groups │ │ │ └── services │ │ │ │ ├── domain │ │ │ │ ├── index.html │ │ │ │ └── partition │ │ │ └── user-data │ └── google │ │ ├── 0.1 │ │ ├── index.html │ │ └── meta-data │ │ │ ├── attached-disks │ │ │ ├── attributes │ │ │ ├── foo │ │ │ ├── google-compute-default-region │ │ │ ├── google-compute-default-zone │ │ │ ├── index.html │ │ │ ├── sshKeys │ │ │ └── startup-script │ │ │ ├── auth-token │ │ │ ├── auth_token │ │ │ ├── authorized-keys │ │ │ ├── authorized_keys │ │ │ ├── description │ │ │ ├── domain │ │ │ ├── hostname │ │ │ ├── image │ │ │ ├── index.html │ │ │ ├── instance-id │ │ │ ├── machine-type │ │ │ ├── network │ │ │ ├── numeric-project-id │ │ │ ├── project-id │ │ │ ├── service-accounts │ │ │ ├── 510627083670-compute@developer.gserviceaccount.com │ │ │ │ ├── acquire │ │ │ │ └── index.html │ │ │ ├── default │ │ │ │ ├── acquire │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── tags │ │ │ └── zone │ │ ├── computeMetadata │ │ ├── index.html │ │ ├── v1 │ │ │ ├── index.html │ │ │ ├── instance │ │ │ │ ├── attributes │ │ │ │ │ ├── foo │ │ │ │ │ ├── index.html │ │ │ │ │ ├── sshKeys │ │ │ │ │ └── startup-script │ │ │ │ ├── cpu-platform │ │ │ │ ├── description │ │ │ │ ├── disks │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── device-name │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── mode │ │ │ │ │ │ └── type │ │ │ │ │ └── index.html │ │ │ │ ├── hostname │ │ │ │ ├── id │ │ │ │ ├── image │ │ │ │ ├── index.html │ │ │ │ ├── licenses │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── id │ │ │ │ │ │ └── index.html │ │ │ │ │ └── index.html │ │ │ │ ├── machine-type │ │ │ │ ├── maintenance-event │ │ │ │ ├── network-interfaces │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── access-configs │ │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ │ │ ├── external-ip │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── type │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── forwarded-ips │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── ip │ │ │ │ │ │ ├── ip-aliases │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── mac │ │ │ │ │ │ └── network │ │ │ │ │ └── index.html │ │ │ │ ├── scheduling │ │ │ │ │ ├── automatic-restart │ │ │ │ │ ├── index.html │ │ │ │ │ ├── on-host-maintenance │ │ │ │ │ └── preemptible │ │ │ │ ├── service-accounts │ │ │ │ │ ├── 123456789012-compute@developer.gserviceaccount.com │ │ │ │ │ │ ├── aliases │ │ │ │ │ │ ├── email │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scopes │ │ │ │ │ │ └── token │ │ │ │ │ ├── 510627083670-compute@developer.gserviceaccount.com │ │ │ │ │ │ ├── aliases │ │ │ │ │ │ ├── email │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scopes │ │ │ │ │ │ └── token │ │ │ │ │ ├── default │ │ │ │ │ │ ├── aliases │ │ │ │ │ │ ├── email │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scopes │ │ │ │ │ │ └── token │ │ │ │ │ └── index.html │ │ │ │ ├── tags │ │ │ │ ├── virtual-clock │ │ │ │ │ ├── drift-token │ │ │ │ │ └── index.html │ │ │ │ └── zone │ │ │ └── project │ │ │ │ ├── attributes │ │ │ │ ├── google-compute-default-region │ │ │ │ ├── google-compute-default-zone │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── numeric-project-id │ │ │ │ └── project-id │ │ └── v1beta1 │ │ │ ├── index.html │ │ │ ├── instance │ │ │ ├── attributes │ │ │ │ ├── foo │ │ │ │ ├── index.html │ │ │ │ ├── sshKeys │ │ │ │ └── startup-script │ │ │ ├── description │ │ │ ├── disks │ │ │ │ ├── 0 │ │ │ │ │ ├── device-name │ │ │ │ │ ├── index │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mode │ │ │ │ │ └── type │ │ │ │ └── index.html │ │ │ ├── hostname │ │ │ ├── id │ │ │ ├── image │ │ │ ├── index.html │ │ │ ├── licenses │ │ │ │ ├── 0 │ │ │ │ │ ├── id │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── machine-type │ │ │ ├── maintenance-event │ │ │ ├── network-interfaces │ │ │ │ ├── 0 │ │ │ │ │ ├── access-configs │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ │ ├── external-ip │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── type │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── forwarded-ips │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── ip │ │ │ │ │ ├── ip-aliases │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── mac │ │ │ │ │ └── network │ │ │ │ └── index.html │ │ │ ├── scheduling │ │ │ │ ├── automatic-restart │ │ │ │ ├── index.html │ │ │ │ ├── on-host-maintenance │ │ │ │ └── preemptible │ │ │ ├── service-accounts │ │ │ │ ├── 510627083670-compute@developer.gserviceaccount.com │ │ │ │ │ ├── aliases │ │ │ │ │ ├── email │ │ │ │ │ ├── index.html │ │ │ │ │ ├── scopes │ │ │ │ │ └── token │ │ │ │ ├── default │ │ │ │ │ ├── aliases │ │ │ │ │ ├── email │ │ │ │ │ ├── index.html │ │ │ │ │ ├── scopes │ │ │ │ │ └── token │ │ │ │ └── index.html │ │ │ ├── tags │ │ │ └── zone │ │ │ └── project │ │ │ ├── attributes │ │ │ ├── google-compute-default-region │ │ │ ├── google-compute-default-zone │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── numeric-project-id │ │ │ └── project-id │ │ └── index.html └── utils.go ├── scripts ├── build.sh └── release.sh └── structs ├── metadata.go └── provider.go /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | pkg/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.7 5 | 6 | install: 7 | - make deps test 8 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Aero Changelog 2 | 3 | ## v0.1.0 (August 7, 2016) 4 | 5 | - Initial release 6 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | default: test 2 | 3 | deps: 4 | go get ./... 5 | 6 | dev: deps 7 | sh -c "'scripts/build.sh'" 8 | 9 | fmt: 10 | gofmt -w . 11 | 12 | test: 13 | go test -v $(shell go list ./...) 14 | 15 | .PHONY: default 16 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/1.0/index.html: -------------------------------------------------------------------------------- 1 | meta-data 2 | user-data -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/1.0/meta-data/ami-id: -------------------------------------------------------------------------------- 1 | ami-9a562df2 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/1.0/meta-data/ami-launch-index: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/1.0/meta-data/ami-manifest-path: -------------------------------------------------------------------------------- 1 | (unknown) -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/1.0/meta-data/hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/1.0/meta-data/index.html: -------------------------------------------------------------------------------- 1 | ami-id 2 | ami-launch-index 3 | ami-manifest-path 4 | hostname 5 | instance-id 6 | local-ipv4 7 | public-keys/ 8 | reservation-id 9 | security-groups -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/1.0/meta-data/instance-id: -------------------------------------------------------------------------------- 1 | i-0849c4a43b144116d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/1.0/meta-data/local-ipv4: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/1.0/meta-data/public-keys/0=one-time: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 404 - Not Found 7 | 8 | 9 |

404 - Not Found

10 | 11 | 12 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/1.0/meta-data/public-keys/index.html: -------------------------------------------------------------------------------- 1 | 0=one-time -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/1.0/meta-data/reservation-id: -------------------------------------------------------------------------------- 1 | r-00ec16dd9dd06932e -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/1.0/meta-data/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/1.0/user-data: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-01-19/index.html: -------------------------------------------------------------------------------- 1 | meta-data 2 | user-data -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-01-19/meta-data/ami-id: -------------------------------------------------------------------------------- 1 | ami-9a562df2 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-01-19/meta-data/ami-launch-index: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-01-19/meta-data/ami-manifest-path: -------------------------------------------------------------------------------- 1 | (unknown) -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-01-19/meta-data/hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-01-19/meta-data/index.html: -------------------------------------------------------------------------------- 1 | ami-id 2 | ami-launch-index 3 | ami-manifest-path 4 | hostname 5 | instance-id 6 | local-hostname 7 | local-ipv4 8 | public-hostname 9 | public-ipv4 10 | public-keys/ 11 | reservation-id 12 | security-groups -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-01-19/meta-data/instance-id: -------------------------------------------------------------------------------- 1 | i-0849c4a43b144116d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-01-19/meta-data/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-01-19/meta-data/local-ipv4: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-01-19/meta-data/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-01-19/meta-data/public-ipv4: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-01-19/meta-data/public-keys/0=one-time: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 404 - Not Found 7 | 8 | 9 |

404 - Not Found

10 | 11 | 12 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-01-19/meta-data/public-keys/index.html: -------------------------------------------------------------------------------- 1 | 0=one-time -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-01-19/meta-data/reservation-id: -------------------------------------------------------------------------------- 1 | r-00ec16dd9dd06932e -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-01-19/meta-data/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-01-19/user-data: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-03-01/index.html: -------------------------------------------------------------------------------- 1 | meta-data 2 | user-data -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-03-01/meta-data/ami-id: -------------------------------------------------------------------------------- 1 | ami-9a562df2 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-03-01/meta-data/ami-launch-index: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-03-01/meta-data/ami-manifest-path: -------------------------------------------------------------------------------- 1 | (unknown) -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-03-01/meta-data/hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-03-01/meta-data/index.html: -------------------------------------------------------------------------------- 1 | ami-id 2 | ami-launch-index 3 | ami-manifest-path 4 | hostname 5 | instance-id 6 | local-hostname 7 | local-ipv4 8 | public-hostname 9 | public-ipv4 10 | public-keys/ 11 | reservation-id 12 | security-groups -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-03-01/meta-data/instance-id: -------------------------------------------------------------------------------- 1 | i-0849c4a43b144116d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-03-01/meta-data/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-03-01/meta-data/local-ipv4: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-03-01/meta-data/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-03-01/meta-data/public-ipv4: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-03-01/meta-data/public-keys/0=one-time: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 404 - Not Found 7 | 8 | 9 |

404 - Not Found

10 | 11 | 12 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-03-01/meta-data/public-keys/index.html: -------------------------------------------------------------------------------- 1 | 0=one-time -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-03-01/meta-data/reservation-id: -------------------------------------------------------------------------------- 1 | r-00ec16dd9dd06932e -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-03-01/meta-data/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-03-01/user-data: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-08-29/index.html: -------------------------------------------------------------------------------- 1 | meta-data 2 | user-data -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-08-29/meta-data/ami-id: -------------------------------------------------------------------------------- 1 | ami-9a562df2 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-08-29/meta-data/ami-launch-index: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-08-29/meta-data/ami-manifest-path: -------------------------------------------------------------------------------- 1 | (unknown) -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-08-29/meta-data/hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-08-29/meta-data/index.html: -------------------------------------------------------------------------------- 1 | ami-id 2 | ami-launch-index 3 | ami-manifest-path 4 | hostname 5 | instance-id 6 | instance-type 7 | local-hostname 8 | local-ipv4 9 | public-hostname 10 | public-ipv4 11 | public-keys/ 12 | reservation-id 13 | security-groups -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-08-29/meta-data/instance-id: -------------------------------------------------------------------------------- 1 | i-0849c4a43b144116d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-08-29/meta-data/instance-type: -------------------------------------------------------------------------------- 1 | t2.medium -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-08-29/meta-data/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-08-29/meta-data/local-ipv4: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-08-29/meta-data/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-08-29/meta-data/public-ipv4: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-08-29/meta-data/public-keys/0=one-time: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 404 - Not Found 7 | 8 | 9 |

404 - Not Found

10 | 11 | 12 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-08-29/meta-data/public-keys/index.html: -------------------------------------------------------------------------------- 1 | 0=one-time -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-08-29/meta-data/reservation-id: -------------------------------------------------------------------------------- 1 | r-00ec16dd9dd06932e -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-08-29/meta-data/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-08-29/user-data: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-10-10/index.html: -------------------------------------------------------------------------------- 1 | meta-data 2 | user-data -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-10-10/meta-data/ami-id: -------------------------------------------------------------------------------- 1 | ami-9a562df2 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-10-10/meta-data/ami-launch-index: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-10-10/meta-data/ami-manifest-path: -------------------------------------------------------------------------------- 1 | (unknown) -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-10-10/meta-data/hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-10-10/meta-data/index.html: -------------------------------------------------------------------------------- 1 | ami-id 2 | ami-launch-index 3 | ami-manifest-path 4 | hostname 5 | instance-id 6 | instance-type 7 | local-hostname 8 | local-ipv4 9 | public-hostname 10 | public-ipv4 11 | public-keys/ 12 | reservation-id 13 | security-groups -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-10-10/meta-data/instance-id: -------------------------------------------------------------------------------- 1 | i-0849c4a43b144116d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-10-10/meta-data/instance-type: -------------------------------------------------------------------------------- 1 | t2.medium -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-10-10/meta-data/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-10-10/meta-data/local-ipv4: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-10-10/meta-data/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-10-10/meta-data/public-ipv4: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-10-10/meta-data/public-keys/0=one-time: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 404 - Not Found 7 | 8 | 9 |

404 - Not Found

10 | 11 | 12 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-10-10/meta-data/public-keys/index.html: -------------------------------------------------------------------------------- 1 | 0=one-time -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-10-10/meta-data/reservation-id: -------------------------------------------------------------------------------- 1 | r-00ec16dd9dd06932e -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-10-10/meta-data/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-10-10/user-data: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/index.html: -------------------------------------------------------------------------------- 1 | meta-data 2 | user-data -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/ami-id: -------------------------------------------------------------------------------- 1 | ami-9a562df2 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/ami-launch-index: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/ami-manifest-path: -------------------------------------------------------------------------------- 1 | (unknown) -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/block-device-mapping/ami: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/block-device-mapping/ephemeral0: -------------------------------------------------------------------------------- 1 | sdb -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/block-device-mapping/ephemeral1: -------------------------------------------------------------------------------- 1 | sdc -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/block-device-mapping/index.html: -------------------------------------------------------------------------------- 1 | ami 2 | ephemeral0 3 | ephemeral1 4 | root -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/block-device-mapping/root: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/index.html: -------------------------------------------------------------------------------- 1 | ami-id 2 | ami-launch-index 3 | ami-manifest-path 4 | block-device-mapping/ 5 | hostname 6 | instance-id 7 | instance-type 8 | local-hostname 9 | local-ipv4 10 | profile 11 | public-hostname 12 | public-ipv4 13 | public-keys/ 14 | reservation-id 15 | security-groups -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/instance-id: -------------------------------------------------------------------------------- 1 | i-0849c4a43b144116d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/instance-type: -------------------------------------------------------------------------------- 1 | t2.medium -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/local-ipv4: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/profile: -------------------------------------------------------------------------------- 1 | default-hvm -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/public-ipv4: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/public-keys/0=one-time: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 404 - Not Found 7 | 8 | 9 |

404 - Not Found

10 | 11 | 12 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/public-keys/index.html: -------------------------------------------------------------------------------- 1 | 0=one-time -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/reservation-id: -------------------------------------------------------------------------------- 1 | r-00ec16dd9dd06932e -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/meta-data/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2007-12-15/user-data: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/index.html: -------------------------------------------------------------------------------- 1 | meta-data 2 | user-data -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/ami-id: -------------------------------------------------------------------------------- 1 | ami-9a562df2 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/ami-launch-index: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/ami-manifest-path: -------------------------------------------------------------------------------- 1 | (unknown) -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/block-device-mapping/ami: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/block-device-mapping/ephemeral0: -------------------------------------------------------------------------------- 1 | sdb -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/block-device-mapping/ephemeral1: -------------------------------------------------------------------------------- 1 | sdc -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/block-device-mapping/index.html: -------------------------------------------------------------------------------- 1 | ami 2 | ephemeral0 3 | ephemeral1 4 | root -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/block-device-mapping/root: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/index.html: -------------------------------------------------------------------------------- 1 | ami-id 2 | ami-launch-index 3 | ami-manifest-path 4 | block-device-mapping/ 5 | hostname 6 | instance-id 7 | instance-type 8 | local-hostname 9 | local-ipv4 10 | placement/ 11 | profile 12 | public-hostname 13 | public-ipv4 14 | public-keys/ 15 | reservation-id 16 | security-groups -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/instance-id: -------------------------------------------------------------------------------- 1 | i-0849c4a43b144116d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/instance-type: -------------------------------------------------------------------------------- 1 | t2.medium -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/local-ipv4: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/placement/availability-zone: -------------------------------------------------------------------------------- 1 | us-east-1d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/placement/index.html: -------------------------------------------------------------------------------- 1 | availability-zone -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/profile: -------------------------------------------------------------------------------- 1 | default-hvm -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/public-ipv4: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/public-keys/0=one-time: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 404 - Not Found 7 | 8 | 9 |

404 - Not Found

10 | 11 | 12 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/public-keys/index.html: -------------------------------------------------------------------------------- 1 | 0=one-time -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/reservation-id: -------------------------------------------------------------------------------- 1 | r-00ec16dd9dd06932e -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/meta-data/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-02-01/user-data: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/index.html: -------------------------------------------------------------------------------- 1 | meta-data 2 | user-data -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/ami-id: -------------------------------------------------------------------------------- 1 | ami-9a562df2 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/ami-launch-index: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/ami-manifest-path: -------------------------------------------------------------------------------- 1 | (unknown) -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/block-device-mapping/ami: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/block-device-mapping/ephemeral0: -------------------------------------------------------------------------------- 1 | sdb -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/block-device-mapping/ephemeral1: -------------------------------------------------------------------------------- 1 | sdc -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/block-device-mapping/index.html: -------------------------------------------------------------------------------- 1 | ami 2 | ephemeral0 3 | ephemeral1 4 | root -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/block-device-mapping/root: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/index.html: -------------------------------------------------------------------------------- 1 | ami-id 2 | ami-launch-index 3 | ami-manifest-path 4 | block-device-mapping/ 5 | hostname 6 | instance-action 7 | instance-id 8 | instance-type 9 | local-hostname 10 | local-ipv4 11 | placement/ 12 | profile 13 | public-hostname 14 | public-ipv4 15 | public-keys/ 16 | reservation-id 17 | security-groups -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/instance-action: -------------------------------------------------------------------------------- 1 | none -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/instance-id: -------------------------------------------------------------------------------- 1 | i-0849c4a43b144116d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/instance-type: -------------------------------------------------------------------------------- 1 | t2.medium -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/local-ipv4: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/placement/availability-zone: -------------------------------------------------------------------------------- 1 | us-east-1d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/placement/index.html: -------------------------------------------------------------------------------- 1 | availability-zone -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/profile: -------------------------------------------------------------------------------- 1 | default-hvm -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/public-ipv4: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/public-keys/0=one-time: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 404 - Not Found 7 | 8 | 9 |

404 - Not Found

10 | 11 | 12 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/public-keys/index.html: -------------------------------------------------------------------------------- 1 | 0=one-time -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/reservation-id: -------------------------------------------------------------------------------- 1 | r-00ec16dd9dd06932e -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/meta-data/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2008-09-01/user-data: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/dynamic/index.html: -------------------------------------------------------------------------------- 1 | instance-identity/ 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/dynamic/instance-identity/document: -------------------------------------------------------------------------------- 1 | { 2 | "privateIp" : "172.31.62.58", 3 | "devpayProductCodes" : null, 4 | "accountId" : "123456789123", 5 | "availabilityZone" : "us-east-1d", 6 | "version" : "2010-08-31", 7 | "region" : "us-east-1", 8 | "instanceId" : "i-0849c4a43b144116d", 9 | "billingProducts" : null, 10 | "instanceType" : "t2.medium", 11 | "pendingTime" : "2016-08-20T17:21:47Z", 12 | "architecture" : "x86_64", 13 | "imageId" : "ami-9a562df2", 14 | "kernelId" : null, 15 | "ramdiskId" : null 16 | } -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/dynamic/instance-identity/index.html: -------------------------------------------------------------------------------- 1 | rsa2048 2 | pkcs7 3 | signature 4 | document 5 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/dynamic/instance-identity/signature: -------------------------------------------------------------------------------- 1 | FkRDc10bWd45a+Q/BifHjRfT8bzQII62bO1In5qxTQRpmaDJ0X9uZZ0r6/kMRSmywv+1pe3HSIb+ 2 | X19r8ROSwHT+O4wzAk6/OvdmZlaSdHxNtgvTg08Kw847gLVtvjp07VUWBFRkbSro7rc3oCJ10l7x 3 | QTabHHQfYH2RjQg2gZI= -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/index.html: -------------------------------------------------------------------------------- 1 | dynamic 2 | meta-data 3 | user-data -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/ami-id: -------------------------------------------------------------------------------- 1 | ami-9a562df2 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/ami-launch-index: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/ami-manifest-path: -------------------------------------------------------------------------------- 1 | (unknown) -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/block-device-mapping/ami: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/block-device-mapping/ephemeral0: -------------------------------------------------------------------------------- 1 | sdb -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/block-device-mapping/ephemeral1: -------------------------------------------------------------------------------- 1 | sdc -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/block-device-mapping/index.html: -------------------------------------------------------------------------------- 1 | ami 2 | ephemeral0 3 | ephemeral1 4 | root -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/block-device-mapping/root: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/index.html: -------------------------------------------------------------------------------- 1 | ami-id 2 | ami-launch-index 3 | ami-manifest-path 4 | block-device-mapping/ 5 | hostname 6 | instance-action 7 | instance-id 8 | instance-type 9 | local-hostname 10 | local-ipv4 11 | placement/ 12 | profile 13 | public-hostname 14 | public-ipv4 15 | public-keys/ 16 | reservation-id 17 | security-groups -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/instance-action: -------------------------------------------------------------------------------- 1 | none -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/instance-id: -------------------------------------------------------------------------------- 1 | i-0849c4a43b144116d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/instance-type: -------------------------------------------------------------------------------- 1 | t2.medium -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/local-ipv4: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/placement/availability-zone: -------------------------------------------------------------------------------- 1 | us-east-1d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/placement/index.html: -------------------------------------------------------------------------------- 1 | availability-zone -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/profile: -------------------------------------------------------------------------------- 1 | default-hvm -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/public-ipv4: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/public-keys/0=one-time: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 404 - Not Found 7 | 8 | 9 |

404 - Not Found

10 | 11 | 12 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/public-keys/index.html: -------------------------------------------------------------------------------- 1 | 0=one-time -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/reservation-id: -------------------------------------------------------------------------------- 1 | r-00ec16dd9dd06932e -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/meta-data/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/user-data: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/dynamic/index.html: -------------------------------------------------------------------------------- 1 | instance-identity/ 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/dynamic/instance-identity/document: -------------------------------------------------------------------------------- 1 | { 2 | "privateIp" : "172.31.62.58", 3 | "devpayProductCodes" : null, 4 | "accountId" : "123456789123", 5 | "availabilityZone" : "us-east-1d", 6 | "version" : "2010-08-31", 7 | "region" : "us-east-1", 8 | "instanceId" : "i-0849c4a43b144116d", 9 | "billingProducts" : null, 10 | "instanceType" : "t2.medium", 11 | "pendingTime" : "2016-08-20T17:21:47Z", 12 | "architecture" : "x86_64", 13 | "imageId" : "ami-9a562df2", 14 | "kernelId" : null, 15 | "ramdiskId" : null 16 | } -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/dynamic/instance-identity/index.html: -------------------------------------------------------------------------------- 1 | rsa2048 2 | pkcs7 3 | signature 4 | document 5 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/dynamic/instance-identity/signature: -------------------------------------------------------------------------------- 1 | FkRDc10bWd45a+Q/BifHjRfT8bzQII62bO1In5qxTQRpmaDJ0X9uZZ0r6/kMRSmywv+1pe3HSIb+ 2 | X19r8ROSwHT+O4wzAk6/OvdmZlaSdHxNtgvTg08Kw847gLVtvjp07VUWBFRkbSro7rc3oCJ10l7x 3 | QTabHHQfYH2RjQg2gZI= -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/index.html: -------------------------------------------------------------------------------- 1 | dynamic 2 | meta-data 3 | user-data -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/ami-id: -------------------------------------------------------------------------------- 1 | ami-9a562df2 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/ami-launch-index: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/ami-manifest-path: -------------------------------------------------------------------------------- 1 | (unknown) -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/block-device-mapping/ami: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/block-device-mapping/ephemeral0: -------------------------------------------------------------------------------- 1 | sdb -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/block-device-mapping/ephemeral1: -------------------------------------------------------------------------------- 1 | sdc -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/block-device-mapping/index.html: -------------------------------------------------------------------------------- 1 | ami 2 | ephemeral0 3 | ephemeral1 4 | root -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/block-device-mapping/root: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/index.html: -------------------------------------------------------------------------------- 1 | ami-id 2 | ami-launch-index 3 | ami-manifest-path 4 | block-device-mapping/ 5 | hostname 6 | instance-action 7 | instance-id 8 | instance-type 9 | local-hostname 10 | local-ipv4 11 | mac 12 | network/ 13 | placement/ 14 | profile 15 | public-hostname 16 | public-ipv4 17 | public-keys/ 18 | reservation-id 19 | security-groups -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/instance-action: -------------------------------------------------------------------------------- 1 | none -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/instance-id: -------------------------------------------------------------------------------- 1 | i-0849c4a43b144116d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/instance-type: -------------------------------------------------------------------------------- 1 | t2.medium -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/local-ipv4: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/mac: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/network/index.html: -------------------------------------------------------------------------------- 1 | interfaces/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/index.html: -------------------------------------------------------------------------------- 1 | macs/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/device-number: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/index.html: -------------------------------------------------------------------------------- 1 | device-number 2 | interface-id 3 | ipv4-associations/ 4 | local-hostname 5 | local-ipv4s 6 | mac 7 | owner-id 8 | public-hostname 9 | public-ipv4s 10 | security-group-ids 11 | security-groups 12 | subnet-id 13 | subnet-ipv4-cidr-block 14 | vpc-id 15 | vpc-ipv4-cidr-block -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/interface-id: -------------------------------------------------------------------------------- 1 | eni-75395265 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/ipv4-associations/52.207.213.249: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/ipv4-associations/index.html: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/local-ipv4s: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/mac: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/owner-id: -------------------------------------------------------------------------------- 1 | 123456789123 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/public-ipv4s: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-group-ids: -------------------------------------------------------------------------------- 1 | sg-4d37ec37 2 | sg-4237ec38 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/subnet-id: -------------------------------------------------------------------------------- 1 | subnet-69503e42 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/subnet-ipv4-cidr-block: -------------------------------------------------------------------------------- 1 | 172.31.48.0/20 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-id: -------------------------------------------------------------------------------- 1 | vpc-ff5e439a -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-ipv4-cidr-block: -------------------------------------------------------------------------------- 1 | 172.31.0.0/16 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/macs/index.html: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/placement/availability-zone: -------------------------------------------------------------------------------- 1 | us-east-1d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/placement/index.html: -------------------------------------------------------------------------------- 1 | availability-zone -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/profile: -------------------------------------------------------------------------------- 1 | default-hvm -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/public-ipv4: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/public-keys/0=one-time: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 404 - Not Found 7 | 8 | 9 |

404 - Not Found

10 | 11 | 12 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/public-keys/index.html: -------------------------------------------------------------------------------- 1 | 0=one-time -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/reservation-id: -------------------------------------------------------------------------------- 1 | r-00ec16dd9dd06932e -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/meta-data/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/user-data: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/dynamic/index.html: -------------------------------------------------------------------------------- 1 | instance-identity/ 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/dynamic/instance-identity/document: -------------------------------------------------------------------------------- 1 | { 2 | "privateIp" : "172.31.62.58", 3 | "devpayProductCodes" : null, 4 | "accountId" : "123456789123", 5 | "availabilityZone" : "us-east-1d", 6 | "version" : "2010-08-31", 7 | "region" : "us-east-1", 8 | "instanceId" : "i-0849c4a43b144116d", 9 | "billingProducts" : null, 10 | "instanceType" : "t2.medium", 11 | "pendingTime" : "2016-08-20T17:21:47Z", 12 | "architecture" : "x86_64", 13 | "imageId" : "ami-9a562df2", 14 | "kernelId" : null, 15 | "ramdiskId" : null 16 | } -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/dynamic/instance-identity/index.html: -------------------------------------------------------------------------------- 1 | rsa2048 2 | pkcs7 3 | signature 4 | document 5 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/dynamic/instance-identity/signature: -------------------------------------------------------------------------------- 1 | FkRDc10bWd45a+Q/BifHjRfT8bzQII62bO1In5qxTQRpmaDJ0X9uZZ0r6/kMRSmywv+1pe3HSIb+ 2 | X19r8ROSwHT+O4wzAk6/OvdmZlaSdHxNtgvTg08Kw847gLVtvjp07VUWBFRkbSro7rc3oCJ10l7x 3 | QTabHHQfYH2RjQg2gZI= -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/index.html: -------------------------------------------------------------------------------- 1 | dynamic 2 | meta-data 3 | user-data -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/ami-id: -------------------------------------------------------------------------------- 1 | ami-9a562df2 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/ami-launch-index: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/ami-manifest-path: -------------------------------------------------------------------------------- 1 | (unknown) -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/block-device-mapping/ami: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/block-device-mapping/ephemeral0: -------------------------------------------------------------------------------- 1 | sdb -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/block-device-mapping/ephemeral1: -------------------------------------------------------------------------------- 1 | sdc -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/block-device-mapping/index.html: -------------------------------------------------------------------------------- 1 | ami 2 | ephemeral0 3 | ephemeral1 4 | root -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/block-device-mapping/root: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/index.html: -------------------------------------------------------------------------------- 1 | ami-id 2 | ami-launch-index 3 | ami-manifest-path 4 | block-device-mapping/ 5 | hostname 6 | instance-action 7 | instance-id 8 | instance-type 9 | local-hostname 10 | local-ipv4 11 | mac 12 | metrics/ 13 | network/ 14 | placement/ 15 | profile 16 | public-hostname 17 | public-ipv4 18 | public-keys/ 19 | reservation-id 20 | security-groups -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/instance-action: -------------------------------------------------------------------------------- 1 | none -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/instance-id: -------------------------------------------------------------------------------- 1 | i-0849c4a43b144116d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/instance-type: -------------------------------------------------------------------------------- 1 | t2.medium -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/local-ipv4: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/mac: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/metrics/index.html: -------------------------------------------------------------------------------- 1 | vhostmd -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/metrics/vhostmd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/network/index.html: -------------------------------------------------------------------------------- 1 | interfaces/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/index.html: -------------------------------------------------------------------------------- 1 | macs/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/device-number: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/index.html: -------------------------------------------------------------------------------- 1 | device-number 2 | interface-id 3 | ipv4-associations/ 4 | local-hostname 5 | local-ipv4s 6 | mac 7 | owner-id 8 | public-hostname 9 | public-ipv4s 10 | security-group-ids 11 | security-groups 12 | subnet-id 13 | subnet-ipv4-cidr-block 14 | vpc-id 15 | vpc-ipv4-cidr-block -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/interface-id: -------------------------------------------------------------------------------- 1 | eni-75395265 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/ipv4-associations/52.207.213.249: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/ipv4-associations/index.html: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/local-ipv4s: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/mac: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/owner-id: -------------------------------------------------------------------------------- 1 | 123456789123 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/public-ipv4s: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-group-ids: -------------------------------------------------------------------------------- 1 | sg-4d37ec37 2 | sg-4237ec38 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/subnet-id: -------------------------------------------------------------------------------- 1 | subnet-69503e42 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/subnet-ipv4-cidr-block: -------------------------------------------------------------------------------- 1 | 172.31.48.0/20 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-id: -------------------------------------------------------------------------------- 1 | vpc-ff5e439a -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-ipv4-cidr-block: -------------------------------------------------------------------------------- 1 | 172.31.0.0/16 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/macs/index.html: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/placement/availability-zone: -------------------------------------------------------------------------------- 1 | us-east-1d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/placement/index.html: -------------------------------------------------------------------------------- 1 | availability-zone -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/profile: -------------------------------------------------------------------------------- 1 | default-hvm -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/public-ipv4: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/public-keys/0=one-time: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 404 - Not Found 7 | 8 | 9 |

404 - Not Found

10 | 11 | 12 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/public-keys/index.html: -------------------------------------------------------------------------------- 1 | 0=one-time -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/reservation-id: -------------------------------------------------------------------------------- 1 | r-00ec16dd9dd06932e -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/meta-data/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/user-data: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/dynamic/index.html: -------------------------------------------------------------------------------- 1 | instance-identity/ 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/dynamic/instance-identity/document: -------------------------------------------------------------------------------- 1 | { 2 | "privateIp" : "172.31.62.58", 3 | "devpayProductCodes" : null, 4 | "accountId" : "123456789123", 5 | "availabilityZone" : "us-east-1d", 6 | "version" : "2010-08-31", 7 | "region" : "us-east-1", 8 | "instanceId" : "i-0849c4a43b144116d", 9 | "billingProducts" : null, 10 | "instanceType" : "t2.medium", 11 | "pendingTime" : "2016-08-20T17:21:47Z", 12 | "architecture" : "x86_64", 13 | "imageId" : "ami-9a562df2", 14 | "kernelId" : null, 15 | "ramdiskId" : null 16 | } -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/dynamic/instance-identity/index.html: -------------------------------------------------------------------------------- 1 | rsa2048 2 | pkcs7 3 | signature 4 | document 5 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/dynamic/instance-identity/signature: -------------------------------------------------------------------------------- 1 | FkRDc10bWd45a+Q/BifHjRfT8bzQII62bO1In5qxTQRpmaDJ0X9uZZ0r6/kMRSmywv+1pe3HSIb+ 2 | X19r8ROSwHT+O4wzAk6/OvdmZlaSdHxNtgvTg08Kw847gLVtvjp07VUWBFRkbSro7rc3oCJ10l7x 3 | QTabHHQfYH2RjQg2gZI= -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/index.html: -------------------------------------------------------------------------------- 1 | dynamic 2 | meta-data 3 | user-data -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/ami-id: -------------------------------------------------------------------------------- 1 | ami-9a562df2 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/ami-launch-index: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/ami-manifest-path: -------------------------------------------------------------------------------- 1 | (unknown) -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/block-device-mapping/ami: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/block-device-mapping/ephemeral0: -------------------------------------------------------------------------------- 1 | sdb -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/block-device-mapping/ephemeral1: -------------------------------------------------------------------------------- 1 | sdc -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/block-device-mapping/index.html: -------------------------------------------------------------------------------- 1 | ami 2 | ephemeral0 3 | ephemeral1 4 | root -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/block-device-mapping/root: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/index.html: -------------------------------------------------------------------------------- 1 | ami-id 2 | ami-launch-index 3 | ami-manifest-path 4 | block-device-mapping/ 5 | hostname 6 | instance-action 7 | instance-id 8 | instance-type 9 | local-hostname 10 | local-ipv4 11 | mac 12 | metrics/ 13 | network/ 14 | placement/ 15 | profile 16 | public-hostname 17 | public-ipv4 18 | public-keys/ 19 | reservation-id 20 | security-groups -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/instance-action: -------------------------------------------------------------------------------- 1 | none -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/instance-id: -------------------------------------------------------------------------------- 1 | i-0849c4a43b144116d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/instance-type: -------------------------------------------------------------------------------- 1 | t2.medium -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/local-ipv4: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/mac: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/metrics/index.html: -------------------------------------------------------------------------------- 1 | vhostmd -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/metrics/vhostmd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/network/index.html: -------------------------------------------------------------------------------- 1 | interfaces/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/index.html: -------------------------------------------------------------------------------- 1 | macs/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/device-number: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/index.html: -------------------------------------------------------------------------------- 1 | device-number 2 | interface-id 3 | ipv4-associations/ 4 | local-hostname 5 | local-ipv4s 6 | mac 7 | owner-id 8 | public-hostname 9 | public-ipv4s 10 | security-group-ids 11 | security-groups 12 | subnet-id 13 | subnet-ipv4-cidr-block 14 | vpc-id 15 | vpc-ipv4-cidr-block -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/interface-id: -------------------------------------------------------------------------------- 1 | eni-75395265 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/ipv4-associations/52.207.213.249: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/ipv4-associations/index.html: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/local-ipv4s: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/mac: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/owner-id: -------------------------------------------------------------------------------- 1 | 123456789123 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/public-ipv4s: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-group-ids: -------------------------------------------------------------------------------- 1 | sg-4d37ec37 2 | sg-4237ec38 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/subnet-id: -------------------------------------------------------------------------------- 1 | subnet-69503e42 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/subnet-ipv4-cidr-block: -------------------------------------------------------------------------------- 1 | 172.31.48.0/20 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-id: -------------------------------------------------------------------------------- 1 | vpc-ff5e439a -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-ipv4-cidr-block: -------------------------------------------------------------------------------- 1 | 172.31.0.0/16 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/macs/index.html: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/placement/availability-zone: -------------------------------------------------------------------------------- 1 | us-east-1d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/placement/index.html: -------------------------------------------------------------------------------- 1 | availability-zone -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/profile: -------------------------------------------------------------------------------- 1 | default-hvm -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/public-ipv4: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/public-keys/0=one-time: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 404 - Not Found 7 | 8 | 9 |

404 - Not Found

10 | 11 | 12 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/public-keys/index.html: -------------------------------------------------------------------------------- 1 | 0=one-time -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/reservation-id: -------------------------------------------------------------------------------- 1 | r-00ec16dd9dd06932e -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/meta-data/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/user-data: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/dynamic/index.html: -------------------------------------------------------------------------------- 1 | instance-identity/ 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/dynamic/instance-identity/index.html: -------------------------------------------------------------------------------- 1 | rsa2048 2 | pkcs7 3 | signature 4 | document 5 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/dynamic/instance-identity/signature: -------------------------------------------------------------------------------- 1 | FkRDc10bWd45a+Q/BifHjRfT8bzQII62bO1In5qxTQRpmaDJ0X9uZZ0r6/kMRSmywv+1pe3HSIb+ 2 | X19r8ROSwHT+O4wzAk6/OvdmZlaSdHxNtgvTg08Kw847gLVtvjp07VUWBFRkbSro7rc3oCJ10l7x 3 | QTabHHQfYH2RjQg2gZI= -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/index.html: -------------------------------------------------------------------------------- 1 | dynamic 2 | meta-data 3 | user-data -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/ami-id: -------------------------------------------------------------------------------- 1 | ami-9a562df2 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/ami-launch-index: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/ami-manifest-path: -------------------------------------------------------------------------------- 1 | (unknown) -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/block-device-mapping/ami: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/block-device-mapping/ephemeral0: -------------------------------------------------------------------------------- 1 | sdb -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/block-device-mapping/ephemeral1: -------------------------------------------------------------------------------- 1 | sdc -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/block-device-mapping/index.html: -------------------------------------------------------------------------------- 1 | ami 2 | ephemeral0 3 | ephemeral1 4 | root -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/block-device-mapping/root: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/index.html: -------------------------------------------------------------------------------- 1 | ami-id 2 | ami-launch-index 3 | ami-manifest-path 4 | block-device-mapping/ 5 | hostname 6 | instance-action 7 | instance-id 8 | instance-type 9 | local-hostname 10 | local-ipv4 11 | mac 12 | metrics/ 13 | network/ 14 | placement/ 15 | profile 16 | public-hostname 17 | public-ipv4 18 | public-keys/ 19 | reservation-id 20 | security-groups 21 | services/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/instance-action: -------------------------------------------------------------------------------- 1 | none -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/instance-id: -------------------------------------------------------------------------------- 1 | i-0849c4a43b144116d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/instance-type: -------------------------------------------------------------------------------- 1 | t2.medium -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/local-ipv4: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/mac: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/metrics/index.html: -------------------------------------------------------------------------------- 1 | vhostmd -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/metrics/vhostmd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/network/index.html: -------------------------------------------------------------------------------- 1 | interfaces/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/index.html: -------------------------------------------------------------------------------- 1 | macs/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/device-number: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/index.html: -------------------------------------------------------------------------------- 1 | device-number 2 | interface-id 3 | ipv4-associations/ 4 | local-hostname 5 | local-ipv4s 6 | mac 7 | owner-id 8 | public-hostname 9 | public-ipv4s 10 | security-group-ids 11 | security-groups 12 | subnet-id 13 | subnet-ipv4-cidr-block 14 | vpc-id 15 | vpc-ipv4-cidr-block -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/interface-id: -------------------------------------------------------------------------------- 1 | eni-75395265 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/ipv4-associations/52.207.213.249: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/ipv4-associations/index.html: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/local-ipv4s: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/mac: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/owner-id: -------------------------------------------------------------------------------- 1 | 123456789123 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/public-ipv4s: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-group-ids: -------------------------------------------------------------------------------- 1 | sg-4d37ec37 2 | sg-4237ec38 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/subnet-id: -------------------------------------------------------------------------------- 1 | subnet-69503e42 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/subnet-ipv4-cidr-block: -------------------------------------------------------------------------------- 1 | 172.31.48.0/20 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-id: -------------------------------------------------------------------------------- 1 | vpc-ff5e439a -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-ipv4-cidr-block: -------------------------------------------------------------------------------- 1 | 172.31.0.0/16 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/macs/index.html: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/placement/availability-zone: -------------------------------------------------------------------------------- 1 | us-east-1d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/placement/index.html: -------------------------------------------------------------------------------- 1 | availability-zone -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/profile: -------------------------------------------------------------------------------- 1 | default-hvm -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/public-ipv4: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/public-keys/0=one-time: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 404 - Not Found 7 | 8 | 9 |

404 - Not Found

10 | 11 | 12 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/public-keys/index.html: -------------------------------------------------------------------------------- 1 | 0=one-time -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/reservation-id: -------------------------------------------------------------------------------- 1 | r-00ec16dd9dd06932e -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/services/domain: -------------------------------------------------------------------------------- 1 | amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/meta-data/services/index.html: -------------------------------------------------------------------------------- 1 | domain -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/user-data: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/dynamic/index.html: -------------------------------------------------------------------------------- 1 | instance-identity/ 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/dynamic/instance-identity/index.html: -------------------------------------------------------------------------------- 1 | rsa2048 2 | pkcs7 3 | signature 4 | document 5 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/dynamic/instance-identity/signature: -------------------------------------------------------------------------------- 1 | FkRDc10bWd45a+Q/BifHjRfT8bzQII62bO1In5qxTQRpmaDJ0X9uZZ0r6/kMRSmywv+1pe3HSIb+ 2 | X19r8ROSwHT+O4wzAk6/OvdmZlaSdHxNtgvTg08Kw847gLVtvjp07VUWBFRkbSro7rc3oCJ10l7x 3 | QTabHHQfYH2RjQg2gZI= -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/index.html: -------------------------------------------------------------------------------- 1 | dynamic 2 | meta-data 3 | user-data -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/ami-id: -------------------------------------------------------------------------------- 1 | ami-9a562df2 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/ami-launch-index: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/ami-manifest-path: -------------------------------------------------------------------------------- 1 | (unknown) -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/block-device-mapping/ami: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/block-device-mapping/ephemeral0: -------------------------------------------------------------------------------- 1 | sdb -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/block-device-mapping/ephemeral1: -------------------------------------------------------------------------------- 1 | sdc -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/block-device-mapping/index.html: -------------------------------------------------------------------------------- 1 | ami 2 | ephemeral0 3 | ephemeral1 4 | root -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/block-device-mapping/root: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/index.html: -------------------------------------------------------------------------------- 1 | ami-id 2 | ami-launch-index 3 | ami-manifest-path 4 | block-device-mapping/ 5 | hostname 6 | instance-action 7 | instance-id 8 | instance-type 9 | local-hostname 10 | local-ipv4 11 | mac 12 | metrics/ 13 | network/ 14 | placement/ 15 | profile 16 | public-hostname 17 | public-ipv4 18 | public-keys/ 19 | reservation-id 20 | security-groups 21 | services/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/instance-action: -------------------------------------------------------------------------------- 1 | none -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/instance-id: -------------------------------------------------------------------------------- 1 | i-0849c4a43b144116d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/instance-type: -------------------------------------------------------------------------------- 1 | t2.medium -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/local-ipv4: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/mac: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/metrics/index.html: -------------------------------------------------------------------------------- 1 | vhostmd -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/metrics/vhostmd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/network/index.html: -------------------------------------------------------------------------------- 1 | interfaces/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/index.html: -------------------------------------------------------------------------------- 1 | macs/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/device-number: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/index.html: -------------------------------------------------------------------------------- 1 | device-number 2 | interface-id 3 | ipv4-associations/ 4 | local-hostname 5 | local-ipv4s 6 | mac 7 | owner-id 8 | public-hostname 9 | public-ipv4s 10 | security-group-ids 11 | security-groups 12 | subnet-id 13 | subnet-ipv4-cidr-block 14 | vpc-id 15 | vpc-ipv4-cidr-block -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/interface-id: -------------------------------------------------------------------------------- 1 | eni-75395265 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/ipv4-associations/52.207.213.249: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/ipv4-associations/index.html: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/local-ipv4s: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/mac: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/owner-id: -------------------------------------------------------------------------------- 1 | 123456789123 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/public-ipv4s: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-group-ids: -------------------------------------------------------------------------------- 1 | sg-4d37ec37 2 | sg-4237ec38 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/subnet-id: -------------------------------------------------------------------------------- 1 | subnet-69503e42 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/subnet-ipv4-cidr-block: -------------------------------------------------------------------------------- 1 | 172.31.48.0/20 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-id: -------------------------------------------------------------------------------- 1 | vpc-ff5e439a -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-ipv4-cidr-block: -------------------------------------------------------------------------------- 1 | 172.31.0.0/16 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/macs/index.html: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/placement/availability-zone: -------------------------------------------------------------------------------- 1 | us-east-1d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/placement/index.html: -------------------------------------------------------------------------------- 1 | availability-zone -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/profile: -------------------------------------------------------------------------------- 1 | default-hvm -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/public-ipv4: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/public-keys/0=one-time: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 404 - Not Found 7 | 8 | 9 |

404 - Not Found

10 | 11 | 12 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/public-keys/index.html: -------------------------------------------------------------------------------- 1 | 0=one-time -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/reservation-id: -------------------------------------------------------------------------------- 1 | r-00ec16dd9dd06932e -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/services/domain: -------------------------------------------------------------------------------- 1 | amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/meta-data/services/index.html: -------------------------------------------------------------------------------- 1 | domain -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/user-data: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/dynamic/index.html: -------------------------------------------------------------------------------- 1 | instance-identity/ 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/dynamic/instance-identity/index.html: -------------------------------------------------------------------------------- 1 | rsa2048 2 | pkcs7 3 | signature 4 | document 5 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/dynamic/instance-identity/signature: -------------------------------------------------------------------------------- 1 | FkRDc10bWd45a+Q/BifHjRfT8bzQII62bO1In5qxTQRpmaDJ0X9uZZ0r6/kMRSmywv+1pe3HSIb+ 2 | X19r8ROSwHT+O4wzAk6/OvdmZlaSdHxNtgvTg08Kw847gLVtvjp07VUWBFRkbSro7rc3oCJ10l7x 3 | QTabHHQfYH2RjQg2gZI= -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/index.html: -------------------------------------------------------------------------------- 1 | dynamic 2 | meta-data 3 | user-data -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/ami-id: -------------------------------------------------------------------------------- 1 | ami-9a562df2 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/ami-launch-index: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/ami-manifest-path: -------------------------------------------------------------------------------- 1 | (unknown) -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/block-device-mapping/ami: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/block-device-mapping/ephemeral0: -------------------------------------------------------------------------------- 1 | sdb -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/block-device-mapping/ephemeral1: -------------------------------------------------------------------------------- 1 | sdc -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/block-device-mapping/index.html: -------------------------------------------------------------------------------- 1 | ami 2 | ephemeral0 3 | ephemeral1 4 | root -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/block-device-mapping/root: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/index.html: -------------------------------------------------------------------------------- 1 | ami-id 2 | ami-launch-index 3 | ami-manifest-path 4 | block-device-mapping/ 5 | hostname 6 | instance-action 7 | instance-id 8 | instance-type 9 | local-hostname 10 | local-ipv4 11 | mac 12 | metrics/ 13 | network/ 14 | placement/ 15 | profile 16 | public-hostname 17 | public-ipv4 18 | public-keys/ 19 | reservation-id 20 | security-groups 21 | services/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/instance-action: -------------------------------------------------------------------------------- 1 | none -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/instance-id: -------------------------------------------------------------------------------- 1 | i-0849c4a43b144116d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/instance-type: -------------------------------------------------------------------------------- 1 | t2.medium -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/local-ipv4: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/mac: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/metrics/index.html: -------------------------------------------------------------------------------- 1 | vhostmd -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/metrics/vhostmd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/network/index.html: -------------------------------------------------------------------------------- 1 | interfaces/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/index.html: -------------------------------------------------------------------------------- 1 | macs/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/device-number: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/index.html: -------------------------------------------------------------------------------- 1 | device-number 2 | interface-id 3 | ipv4-associations/ 4 | local-hostname 5 | local-ipv4s 6 | mac 7 | owner-id 8 | public-hostname 9 | public-ipv4s 10 | security-group-ids 11 | security-groups 12 | subnet-id 13 | subnet-ipv4-cidr-block 14 | vpc-id 15 | vpc-ipv4-cidr-block -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/interface-id: -------------------------------------------------------------------------------- 1 | eni-75395265 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/ipv4-associations/52.207.213.249: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/ipv4-associations/index.html: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/local-ipv4s: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/mac: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/owner-id: -------------------------------------------------------------------------------- 1 | 123456789123 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/public-ipv4s: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-group-ids: -------------------------------------------------------------------------------- 1 | sg-4d37ec37 2 | sg-4237ec38 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/subnet-id: -------------------------------------------------------------------------------- 1 | subnet-69503e42 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/subnet-ipv4-cidr-block: -------------------------------------------------------------------------------- 1 | 172.31.48.0/20 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-id: -------------------------------------------------------------------------------- 1 | vpc-ff5e439a -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-ipv4-cidr-block: -------------------------------------------------------------------------------- 1 | 172.31.0.0/16 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/macs/index.html: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/placement/availability-zone: -------------------------------------------------------------------------------- 1 | us-east-1d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/placement/index.html: -------------------------------------------------------------------------------- 1 | availability-zone -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/profile: -------------------------------------------------------------------------------- 1 | default-hvm -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/public-ipv4: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/public-keys/0=one-time: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 404 - Not Found 7 | 8 | 9 |

404 - Not Found

10 | 11 | 12 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/public-keys/index.html: -------------------------------------------------------------------------------- 1 | 0=one-time -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/reservation-id: -------------------------------------------------------------------------------- 1 | r-00ec16dd9dd06932e -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/services/domain: -------------------------------------------------------------------------------- 1 | amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/services/index.html: -------------------------------------------------------------------------------- 1 | domain 2 | partition -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/meta-data/services/partition: -------------------------------------------------------------------------------- 1 | aws -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/user-data: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/dynamic/index.html: -------------------------------------------------------------------------------- 1 | instance-identity/ 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/dynamic/instance-identity/index.html: -------------------------------------------------------------------------------- 1 | rsa2048 2 | pkcs7 3 | signature 4 | document 5 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/dynamic/instance-identity/signature: -------------------------------------------------------------------------------- 1 | FkRDc10bWd45a+Q/BifHjRfT8bzQII62bO1In5qxTQRpmaDJ0X9uZZ0r6/kMRSmywv+1pe3HSIb+ 2 | X19r8ROSwHT+O4wzAk6/OvdmZlaSdHxNtgvTg08Kw847gLVtvjp07VUWBFRkbSro7rc3oCJ10l7x 3 | QTabHHQfYH2RjQg2gZI= -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/index.html: -------------------------------------------------------------------------------- 1 | dynamic 2 | meta-data 3 | user-data -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/ami-id: -------------------------------------------------------------------------------- 1 | ami-9a562df2 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/ami-launch-index: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/ami-manifest-path: -------------------------------------------------------------------------------- 1 | (unknown) -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/block-device-mapping/ami: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/block-device-mapping/ephemeral0: -------------------------------------------------------------------------------- 1 | sdb -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/block-device-mapping/ephemeral1: -------------------------------------------------------------------------------- 1 | sdc -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/block-device-mapping/index.html: -------------------------------------------------------------------------------- 1 | ami 2 | ephemeral0 3 | ephemeral1 4 | root -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/block-device-mapping/root: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/index.html: -------------------------------------------------------------------------------- 1 | ami-id 2 | ami-launch-index 3 | ami-manifest-path 4 | block-device-mapping/ 5 | hostname 6 | instance-action 7 | instance-id 8 | instance-type 9 | local-hostname 10 | local-ipv4 11 | mac 12 | metrics/ 13 | network/ 14 | placement/ 15 | profile 16 | public-hostname 17 | public-ipv4 18 | public-keys/ 19 | reservation-id 20 | security-groups 21 | services/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/instance-action: -------------------------------------------------------------------------------- 1 | none -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/instance-id: -------------------------------------------------------------------------------- 1 | i-0849c4a43b144116d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/instance-type: -------------------------------------------------------------------------------- 1 | t2.medium -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/local-ipv4: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/mac: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/metrics/index.html: -------------------------------------------------------------------------------- 1 | vhostmd -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/metrics/vhostmd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/index.html: -------------------------------------------------------------------------------- 1 | interfaces/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/index.html: -------------------------------------------------------------------------------- 1 | macs/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/device-number: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/index.html: -------------------------------------------------------------------------------- 1 | device-number 2 | interface-id 3 | ipv4-associations/ 4 | local-hostname 5 | local-ipv4s 6 | mac 7 | owner-id 8 | public-hostname 9 | public-ipv4s 10 | security-group-ids 11 | security-groups 12 | subnet-id 13 | subnet-ipv4-cidr-block 14 | vpc-id 15 | vpc-ipv4-cidr-block 16 | vpc-ipv4-cidr-blocks -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/interface-id: -------------------------------------------------------------------------------- 1 | eni-75395265 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/ipv4-associations/52.207.213.249: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/ipv4-associations/index.html: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/local-ipv4s: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/mac: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/owner-id: -------------------------------------------------------------------------------- 1 | 123456789123 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/public-ipv4s: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-group-ids: -------------------------------------------------------------------------------- 1 | sg-4d37ec37 2 | sg-4237ec38 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/subnet-id: -------------------------------------------------------------------------------- 1 | subnet-69503e42 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/subnet-ipv4-cidr-block: -------------------------------------------------------------------------------- 1 | 172.31.48.0/20 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-id: -------------------------------------------------------------------------------- 1 | vpc-ff5e439a -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-ipv4-cidr-block: -------------------------------------------------------------------------------- 1 | 172.31.0.0/16 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-ipv4-cidr-blocks: -------------------------------------------------------------------------------- 1 | 172.31.0.0/16 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/index.html: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/placement/availability-zone: -------------------------------------------------------------------------------- 1 | us-east-1d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/placement/index.html: -------------------------------------------------------------------------------- 1 | availability-zone -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/profile: -------------------------------------------------------------------------------- 1 | default-hvm -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/public-ipv4: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/public-keys/0=one-time: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 404 - Not Found 7 | 8 | 9 |

404 - Not Found

10 | 11 | 12 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/public-keys/index.html: -------------------------------------------------------------------------------- 1 | 0=one-time -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/reservation-id: -------------------------------------------------------------------------------- 1 | r-00ec16dd9dd06932e -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/services/domain: -------------------------------------------------------------------------------- 1 | amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/services/index.html: -------------------------------------------------------------------------------- 1 | domain 2 | partition -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/meta-data/services/partition: -------------------------------------------------------------------------------- 1 | aws -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/user-data: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/dynamic/index.html: -------------------------------------------------------------------------------- 1 | instance-identity/ 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/dynamic/instance-identity/index.html: -------------------------------------------------------------------------------- 1 | rsa2048 2 | pkcs7 3 | signature 4 | document 5 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/dynamic/instance-identity/signature: -------------------------------------------------------------------------------- 1 | FkRDc10bWd45a+Q/BifHjRfT8bzQII62bO1In5qxTQRpmaDJ0X9uZZ0r6/kMRSmywv+1pe3HSIb+ 2 | X19r8ROSwHT+O4wzAk6/OvdmZlaSdHxNtgvTg08Kw847gLVtvjp07VUWBFRkbSro7rc3oCJ10l7x 3 | QTabHHQfYH2RjQg2gZI= -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/index.html: -------------------------------------------------------------------------------- 1 | dynamic 2 | meta-data 3 | user-data -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/ami-id: -------------------------------------------------------------------------------- 1 | ami-9a562df2 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/ami-launch-index: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/ami-manifest-path: -------------------------------------------------------------------------------- 1 | (unknown) -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/block-device-mapping/ami: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/block-device-mapping/ephemeral0: -------------------------------------------------------------------------------- 1 | sdb -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/block-device-mapping/ephemeral1: -------------------------------------------------------------------------------- 1 | sdc -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/block-device-mapping/index.html: -------------------------------------------------------------------------------- 1 | ami 2 | ephemeral0 3 | ephemeral1 4 | root -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/block-device-mapping/root: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/index.html: -------------------------------------------------------------------------------- 1 | ami-id 2 | ami-launch-index 3 | ami-manifest-path 4 | block-device-mapping/ 5 | hostname 6 | instance-action 7 | instance-id 8 | instance-type 9 | local-hostname 10 | local-ipv4 11 | mac 12 | metrics/ 13 | network/ 14 | placement/ 15 | profile 16 | public-hostname 17 | public-ipv4 18 | public-keys/ 19 | reservation-id 20 | security-groups 21 | services/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/instance-action: -------------------------------------------------------------------------------- 1 | none -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/instance-id: -------------------------------------------------------------------------------- 1 | i-0849c4a43b144116d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/instance-type: -------------------------------------------------------------------------------- 1 | t2.medium -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/local-ipv4: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/mac: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/metrics/index.html: -------------------------------------------------------------------------------- 1 | vhostmd -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/metrics/vhostmd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/index.html: -------------------------------------------------------------------------------- 1 | interfaces/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/index.html: -------------------------------------------------------------------------------- 1 | macs/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/device-number: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/index.html: -------------------------------------------------------------------------------- 1 | device-number 2 | interface-id 3 | ipv4-associations/ 4 | local-hostname 5 | local-ipv4s 6 | mac 7 | owner-id 8 | public-hostname 9 | public-ipv4s 10 | security-group-ids 11 | security-groups 12 | subnet-id 13 | subnet-ipv4-cidr-block 14 | vpc-id 15 | vpc-ipv4-cidr-block 16 | vpc-ipv4-cidr-blocks -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/interface-id: -------------------------------------------------------------------------------- 1 | eni-75395265 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/ipv4-associations/52.207.213.249: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/ipv4-associations/index.html: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/local-ipv4s: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/mac: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/owner-id: -------------------------------------------------------------------------------- 1 | 123456789123 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/public-ipv4s: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-group-ids: -------------------------------------------------------------------------------- 1 | sg-4d37ec37 2 | sg-4237ec38 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/subnet-id: -------------------------------------------------------------------------------- 1 | subnet-69503e42 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/subnet-ipv4-cidr-block: -------------------------------------------------------------------------------- 1 | 172.31.48.0/20 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-id: -------------------------------------------------------------------------------- 1 | vpc-ff5e439a -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-ipv4-cidr-block: -------------------------------------------------------------------------------- 1 | 172.31.0.0/16 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-ipv4-cidr-blocks: -------------------------------------------------------------------------------- 1 | 172.31.0.0/16 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/index.html: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/placement/availability-zone: -------------------------------------------------------------------------------- 1 | us-east-1d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/placement/index.html: -------------------------------------------------------------------------------- 1 | availability-zone -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/profile: -------------------------------------------------------------------------------- 1 | default-hvm -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/public-ipv4: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/public-keys/0=one-time: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 404 - Not Found 7 | 8 | 9 |

404 - Not Found

10 | 11 | 12 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/public-keys/index.html: -------------------------------------------------------------------------------- 1 | 0=one-time -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/reservation-id: -------------------------------------------------------------------------------- 1 | r-00ec16dd9dd06932e -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/services/domain: -------------------------------------------------------------------------------- 1 | amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/services/index.html: -------------------------------------------------------------------------------- 1 | domain 2 | partition -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/meta-data/services/partition: -------------------------------------------------------------------------------- 1 | aws -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/user-data: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/index.html: -------------------------------------------------------------------------------- 1 | 1.0 2 | 2007-01-19 3 | 2007-03-01 4 | 2007-08-29 5 | 2007-10-10 6 | 2007-12-15 7 | 2008-02-01 8 | 2008-09-01 9 | 2009-04-04 10 | 2011-01-01 11 | 2011-05-01 12 | 2012-01-12 13 | 2014-02-25 14 | 2014-11-05 15 | 2015-10-20 16 | 2016-04-19 17 | 2016-06-30 18 | latest -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/dynamic/index.html: -------------------------------------------------------------------------------- 1 | instance-identity/ 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/dynamic/instance-identity/document: -------------------------------------------------------------------------------- 1 | { 2 | "privateIp" : "172.31.62.58", 3 | "devpayProductCodes" : null, 4 | "accountId" : "123456789123", 5 | "availabilityZone" : "us-east-1d", 6 | "version" : "2010-08-31", 7 | "region" : "us-east-1", 8 | "instanceId" : "i-0849c4a43b144116d", 9 | "billingProducts" : null, 10 | "instanceType" : "t2.medium", 11 | "pendingTime" : "2016-08-20T17:21:47Z", 12 | "architecture" : "x86_64", 13 | "imageId" : "ami-9a562df2", 14 | "kernelId" : null, 15 | "ramdiskId" : null 16 | } -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/dynamic/instance-identity/index.html: -------------------------------------------------------------------------------- 1 | rsa2048 2 | pkcs7 3 | signature 4 | document 5 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/dynamic/instance-identity/signature: -------------------------------------------------------------------------------- 1 | FkRDc10bWd45a+Q/BifHjRfT8bzQII62bO1In5qxTQRpmaDJ0X9uZZ0r6/kMRSmywv+1pe3HSIb+ 2 | X19r8ROSwHT+O4wzAk6/OvdmZlaSdHxNtgvTg08Kw847gLVtvjp07VUWBFRkbSro7rc3oCJ10l7x 3 | QTabHHQfYH2RjQg2gZI= -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/index.html: -------------------------------------------------------------------------------- 1 | dynamic 2 | meta-data 3 | user-data -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/ami-id: -------------------------------------------------------------------------------- 1 | ami-9a562df2 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/ami-launch-index: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/ami-manifest-path: -------------------------------------------------------------------------------- 1 | (unknown) -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/block-device-mapping/ami: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/block-device-mapping/ephemeral0: -------------------------------------------------------------------------------- 1 | sdb -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/block-device-mapping/ephemeral1: -------------------------------------------------------------------------------- 1 | sdc -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/block-device-mapping/index.html: -------------------------------------------------------------------------------- 1 | ami 2 | ephemeral0 3 | ephemeral1 4 | root -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/block-device-mapping/root: -------------------------------------------------------------------------------- 1 | /dev/sda1 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/index.html: -------------------------------------------------------------------------------- 1 | ami-id 2 | ami-launch-index 3 | ami-manifest-path 4 | block-device-mapping/ 5 | hostname 6 | instance-action 7 | instance-id 8 | instance-type 9 | local-hostname 10 | local-ipv4 11 | mac 12 | metrics/ 13 | network/ 14 | placement/ 15 | profile 16 | public-hostname 17 | public-ipv4 18 | public-keys/ 19 | reservation-id 20 | security-groups 21 | services/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/instance-action: -------------------------------------------------------------------------------- 1 | none -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/instance-id: -------------------------------------------------------------------------------- 1 | i-0849c4a43b144116d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/instance-type: -------------------------------------------------------------------------------- 1 | t2.medium -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/local-ipv4: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/mac: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/metrics/index.html: -------------------------------------------------------------------------------- 1 | vhostmd -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/metrics/vhostmd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/index.html: -------------------------------------------------------------------------------- 1 | interfaces/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/interfaces/index.html: -------------------------------------------------------------------------------- 1 | macs/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/device-number: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/index.html: -------------------------------------------------------------------------------- 1 | device-number 2 | interface-id 3 | ipv4-associations/ 4 | local-hostname 5 | local-ipv4s 6 | mac 7 | owner-id 8 | public-hostname 9 | public-ipv4s 10 | security-group-ids 11 | security-groups 12 | subnet-id 13 | subnet-ipv4-cidr-block 14 | vpc-id 15 | vpc-ipv4-cidr-block 16 | vpc-ipv4-cidr-blocks -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/interface-id: -------------------------------------------------------------------------------- 1 | eni-75395265 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/ipv4-associations/52.207.213.249: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/ipv4-associations/index.html: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/local-hostname: -------------------------------------------------------------------------------- 1 | ip-172-31-62-58.ec2.internal -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/local-ipv4s: -------------------------------------------------------------------------------- 1 | 172.31.62.58 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/mac: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/owner-id: -------------------------------------------------------------------------------- 1 | 123456789123 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/public-ipv4s: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-group-ids: -------------------------------------------------------------------------------- 1 | sg-4d37ec37 2 | sg-4237ec38 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/subnet-id: -------------------------------------------------------------------------------- 1 | subnet-69503e42 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/subnet-ipv4-cidr-block: -------------------------------------------------------------------------------- 1 | 172.31.48.0/20 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-id: -------------------------------------------------------------------------------- 1 | vpc-ff5e439a -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-ipv4-cidr-block: -------------------------------------------------------------------------------- 1 | 172.31.0.0/16 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/vpc-ipv4-cidr-blocks: -------------------------------------------------------------------------------- 1 | 172.31.0.0/16 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/index.html: -------------------------------------------------------------------------------- 1 | 12:7c:e2:00:ae:31/ -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/placement/availability-zone: -------------------------------------------------------------------------------- 1 | us-east-1d -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/placement/index.html: -------------------------------------------------------------------------------- 1 | availability-zone -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/profile: -------------------------------------------------------------------------------- 1 | default-hvm -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/public-hostname: -------------------------------------------------------------------------------- 1 | ec2-52-207-213-249.compute-1.amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/public-ipv4: -------------------------------------------------------------------------------- 1 | 52.207.213.249 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/public-keys/0=one-time: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 404 - Not Found 7 | 8 | 9 |

404 - Not Found

10 | 11 | 12 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/public-keys/index.html: -------------------------------------------------------------------------------- 1 | 0=one-time -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/reservation-id: -------------------------------------------------------------------------------- 1 | r-00ec16dd9dd06932e -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/security-groups: -------------------------------------------------------------------------------- 1 | admin_access 2 | default_egress -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/services/domain: -------------------------------------------------------------------------------- 1 | amazonaws.com -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/services/index.html: -------------------------------------------------------------------------------- 1 | domain 2 | partition -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/meta-data/services/partition: -------------------------------------------------------------------------------- 1 | aws -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/user-data: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/index.html: -------------------------------------------------------------------------------- 1 | meta-data/ 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/attached-disks: -------------------------------------------------------------------------------- 1 | {"disks":[{"deviceName":"persistent-disk-0","index":0,"mode":"READ_WRITE","type":"PERSISTENT"}]} -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/attributes/foo: -------------------------------------------------------------------------------- 1 | bar -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/attributes/google-compute-default-region: -------------------------------------------------------------------------------- 1 | us-central1 -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/attributes/google-compute-default-zone: -------------------------------------------------------------------------------- 1 | us-central1-f -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/attributes/index.html: -------------------------------------------------------------------------------- 1 | foo 2 | google-compute-default-region 3 | google-compute-default-zone 4 | sshKeys 5 | startup-script 6 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/attributes/sshKeys: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCrYjIta0ojdA+nPsAG0kvYaf6jZ04EFRJUJY+vxQN1bvpIgFyp3PhtE4OeK17Y4DvvHpdFBxeIMNVkZAGtRLN9fo7TDnOmR9RrlP8NCmWAbzucxzJ1J70LAXuaPuHSFijEbR94Wcve7Y8YsEwIY9iefjRLCio+7/dsd1X9HENLpcyqA2ap44FapkA7AFtg4RotqrO06izMgFMTiWPKgac01ted0/F+haMAyTfKOJ1u3bgL4Tj6lBxtyNwllgmXs70K1TrAc3+KVN1KaizWe+hQQrvMgw6C+wZGTu3SpFFafYEd7Xfcwmy+aVQMsjts01ZJMl/eUyReRc9ZZhW9GVwl cameron@cameronstokes.com 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/attributes/startup-script: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/authorized-keys: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCrYjIta0ojdA+nPsAG0kvYaf6jZ04EFRJUJY+vxQN1bvpIgFyp3PhtE4OeK17Y4DvvHpdFBxeIMNVkZAGtRLN9fo7TDnOmR9RrlP8NCmWAbzucxzJ1J70LAXuaPuHSFijEbR94Wcve7Y8YsEwIY9iefjRLCio+7/dsd1X9HENLpcyqA2ap44FapkA7AFtg4RotqrO06izMgFMTiWPKgac01ted0/F+haMAyTfKOJ1u3bgL4Tj6lBxtyNwllgmXs70K1TrAc3+KVN1KaizWe+hQQrvMgw6C+wZGTu3SpFFafYEd7Xfcwmy+aVQMsjts01ZJMl/eUyReRc9ZZhW9GVwl cameron@cameronstokes.com 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/authorized_keys: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCrYjIta0ojdA+nPsAG0kvYaf6jZ04EFRJUJY+vxQN1bvpIgFyp3PhtE4OeK17Y4DvvHpdFBxeIMNVkZAGtRLN9fo7TDnOmR9RrlP8NCmWAbzucxzJ1J70LAXuaPuHSFijEbR94Wcve7Y8YsEwIY9iefjRLCio+7/dsd1X9HENLpcyqA2ap44FapkA7AFtg4RotqrO06izMgFMTiWPKgac01ted0/F+haMAyTfKOJ1u3bgL4Tj6lBxtyNwllgmXs70K1TrAc3+KVN1KaizWe+hQQrvMgw6C+wZGTu3SpFFafYEd7Xfcwmy+aVQMsjts01ZJMl/eUyReRc9ZZhW9GVwl cameron@cameronstokes.com 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/fbd9892e7e463353284515b3acd88f79f2c1dc79/providers/test-fixtures/google/0.1/meta-data/description -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/domain: -------------------------------------------------------------------------------- 1 | c.project-name.internal -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/hostname: -------------------------------------------------------------------------------- 1 | main.c.project-name.internal -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/fbd9892e7e463353284515b3acd88f79f2c1dc79/providers/test-fixtures/google/0.1/meta-data/image -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/index.html: -------------------------------------------------------------------------------- 1 | attached-disks 2 | attributes/ 3 | auth-token 4 | auth_token 5 | authorized-keys 6 | authorized_keys 7 | description 8 | domain 9 | hostname 10 | image 11 | instance-id 12 | machine-type 13 | network 14 | numeric-project-id 15 | project-id 16 | service-accounts 17 | service-accounts/ 18 | tags 19 | zone 20 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/instance-id: -------------------------------------------------------------------------------- 1 | 735509445140065858 -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/machine-type: -------------------------------------------------------------------------------- 1 | projects/123456789012/machineTypes/g1-small -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/network: -------------------------------------------------------------------------------- 1 | {"networkInterface":[{"accessConfiguration":[{"externalIp":"104.155.153.127","type":"ONE_TO_ONE_NAT"}],"ip":"10.240.0.2","mac":"42:01:0a:f0:00:02","network":"projects/123456789012/networks/default"}]} -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/numeric-project-id: -------------------------------------------------------------------------------- 1 | 123456789012 -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/project-id: -------------------------------------------------------------------------------- 1 | project-name -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/service-accounts/510627083670-compute@developer.gserviceaccount.com/acquire: -------------------------------------------------------------------------------- 1 | {"accessToken":"ya29.ElCWA5g7E9IN2b_D2DqqBbWeWlm0lxB1DbmRf4nkct0J4thxUvbzsQZ8tn2jQm3wg5yvNQt_YWWByjLuwv-CJ18vv-gdVWwMsouSnGys0EQpDg","expiresAt":1479102542,"expiresIn":2974} -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/service-accounts/510627083670-compute@developer.gserviceaccount.com/index.html: -------------------------------------------------------------------------------- 1 | acquire 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/service-accounts/default/acquire: -------------------------------------------------------------------------------- 1 | {"accessToken":"ya29.ElCWA5g7E9IN2b_D2DqqBbWeWlm0lxB1DbmRf4nkct0J4thxUvbzsQZ8tn2jQm3wg5yvNQt_YWWByjLuwv-CJ18vv-gdVWwMsouSnGys0EQpDg","expiresAt":1479102542,"expiresIn":2974} -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/service-accounts/default/index.html: -------------------------------------------------------------------------------- 1 | acquire 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/service-accounts/index.html: -------------------------------------------------------------------------------- 1 | 123456789012-compute@developer.gserviceaccount.com 2 | 123456789012-compute@developer.gserviceaccount.com/ 3 | default 4 | default/ 5 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/tags: -------------------------------------------------------------------------------- 1 | ["admin"] -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/zone: -------------------------------------------------------------------------------- 1 | projects/123456789012/zones/us-central1-a -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/index.html: -------------------------------------------------------------------------------- 1 | v1/ 2 | v1beta1/ 3 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/index.html: -------------------------------------------------------------------------------- 1 | instance/ 2 | project/ 3 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/attributes/foo: -------------------------------------------------------------------------------- 1 | bar -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/attributes/index.html: -------------------------------------------------------------------------------- 1 | foo 2 | sshKeys 3 | startup-script 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/attributes/sshKeys: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCrYjIta0ojdA+nPsAG0kvYaf6jZ04EFRJUJY+vxQN1bvpIgFyp3PhtE4OeK17Y4DvvHpdFBxeIMNVkZAGtRLN9fo7TDnOmR9RrlP8NCmWAbzucxzJ1J70LAXuaPuHSFijEbR94Wcve7Y8YsEwIY9iefjRLCio+7/dsd1X9HENLpcyqA2ap44FapkA7AFtg4RotqrO06izMgFMTiWPKgac01ted0/F+haMAyTfKOJ1u3bgL4Tj6lBxtyNwllgmXs70K1TrAc3+KVN1KaizWe+hQQrvMgw6C+wZGTu3SpFFafYEd7Xfcwmy+aVQMsjts01ZJMl/eUyReRc9ZZhW9GVwl cameron@cameronstokes.com 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/attributes/startup-script: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/cpu-platform: -------------------------------------------------------------------------------- 1 | Intel Sandy Bridge -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/fbd9892e7e463353284515b3acd88f79f2c1dc79/providers/test-fixtures/google/computeMetadata/v1/instance/description -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/disks/0/device-name: -------------------------------------------------------------------------------- 1 | persistent-disk-0 -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/disks/0/index: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/disks/0/index.html: -------------------------------------------------------------------------------- 1 | device-name 2 | index 3 | mode 4 | type 5 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/disks/0/mode: -------------------------------------------------------------------------------- 1 | READ_WRITE -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/disks/0/type: -------------------------------------------------------------------------------- 1 | PERSISTENT -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/disks/index.html: -------------------------------------------------------------------------------- 1 | 0/ 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/hostname: -------------------------------------------------------------------------------- 1 | main.c.project-name.internal -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/id: -------------------------------------------------------------------------------- 1 | 735509445140065858 -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/fbd9892e7e463353284515b3acd88f79f2c1dc79/providers/test-fixtures/google/computeMetadata/v1/instance/image -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/index.html: -------------------------------------------------------------------------------- 1 | attributes/ 2 | cpu-platform 3 | description 4 | disks/ 5 | hostname 6 | id 7 | image 8 | licenses/ 9 | machine-type 10 | maintenance-event 11 | network-interfaces/ 12 | scheduling/ 13 | service-accounts/ 14 | tags 15 | virtual-clock/ 16 | zone 17 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/licenses/0/id: -------------------------------------------------------------------------------- 1 | 1000010 -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/licenses/0/index.html: -------------------------------------------------------------------------------- 1 | id 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/licenses/index.html: -------------------------------------------------------------------------------- 1 | 0/ 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/machine-type: -------------------------------------------------------------------------------- 1 | projects/123456789012/machineTypes/g1-small -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/maintenance-event: -------------------------------------------------------------------------------- 1 | NONE -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/network-interfaces/0/access-configs/0/external-ip: -------------------------------------------------------------------------------- 1 | 104.155.153.127 -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/network-interfaces/0/access-configs/0/index.html: -------------------------------------------------------------------------------- 1 | external-ip 2 | type 3 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/network-interfaces/0/access-configs/0/type: -------------------------------------------------------------------------------- 1 | ONE_TO_ONE_NAT -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/network-interfaces/0/access-configs/index.html: -------------------------------------------------------------------------------- 1 | 0/ 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/network-interfaces/0/forwarded-ips/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/fbd9892e7e463353284515b3acd88f79f2c1dc79/providers/test-fixtures/google/computeMetadata/v1/instance/network-interfaces/0/forwarded-ips/index.html -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/network-interfaces/0/index.html: -------------------------------------------------------------------------------- 1 | access-configs/ 2 | forwarded-ips/ 3 | ip 4 | ip-aliases/ 5 | mac 6 | network 7 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/network-interfaces/0/ip: -------------------------------------------------------------------------------- 1 | 10.240.0.2 -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/network-interfaces/0/ip-aliases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/fbd9892e7e463353284515b3acd88f79f2c1dc79/providers/test-fixtures/google/computeMetadata/v1/instance/network-interfaces/0/ip-aliases/index.html -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/network-interfaces/0/mac: -------------------------------------------------------------------------------- 1 | 42:01:0a:f0:00:02 -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/network-interfaces/0/network: -------------------------------------------------------------------------------- 1 | projects/123456789012/networks/default -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/network-interfaces/index.html: -------------------------------------------------------------------------------- 1 | 0/ 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/scheduling/automatic-restart: -------------------------------------------------------------------------------- 1 | TRUE -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/scheduling/index.html: -------------------------------------------------------------------------------- 1 | automatic-restart 2 | on-host-maintenance 3 | preemptible 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/scheduling/on-host-maintenance: -------------------------------------------------------------------------------- 1 | MIGRATE -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/scheduling/preemptible: -------------------------------------------------------------------------------- 1 | FALSE -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/123456789012-compute@developer.gserviceaccount.com/aliases: -------------------------------------------------------------------------------- 1 | default 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/123456789012-compute@developer.gserviceaccount.com/email: -------------------------------------------------------------------------------- 1 | 123456789012-compute@developer.gserviceaccount.com -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/123456789012-compute@developer.gserviceaccount.com/index.html: -------------------------------------------------------------------------------- 1 | aliases 2 | email 3 | scopes 4 | token 5 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/123456789012-compute@developer.gserviceaccount.com/scopes: -------------------------------------------------------------------------------- 1 | https://www.googleapis.com/auth/devstorage.read_only 2 | https://www.googleapis.com/auth/compute.readonly 3 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/123456789012-compute@developer.gserviceaccount.com/token: -------------------------------------------------------------------------------- 1 | {"access_token":"ya29.ElCWA5g7E9IN2b_D2DqqBbWeWlm0lxB1DbmRf4nkct0J4thxUvbzsQZ8tn2jQm3wg5yvNQt_YWWByjLuwv-CJ18vv-gdVWwMsouSnGys0EQpDg","expires_in":2974,"token_type":"Bearer"} -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/510627083670-compute@developer.gserviceaccount.com/aliases: -------------------------------------------------------------------------------- 1 | default 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/510627083670-compute@developer.gserviceaccount.com/email: -------------------------------------------------------------------------------- 1 | 510627083670-compute@developer.gserviceaccount.com -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/510627083670-compute@developer.gserviceaccount.com/index.html: -------------------------------------------------------------------------------- 1 | aliases 2 | email 3 | scopes 4 | token 5 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/510627083670-compute@developer.gserviceaccount.com/scopes: -------------------------------------------------------------------------------- 1 | https://www.googleapis.com/auth/devstorage.read_only 2 | https://www.googleapis.com/auth/compute.readonly 3 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/510627083670-compute@developer.gserviceaccount.com/token: -------------------------------------------------------------------------------- 1 | {"access_token":"ya29.ElCWA5g7E9IN2b_D2DqqBbWeWlm0lxB1DbmRf4nkct0J4thxUvbzsQZ8tn2jQm3wg5yvNQt_YWWByjLuwv-CJ18vv-gdVWwMsouSnGys0EQpDg","expires_in":2974,"token_type":"Bearer"} -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/default/aliases: -------------------------------------------------------------------------------- 1 | default 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/default/email: -------------------------------------------------------------------------------- 1 | 123456789012-compute@developer.gserviceaccount.com -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/default/index.html: -------------------------------------------------------------------------------- 1 | aliases 2 | email 3 | scopes 4 | token 5 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/default/scopes: -------------------------------------------------------------------------------- 1 | https://www.googleapis.com/auth/devstorage.read_only 2 | https://www.googleapis.com/auth/compute.readonly 3 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/default/token: -------------------------------------------------------------------------------- 1 | {"access_token":"ya29.ElCWA5g7E9IN2b_D2DqqBbWeWlm0lxB1DbmRf4nkct0J4thxUvbzsQZ8tn2jQm3wg5yvNQt_YWWByjLuwv-CJ18vv-gdVWwMsouSnGys0EQpDg","expires_in":2974,"token_type":"Bearer"} -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/index.html: -------------------------------------------------------------------------------- 1 | 123456789012-compute@developer.gserviceaccount.com/ 2 | default/ 3 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/tags: -------------------------------------------------------------------------------- 1 | ["admin"] -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/virtual-clock/drift-token: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/virtual-clock/index.html: -------------------------------------------------------------------------------- 1 | drift-token 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/zone: -------------------------------------------------------------------------------- 1 | projects/123456789012/zones/us-central1-a -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/project/attributes/google-compute-default-region: -------------------------------------------------------------------------------- 1 | us-central1 -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/project/attributes/google-compute-default-zone: -------------------------------------------------------------------------------- 1 | us-central1-f -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/project/attributes/index.html: -------------------------------------------------------------------------------- 1 | google-compute-default-region 2 | google-compute-default-zone 3 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/project/index.html: -------------------------------------------------------------------------------- 1 | attributes/ 2 | numeric-project-id 3 | project-id 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/project/numeric-project-id: -------------------------------------------------------------------------------- 1 | 123456789012 -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/project/project-id: -------------------------------------------------------------------------------- 1 | project-name 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/index.html: -------------------------------------------------------------------------------- 1 | instance/ 2 | project/ 3 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/attributes/foo: -------------------------------------------------------------------------------- 1 | bar -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/attributes/index.html: -------------------------------------------------------------------------------- 1 | foo 2 | sshKeys 3 | startup-script 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/attributes/sshKeys: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCrYjIta0ojdA+nPsAG0kvYaf6jZ04EFRJUJY+vxQN1bvpIgFyp3PhtE4OeK17Y4DvvHpdFBxeIMNVkZAGtRLN9fo7TDnOmR9RrlP8NCmWAbzucxzJ1J70LAXuaPuHSFijEbR94Wcve7Y8YsEwIY9iefjRLCio+7/dsd1X9HENLpcyqA2ap44FapkA7AFtg4RotqrO06izMgFMTiWPKgac01ted0/F+haMAyTfKOJ1u3bgL4Tj6lBxtyNwllgmXs70K1TrAc3+KVN1KaizWe+hQQrvMgw6C+wZGTu3SpFFafYEd7Xfcwmy+aVQMsjts01ZJMl/eUyReRc9ZZhW9GVwl cameron@cameronstokes.com 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/attributes/startup-script: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "This is userdata." 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/fbd9892e7e463353284515b3acd88f79f2c1dc79/providers/test-fixtures/google/computeMetadata/v1beta1/instance/description -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/disks/0/device-name: -------------------------------------------------------------------------------- 1 | persistent-disk-0 -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/disks/0/index: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/disks/0/index.html: -------------------------------------------------------------------------------- 1 | device-name 2 | index 3 | mode 4 | type 5 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/disks/0/mode: -------------------------------------------------------------------------------- 1 | READ_WRITE -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/disks/0/type: -------------------------------------------------------------------------------- 1 | PERSISTENT -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/disks/index.html: -------------------------------------------------------------------------------- 1 | 0/ 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/hostname: -------------------------------------------------------------------------------- 1 | main.c.project-name.internal -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/id: -------------------------------------------------------------------------------- 1 | 735509445140065858 -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/fbd9892e7e463353284515b3acd88f79f2c1dc79/providers/test-fixtures/google/computeMetadata/v1beta1/instance/image -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/index.html: -------------------------------------------------------------------------------- 1 | attributes/ 2 | description 3 | disks/ 4 | hostname 5 | id 6 | image 7 | licenses/ 8 | machine-type 9 | maintenance-event 10 | network-interfaces/ 11 | scheduling/ 12 | service-accounts/ 13 | tags 14 | zone 15 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/licenses/0/id: -------------------------------------------------------------------------------- 1 | 1000010 -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/licenses/0/index.html: -------------------------------------------------------------------------------- 1 | id 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/licenses/index.html: -------------------------------------------------------------------------------- 1 | 0/ 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/machine-type: -------------------------------------------------------------------------------- 1 | projects/123456789012/machineTypes/g1-small -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/maintenance-event: -------------------------------------------------------------------------------- 1 | NONE -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/network-interfaces/0/access-configs/0/external-ip: -------------------------------------------------------------------------------- 1 | 104.155.153.127 -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/network-interfaces/0/access-configs/0/index.html: -------------------------------------------------------------------------------- 1 | external-ip 2 | type 3 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/network-interfaces/0/access-configs/0/type: -------------------------------------------------------------------------------- 1 | ONE_TO_ONE_NAT -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/network-interfaces/0/access-configs/index.html: -------------------------------------------------------------------------------- 1 | 0/ 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/network-interfaces/0/forwarded-ips/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/fbd9892e7e463353284515b3acd88f79f2c1dc79/providers/test-fixtures/google/computeMetadata/v1beta1/instance/network-interfaces/0/forwarded-ips/index.html -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/network-interfaces/0/index.html: -------------------------------------------------------------------------------- 1 | access-configs/ 2 | forwarded-ips/ 3 | ip 4 | ip-aliases/ 5 | mac 6 | network 7 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/network-interfaces/0/ip: -------------------------------------------------------------------------------- 1 | 10.240.0.2 -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/network-interfaces/0/ip-aliases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/fbd9892e7e463353284515b3acd88f79f2c1dc79/providers/test-fixtures/google/computeMetadata/v1beta1/instance/network-interfaces/0/ip-aliases/index.html -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/network-interfaces/0/mac: -------------------------------------------------------------------------------- 1 | 42:01:0a:f0:00:02 -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/network-interfaces/0/network: -------------------------------------------------------------------------------- 1 | projects/123456789012/networks/default -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/network-interfaces/index.html: -------------------------------------------------------------------------------- 1 | 0/ 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/scheduling/automatic-restart: -------------------------------------------------------------------------------- 1 | TRUE -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/scheduling/index.html: -------------------------------------------------------------------------------- 1 | automatic-restart 2 | on-host-maintenance 3 | preemptible 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/scheduling/on-host-maintenance: -------------------------------------------------------------------------------- 1 | MIGRATE -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/scheduling/preemptible: -------------------------------------------------------------------------------- 1 | FALSE -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/service-accounts/510627083670-compute@developer.gserviceaccount.com/aliases: -------------------------------------------------------------------------------- 1 | default 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/service-accounts/510627083670-compute@developer.gserviceaccount.com/email: -------------------------------------------------------------------------------- 1 | 123456789012-compute@developer.gserviceaccount.com -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/service-accounts/510627083670-compute@developer.gserviceaccount.com/index.html: -------------------------------------------------------------------------------- 1 | aliases 2 | email 3 | scopes 4 | token 5 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/service-accounts/510627083670-compute@developer.gserviceaccount.com/scopes: -------------------------------------------------------------------------------- 1 | https://www.googleapis.com/auth/devstorage.read_only 2 | https://www.googleapis.com/auth/compute.readonly 3 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/service-accounts/510627083670-compute@developer.gserviceaccount.com/token: -------------------------------------------------------------------------------- 1 | {"access_token":"ya29.ElCWA5g7E9IN2b_D2DqqBbWeWlm0lxB1DbmRf4nkct0J4thxUvbzsQZ8tn2jQm3wg5yvNQt_YWWByjLuwv-CJ18vv-gdVWwMsouSnGys0EQpDg","expires_in":2974,"token_type":"Bearer"} -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/service-accounts/default/aliases: -------------------------------------------------------------------------------- 1 | default 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/service-accounts/default/email: -------------------------------------------------------------------------------- 1 | 123456789012-compute@developer.gserviceaccount.com -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/service-accounts/default/index.html: -------------------------------------------------------------------------------- 1 | aliases 2 | email 3 | scopes 4 | token 5 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/service-accounts/default/scopes: -------------------------------------------------------------------------------- 1 | https://www.googleapis.com/auth/devstorage.read_only 2 | https://www.googleapis.com/auth/compute.readonly 3 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/service-accounts/default/token: -------------------------------------------------------------------------------- 1 | {"access_token":"ya29.ElCWA5g7E9IN2b_D2DqqBbWeWlm0lxB1DbmRf4nkct0J4thxUvbzsQZ8tn2jQm3wg5yvNQt_YWWByjLuwv-CJ18vv-gdVWwMsouSnGys0EQpDg","expires_in":2974,"token_type":"Bearer"} -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/service-accounts/index.html: -------------------------------------------------------------------------------- 1 | 123456789012-compute@developer.gserviceaccount.com/ 2 | default/ 3 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/tags: -------------------------------------------------------------------------------- 1 | ["admin"] -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/zone: -------------------------------------------------------------------------------- 1 | projects/123456789012/zones/us-central1-a -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/project/attributes/google-compute-default-region: -------------------------------------------------------------------------------- 1 | us-central1 -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/project/attributes/google-compute-default-zone: -------------------------------------------------------------------------------- 1 | us-central1-f -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/project/attributes/index.html: -------------------------------------------------------------------------------- 1 | google-compute-default-region 2 | google-compute-default-zone 3 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/project/index.html: -------------------------------------------------------------------------------- 1 | attributes/ 2 | numeric-project-id 3 | project-id 4 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/project/numeric-project-id: -------------------------------------------------------------------------------- 1 | 123456789012 -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/project/project-id: -------------------------------------------------------------------------------- 1 | project-name -------------------------------------------------------------------------------- /providers/test-fixtures/google/index.html: -------------------------------------------------------------------------------- 1 | 0.1/ 2 | computeMetadata/ 3 | -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -rf bin/* 4 | mkdir -p bin 5 | 6 | gox \ 7 | -output "bin/aero" \ 8 | -osarch "$(go env GOOS)/$(go env GOARCH)" 9 | -------------------------------------------------------------------------------- /structs/metadata.go: -------------------------------------------------------------------------------- 1 | package structs 2 | 3 | type MetadataItem struct { 4 | Url string 5 | ParseFunc MetadataItemParseFunc 6 | } 7 | 8 | type MetadataItemParseFunc func(interface{}) (string, error) 9 | --------------------------------------------------------------------------------