├── .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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Aero Changelog 2 | 3 | ## v0.1.0 (August 7, 2016) 4 | 5 | - Initial release 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/README.md -------------------------------------------------------------------------------- /commands/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/commands/commands.go -------------------------------------------------------------------------------- /commands/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/commands/list.go -------------------------------------------------------------------------------- /commands/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/commands/read.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/main.go -------------------------------------------------------------------------------- /providers/amazon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/amazon.go -------------------------------------------------------------------------------- /providers/amazon_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/amazon_test.go -------------------------------------------------------------------------------- /providers/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/google.go -------------------------------------------------------------------------------- /providers/google_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/google_test.go -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/1.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/1.0/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/1.0/meta-data/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/1.0/meta-data/public-keys/0=one-time -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2007-01-19/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2007-01-19/meta-data/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2007-01-19/meta-data/public-keys/0=one-time -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2007-03-01/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2007-03-01/meta-data/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2007-03-01/meta-data/public-keys/0=one-time -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2007-08-29/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2007-08-29/meta-data/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2007-08-29/meta-data/public-keys/0=one-time -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2007-10-10/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2007-10-10/meta-data/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2007-10-10/meta-data/public-keys/0=one-time -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2007-12-15/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2007-12-15/meta-data/block-device-mapping/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2007-12-15/meta-data/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2007-12-15/meta-data/public-keys/0=one-time -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2008-02-01/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2008-02-01/meta-data/block-device-mapping/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2008-02-01/meta-data/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2008-02-01/meta-data/public-keys/0=one-time -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2008-09-01/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2008-09-01/meta-data/block-device-mapping/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2008-09-01/meta-data/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2008-09-01/meta-data/public-keys/0=one-time -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2009-04-04/dynamic/instance-identity/document -------------------------------------------------------------------------------- /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/pkcs7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2009-04-04/dynamic/instance-identity/pkcs7 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/dynamic/instance-identity/rsa2048: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2009-04-04/dynamic/instance-identity/rsa2048 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/dynamic/instance-identity/signature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2009-04-04/dynamic/instance-identity/signature -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2009-04-04/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2009-04-04/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2009-04-04/meta-data/block-device-mapping/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2009-04-04/meta-data/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2009-04-04/meta-data/public-keys/0=one-time -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2011-01-01/dynamic/instance-identity/document -------------------------------------------------------------------------------- /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/pkcs7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2011-01-01/dynamic/instance-identity/pkcs7 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/dynamic/instance-identity/rsa2048: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2011-01-01/dynamic/instance-identity/rsa2048 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/dynamic/instance-identity/signature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2011-01-01/dynamic/instance-identity/signature -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-01-01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2011-01-01/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2011-01-01/meta-data/block-device-mapping/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2011-01-01/meta-data/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2011-01-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-group-ids -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2011-01-01/meta-data/public-keys/0=one-time -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2011-05-01/dynamic/instance-identity/document -------------------------------------------------------------------------------- /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/pkcs7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2011-05-01/dynamic/instance-identity/pkcs7 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/dynamic/instance-identity/rsa2048: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2011-05-01/dynamic/instance-identity/rsa2048 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/dynamic/instance-identity/signature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2011-05-01/dynamic/instance-identity/signature -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2011-05-01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2011-05-01/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2011-05-01/meta-data/block-device-mapping/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2011-05-01/meta-data/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2011-05-01/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-group-ids -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2011-05-01/meta-data/public-keys/0=one-time -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2012-01-12/dynamic/instance-identity/document -------------------------------------------------------------------------------- /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/pkcs7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2012-01-12/dynamic/instance-identity/pkcs7 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/dynamic/instance-identity/rsa2048: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2012-01-12/dynamic/instance-identity/rsa2048 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/dynamic/instance-identity/signature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2012-01-12/dynamic/instance-identity/signature -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2012-01-12/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2012-01-12/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2012-01-12/meta-data/block-device-mapping/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2012-01-12/meta-data/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2012-01-12/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-group-ids -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2012-01-12/meta-data/public-keys/0=one-time -------------------------------------------------------------------------------- /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/document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2014-02-25/dynamic/instance-identity/document -------------------------------------------------------------------------------- /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/pkcs7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2014-02-25/dynamic/instance-identity/pkcs7 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/dynamic/instance-identity/rsa2048: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2014-02-25/dynamic/instance-identity/rsa2048 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/dynamic/instance-identity/signature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2014-02-25/dynamic/instance-identity/signature -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-02-25/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2014-02-25/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2014-02-25/meta-data/block-device-mapping/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2014-02-25/meta-data/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2014-02-25/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-group-ids -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2014-02-25/meta-data/public-keys/0=one-time -------------------------------------------------------------------------------- /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/document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2014-11-05/dynamic/instance-identity/document -------------------------------------------------------------------------------- /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/pkcs7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2014-11-05/dynamic/instance-identity/pkcs7 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/dynamic/instance-identity/rsa2048: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2014-11-05/dynamic/instance-identity/rsa2048 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/dynamic/instance-identity/signature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2014-11-05/dynamic/instance-identity/signature -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2014-11-05/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2014-11-05/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2014-11-05/meta-data/block-device-mapping/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2014-11-05/meta-data/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2014-11-05/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-group-ids -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2014-11-05/meta-data/public-keys/0=one-time -------------------------------------------------------------------------------- /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/document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2015-10-20/dynamic/instance-identity/document -------------------------------------------------------------------------------- /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/pkcs7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2015-10-20/dynamic/instance-identity/pkcs7 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/dynamic/instance-identity/rsa2048: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2015-10-20/dynamic/instance-identity/rsa2048 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/dynamic/instance-identity/signature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2015-10-20/dynamic/instance-identity/signature -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2015-10-20/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2015-10-20/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2015-10-20/meta-data/block-device-mapping/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2015-10-20/meta-data/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2015-10-20/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-group-ids -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2015-10-20/meta-data/public-keys/0=one-time -------------------------------------------------------------------------------- /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/document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2016-04-19/dynamic/instance-identity/document -------------------------------------------------------------------------------- /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/pkcs7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2016-04-19/dynamic/instance-identity/pkcs7 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/dynamic/instance-identity/rsa2048: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2016-04-19/dynamic/instance-identity/rsa2048 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/dynamic/instance-identity/signature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2016-04-19/dynamic/instance-identity/signature -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-04-19/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2016-04-19/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2016-04-19/meta-data/block-device-mapping/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2016-04-19/meta-data/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2016-04-19/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-group-ids -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2016-04-19/meta-data/public-keys/0=one-time -------------------------------------------------------------------------------- /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/document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2016-06-30/dynamic/instance-identity/document -------------------------------------------------------------------------------- /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/pkcs7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2016-06-30/dynamic/instance-identity/pkcs7 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/dynamic/instance-identity/rsa2048: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2016-06-30/dynamic/instance-identity/rsa2048 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/dynamic/instance-identity/signature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2016-06-30/dynamic/instance-identity/signature -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/2016-06-30/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2016-06-30/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2016-06-30/meta-data/block-device-mapping/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2016-06-30/meta-data/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2016-06-30/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-group-ids -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/2016-06-30/meta-data/public-keys/0=one-time -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/index.html -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/dynamic/index.html: -------------------------------------------------------------------------------- 1 | instance-identity/ 2 | -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/dynamic/instance-identity/document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/latest/dynamic/instance-identity/document -------------------------------------------------------------------------------- /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/pkcs7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/latest/dynamic/instance-identity/pkcs7 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/dynamic/instance-identity/rsa2048: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/latest/dynamic/instance-identity/rsa2048 -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/dynamic/instance-identity/signature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/latest/dynamic/instance-identity/signature -------------------------------------------------------------------------------- /providers/test-fixtures/amazon/latest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/latest/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/latest/meta-data/block-device-mapping/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/latest/meta-data/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/latest/meta-data/network/interfaces/macs/12:7c:e2:00:ae:31/security-group-ids -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/amazon/latest/meta-data/public-keys/0=one-time -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/0.1/meta-data/attached-disks -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/0.1/meta-data/attributes/index.html -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/attributes/sshKeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/0.1/meta-data/attributes/sshKeys -------------------------------------------------------------------------------- /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/auth-token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/0.1/meta-data/auth-token -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/auth_token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/0.1/meta-data/auth_token -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/authorized-keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/0.1/meta-data/authorized-keys -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/authorized_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/0.1/meta-data/authorized_keys -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/description: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/0.1/meta-data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/0.1/meta-data/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/0.1/meta-data/network -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/0.1/meta-data/service-accounts/510627083670-compute@developer.gserviceaccount.com/acquire -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/0.1/meta-data/service-accounts/default/acquire -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/0.1/meta-data/service-accounts/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/computeMetadata/v1/instance/attributes/sshKeys -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/computeMetadata/v1/instance/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/network-interfaces/0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/computeMetadata/v1/instance/network-interfaces/0/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/computeMetadata/v1/instance/scheduling/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/123456789012-compute@developer.gserviceaccount.com/scopes -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/123456789012-compute@developer.gserviceaccount.com/token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/123456789012-compute@developer.gserviceaccount.com/token -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/510627083670-compute@developer.gserviceaccount.com/scopes -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/510627083670-compute@developer.gserviceaccount.com/token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/510627083670-compute@developer.gserviceaccount.com/token -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/default/scopes -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/default/token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/computeMetadata/v1/instance/service-accounts/default/token -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/computeMetadata/v1/project/attributes/index.html -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1/project/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/computeMetadata/v1/project/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/computeMetadata/v1beta1/instance/attributes/sshKeys -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/computeMetadata/v1beta1/instance/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/network-interfaces/0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/computeMetadata/v1beta1/instance/network-interfaces/0/index.html -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/computeMetadata/v1beta1/instance/scheduling/index.html -------------------------------------------------------------------------------- /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/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/computeMetadata/v1beta1/instance/service-accounts/default/scopes -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/instance/service-accounts/default/token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/computeMetadata/v1beta1/instance/service-accounts/default/token -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/computeMetadata/v1beta1/project/attributes/index.html -------------------------------------------------------------------------------- /providers/test-fixtures/google/computeMetadata/v1beta1/project/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/test-fixtures/google/computeMetadata/v1beta1/project/index.html -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /providers/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/providers/utils.go -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /structs/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/structs/metadata.go -------------------------------------------------------------------------------- /structs/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clstokes/aero/HEAD/structs/provider.go --------------------------------------------------------------------------------