Skip to content

Commit

Permalink
Move CloudProvider entity to OSS (facebookresearch#419)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: facebookresearch#419

We need to use the CloudProvider entity in the customized container project; but it's currently intern, move it to OSS in this diff.

Reviewed By: zhuang-93

Differential Revision: D38848828

fbshipit-source-id: 9d5ba3a1ca353c88d6b349c7bb9676e27014bd1e
  • Loading branch information
ziqih authored and facebook-github-bot committed Aug 19, 2022
1 parent 4668f71 commit 3e84a68
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions fbpcp/entity/cloud_provider.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/usr/bin/env python3
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.

# pyre-strict
from enum import Enum


class CloudProvider(Enum):
AWS = "AWS"
GCP = "GCP"
AZURE = "AZURE"

0 comments on commit 3e84a68

Please sign in to comment.