-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(deadline): add SEPConfigurationSetup construct
- Loading branch information
Showing
19 changed files
with
1,036 additions
and
345 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
examples/deadline/All-In-AWS-Infrastructure-SEP/python/package/config.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
from typing import ( | ||
List, | ||
Mapping, | ||
Optional | ||
) | ||
|
||
class AppConfig: | ||
""" | ||
Configuration values for the sample app. | ||
TODO: Fill these in with your own values. | ||
""" | ||
def __init__(self): | ||
# A map of regions to Deadline Client Linux AMIs.As an example, the Linux Deadline 10.1.12.1 AMI ID | ||
# from us-west-2 is filled in. It can be used as-is, added to, or replaced. Ideally the version here | ||
# should match the one used for staging the render queue and usage based licensing recipes. | ||
self.deadline_client_linux_ami_map: Mapping[str, str] = {'us-east-1': 'ami-0f5650d87270255ae'} | ||
|
||
# (Optional) The name of the EC2 keypair to associate with the instances. | ||
self.key_pair_name: Optional[str] = None | ||
|
||
|
||
config: AppConfig = AppConfig() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.