go.mondoo.com/cnquery@v0.0.0-20231005093811-59568235f6ea/providers/os/id/gcp/testdata/aws_instance.toml (about)

     1  [commands."uname -s"]
     2  stdout = "Linux"
     3  
     4  [commands."uname -m"]
     5  stdout = "x86_64"
     6  
     7  [commands."uname -r"]
     8  stdout = "4.9.125-linuxkit"
     9  
    10  [files."/etc/redhat-release"]
    11  content = "Red Hat Enterprise Linux Server release 7.2 (Maipo)"
    12  
    13  [files."/sys/class/dmi/id/product_version"]
    14    path = "/sys/class/dmi/id/product_version"
    15    enoent = false
    16    content = "4.2.amazon"
    17    [files."/sys/class/dmi/id/product_version".stat]
    18      mode = 292
    19      time = 2021-11-15T13:16:57Z
    20      isdir = false
    21      uid = 0
    22      gid = 0
    23      size = 0
    24  
    25  [commands."curl http://169.254.169.254/latest/dynamic/instance-identity/document"]
    26  stdout = """
    27  {
    28    "devpayProductCodes" : null,
    29    "marketplaceProductCodes" : [ "1abc2defghijklm3nopqrs4tu" ], 
    30    "availabilityZone" : "us-west-2b",
    31    "privateIp" : "10.158.112.84",
    32    "version" : "2017-09-30",
    33    "instanceId" : "i-1234567890abcdef0",
    34    "billingProducts" : null,
    35    "instanceType" : "t2.micro",
    36    "accountId" : "123456789012",
    37    "imageId" : "ami-5fb8c835",
    38    "pendingTime" : "2016-11-19T16:32:11Z",
    39    "architecture" : "x86_64",
    40    "kernelId" : null,
    41    "ramdiskId" : null,
    42    "region" : "us-west-2"
    43  }
    44  """
    45