Skip to content

Commit

Permalink
Remove aws implemnttion from typedict
Browse files Browse the repository at this point in the history
  • Loading branch information
abuabraham-ttd committed Dec 10, 2024
1 parent 4c694e7 commit 62cc490
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 7 additions & 1 deletion scripts/aws/ec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@
import yaml

sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from confidential_compute import ConfidentialCompute, AWSConfidentialComputeConfig, SecretNotFoundException
from confidential_compute import ConfidentialCompute, ConfidentialComputeConfig, SecretNotFoundException


class AWSConfidentialComputeConfig(ConfidentialComputeConfig):
enclave_memory_mb: int
enclave_cpu_count: int


class EC2(ConfidentialCompute):

Expand Down
4 changes: 0 additions & 4 deletions scripts/confidential_compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ class ConfidentialComputeConfig(TypedDict):
core_base_url: str
optout_base_url: str
environment: str

class AWSConfidentialComputeConfig(ConfidentialComputeConfig):
enclave_memory_mb: int
enclave_cpu_count: int

class ConfidentialCompute(ABC):

Expand Down

0 comments on commit 62cc490

Please sign in to comment.