├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── aci-samples ├── BuildRandomACI.ps1 └── README.md ├── aks-samples ├── BuildRandomAKS.ps1 └── README.md ├── containersamples ├── README.md ├── attested_tls │ ├── Dockerfile │ ├── README.md │ └── helm │ │ ├── client │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ └── templates │ │ │ └── attested_tls_client.yaml │ │ ├── server │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ └── templates │ │ │ └── attested_tls_server.yaml │ │ └── utils │ │ └── get_server_ip.sh └── helloworld │ ├── Dockerfile │ ├── README.md │ └── helm │ ├── .helmignore │ ├── Chart.yaml │ └── templates │ ├── helloworld.yaml │ └── helloworld_with_node_selector.yaml ├── hardware-backed-enclave.png ├── snippet-createDES.ps1 ├── snippet-remoteCallAttest.ps1 └── vm-samples ├── AttestationClientScreenshot.png ├── BuildRandomSQLCVM.ps1 ├── BuilldRandomCVM.ps1 ├── README.md ├── WindowsAttest.ps1 ├── cvm-cmk-params.json └── cvm-cmk.json /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/README.md -------------------------------------------------------------------------------- /aci-samples/BuildRandomACI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/aci-samples/BuildRandomACI.ps1 -------------------------------------------------------------------------------- /aci-samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/aci-samples/README.md -------------------------------------------------------------------------------- /aks-samples/BuildRandomAKS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/aks-samples/BuildRandomAKS.ps1 -------------------------------------------------------------------------------- /aks-samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/aks-samples/README.md -------------------------------------------------------------------------------- /containersamples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/containersamples/README.md -------------------------------------------------------------------------------- /containersamples/attested_tls/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/containersamples/attested_tls/Dockerfile -------------------------------------------------------------------------------- /containersamples/attested_tls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/containersamples/attested_tls/README.md -------------------------------------------------------------------------------- /containersamples/attested_tls/helm/client/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/containersamples/attested_tls/helm/client/.helmignore -------------------------------------------------------------------------------- /containersamples/attested_tls/helm/client/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/containersamples/attested_tls/helm/client/Chart.yaml -------------------------------------------------------------------------------- /containersamples/attested_tls/helm/client/templates/attested_tls_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/containersamples/attested_tls/helm/client/templates/attested_tls_client.yaml -------------------------------------------------------------------------------- /containersamples/attested_tls/helm/server/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/containersamples/attested_tls/helm/server/.helmignore -------------------------------------------------------------------------------- /containersamples/attested_tls/helm/server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/containersamples/attested_tls/helm/server/Chart.yaml -------------------------------------------------------------------------------- /containersamples/attested_tls/helm/server/templates/attested_tls_server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/containersamples/attested_tls/helm/server/templates/attested_tls_server.yaml -------------------------------------------------------------------------------- /containersamples/attested_tls/helm/utils/get_server_ip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/containersamples/attested_tls/helm/utils/get_server_ip.sh -------------------------------------------------------------------------------- /containersamples/helloworld/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/containersamples/helloworld/Dockerfile -------------------------------------------------------------------------------- /containersamples/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/containersamples/helloworld/README.md -------------------------------------------------------------------------------- /containersamples/helloworld/helm/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/containersamples/helloworld/helm/.helmignore -------------------------------------------------------------------------------- /containersamples/helloworld/helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/containersamples/helloworld/helm/Chart.yaml -------------------------------------------------------------------------------- /containersamples/helloworld/helm/templates/helloworld.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/containersamples/helloworld/helm/templates/helloworld.yaml -------------------------------------------------------------------------------- /containersamples/helloworld/helm/templates/helloworld_with_node_selector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/containersamples/helloworld/helm/templates/helloworld_with_node_selector.yaml -------------------------------------------------------------------------------- /hardware-backed-enclave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/hardware-backed-enclave.png -------------------------------------------------------------------------------- /snippet-createDES.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/snippet-createDES.ps1 -------------------------------------------------------------------------------- /snippet-remoteCallAttest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/snippet-remoteCallAttest.ps1 -------------------------------------------------------------------------------- /vm-samples/AttestationClientScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/vm-samples/AttestationClientScreenshot.png -------------------------------------------------------------------------------- /vm-samples/BuildRandomSQLCVM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/vm-samples/BuildRandomSQLCVM.ps1 -------------------------------------------------------------------------------- /vm-samples/BuilldRandomCVM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/vm-samples/BuilldRandomCVM.ps1 -------------------------------------------------------------------------------- /vm-samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/vm-samples/README.md -------------------------------------------------------------------------------- /vm-samples/WindowsAttest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/vm-samples/WindowsAttest.ps1 -------------------------------------------------------------------------------- /vm-samples/cvm-cmk-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/vm-samples/cvm-cmk-params.json -------------------------------------------------------------------------------- /vm-samples/cvm-cmk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/confidential-computing/HEAD/vm-samples/cvm-cmk.json --------------------------------------------------------------------------------