Skip to content

Latest commit

 

History

History
63 lines (50 loc) · 3.89 KB

manifest.md

File metadata and controls

63 lines (50 loc) · 3.89 KB
title layout category weight
Manifest File
docs-enclaver-single
reference
15

Enclaver Manifest File

Enclaver relies on a manifest file to understand how to transform your container into an enclave and run it securely. Egress and Ingress rules are encoded into the image to ensure portability with the enclave image, which enhances security.

The file is YAML formatted and passed to Enclaver via the -f flag. By default, Enclaver looks for enclaver.yaml in the current directory.

$ enclaver build -f enclaver.yaml

Example Manifest

version: v1
name: "example-enclave"
target: "testapp:enclave-latest"
sources:
  app: "testapp:latest"
defaults:
  memory_mb: 4096
egress:
  allow:
    - google.com
    - www.google.com
ingress:
  - listen_port: 8080

An enclave is not required to have both ingress or egress, but without one of these it is not very useful. All egress locations, including internal VPC addresses or hostnames for AWS services must be declared.

The host hostname can be used to refer to localhost on the parent EC2 machine, if allowed under the egress section.

Enclaver uses an HTTP/HTTPS proxy for enforcement and the usual http_proxy, https_proxy and no_proxy environment variables are set correctly.

In the future, a more transparent TCP proxy mode will be added to ease integration with applications. See Issue #69 for more details.

Manifest Specification

  • version (string): Required. Used to differentiate different specification versions. Only v1 exists right now.
  • name (string): Required. Informational name used to organize different manifests.
  • target (string): Required. Name and tag of the Docker container outputted from the build process. Any valid Docker strings are acceptible, including custom registries and hostnames.
  • sources (object): Required. Information about input container(s) to the build process
    • app: (string): Required. Name and tag of the Docker container that contains your application code. Any valid Docker strings are acceptible, including custom registries and hostnames.
  • defaults (object): Default resource requirements for running the application. Requirements may be overridden at runtime.
    • cpu_count (integer): Number of CPUs dedicated to the enclave. Defaults to 2 if not specified here.
    • memory_mb (integer): Megabytes of memory dedicated to the enclave. Defaults to 4096 if not specified here.
  • kms_proxy (object): Configuration for the KMS proxy listening inside of the enclave, which dynamically adds attestation information to requests that benefit from it.
    • listen_port (integer): Required. Valid port number for the proxy to listen for traffic on. The environment variable AWS_KMS_ENDPOINT is available for your application to connect to the proxy.
  • egress (object): Information about egress traffic leaving the enclave. The policy is deny by default and supports * single wildcards for matching a specific position of a subdomain (web.*.example.com) or ** greedy wildcards that match all (**.example.com).
    • allow: (list of strings): List of allowed hostnames, IP addresses, or CIDR ranges that traffic may flow out of the enclave to. The enforcement is strict, so any redirects must list all of the encountered addresses. host can be used as a reference to localhost on the parent machine.
    • deny: (list of strings): List of denied hostnames, IP addresses, or CIDR ranges that traffic may not flow out of the enclave to. Deny rules take precedence over allow rules.
  • ingress (list of objects): Information about ingress traffic entering the enclave. Applications can listen on multiple ports.
    • listen_port (integer): Required. Valid port number for the proxy to listen for traffic on.