-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https://github.com/mitodl/ol-infrastructure/issues/2680
feat: Initial skeleton for MIT OL Open Metadata application Pulumi code.
- Loading branch information
Showing
4 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
src/ol_infrastructure/applications/open_metadata/Pulumi.applications.open_metadata.CI.yaml
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,3 @@ | ||
--- | ||
secretsprovider: awskms://alias/infrastructure-secrets-ci | ||
encryptedkey: AQICAHjnbqe9AmEW1Js10nySybyuAG7Fb5E9EHUgkmqFDv7PxQHNccb0Qf344tYSpNK++I71AAAAfjB8BgkqhkiG9w0BBwagbzBtAgEAMGgGCSqGSIb3DQEHATAeBglghkgBZQMEAS4wEQQMqCuKG4WhkI4eNWUvAgEQgDtsdnkazeO8dfabHEekMYh4JgcxnwOf4B9F7zUoAkOMmqIQ8xQHmru06mRLnpK7v8QqW2zNACm6C2gUuA== |
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,6 @@ | ||
--- | ||
name: ol-infrastructure-open_metadata-application | ||
runtime: python | ||
description: MIT OL Open Metadata Service | ||
backend: | ||
url: s3://mitol-pulumi-state/ |
Empty file.
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,6 @@ | ||
from pulumi import Config | ||
|
||
from ol_infrastructure.lib.pulumi_helper import parse_stack | ||
|
||
open_metadata_config = Config("open_metadata") | ||
stack_info = parse_stack() |