-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup-tdx-config
73 lines (61 loc) · 3.11 KB
/
setup-tdx-config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# This file is part of Canonical's TDX repository which includes tools
# to setup and configure a confidential computing environment
# based on Intel TDX technology.
# See the LICENSE file in the repository for the license text.
# Copyright 2024 Canonical Ltd.
# SPDX-License-Identifier: GPL-3.0-only
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 3,
# as published by the Free Software Foundation.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranties
# of MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU General Public License for more details.
################################################################
# GENERAL #
################################################################
################################################################
# The TDX PPAs to use
# By default, there is only the release PPA : tdx-release
# but for development purpose, users can change this list to
# contain an arbitrary number of PPAs
################################################################
TDX_PPA="tdx-release"
################################################################
# The TDX PPA for attestation
################################################################
TDX_PPA_ATTESTATION=tdx-attestation-release
################################################################
# Enable the installation of DCAP packages from Canonical's
# repository. This flag is considered during host OS and guest
# OS setup.
# Set to 1 to enable
# By default, the attestation components are not installed
################################################################
TDX_SETUP_ATTESTATION=0
################################################################
# HOST #
################################################################
################################################################
# GUEST #
################################################################
################################################################
# Enable the intel optimized kernel for the guest
# Set to 1 to enable
# By default, the generic kernel is used
################################################################
TDX_SETUP_INTEL_KERNEL=0
################################################################
# Image configuration
# The base image is an Ubuntu 24.04 cloud image
# You can use a different image setting these two environment
# variables before running the setup script
################################################################
OFFICIAL_UBUNTU_IMAGE="https://cloud-images.ubuntu.com/releases/noble/release/"
CLOUD_IMG="ubuntu-24.04-server-cloudimg-amd64.img"
################################################################
# Configure the guest credentials
################################################################
GUEST_USER="tdx"
GUEST_PASSWORD="123456"
GUEST_HOSTNAME="tdx-guest"