-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename Cloud Provider Access to Cloud Provider Integration
- Loading branch information
Showing
23 changed files
with
803 additions
and
673 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 was deleted.
Oops, something went wrong.
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,20 @@ | ||
package v1 | ||
|
||
// CloudProviderIntegration define an integration to a cloud provider | ||
type CloudProviderIntegration struct { | ||
// ProviderName is the name of the cloud provider. Currently only AWS is supported. | ||
ProviderName string `json:"providerName"` | ||
// IamAssumedRoleArn is the ARN of the IAM role that is assumed by the Atlas cluster. | ||
// +optional | ||
IamAssumedRoleArn string `json:"iamAssumedRoleArn"` | ||
} | ||
|
||
// CloudProviderAccessRole define an integration to a cloud provider | ||
// Deprecated: This type is deprecated in favor of CloudProviderIntegration | ||
type CloudProviderAccessRole struct { | ||
// ProviderName is the name of the cloud provider. Currently only AWS is supported. | ||
ProviderName string `json:"providerName"` | ||
// IamAssumedRoleArn is the ARN of the IAM role that is assumed by the Atlas cluster. | ||
// +optional | ||
IamAssumedRoleArn string `json:"iamAssumedRoleArn"` | ||
} |
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
Oops, something went wrong.