-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
INTMDB-545: Update CloudProviderAccessService to support azure #508
Merged
Conversation
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
andreaangiolillo
changed the title
INTMDB-545: Updated
INTMDB-545: Update CloudProviderAccessService to support azure
Jul 26, 2023
@@ -29,7 +29,7 @@ type CloudProviderAccessService interface { | |||
ListRoles(context.Context, string) (*CloudProviderAccessRoles, *Response, error) | |||
GetRole(context.Context, string, string) (*CloudProviderAccessRole, *Response, error) | |||
CreateRole(context.Context, string, *CloudProviderAccessRoleRequest) (*CloudProviderAccessRole, *Response, error) | |||
AuthorizeRole(context.Context, string, string, *CloudProviderAuthorizationRequest) (*CloudProviderAccessRole, *Response, error) | |||
AuthorizeRole(context.Context, string, string, *CloudProviderAccessRoleRequest) (*CloudProviderAccessRole, *Response, error) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
breaking change
@@ -40,7 +40,8 @@ var _ CloudProviderAccessService = &CloudProviderAccessServiceOp{} | |||
|
|||
// CloudProviderAccessRoles an array of awsIamRoles objects. | |||
type CloudProviderAccessRoles struct { | |||
AWSIAMRoles []CloudProviderAccessRole `json:"awsIamRoles,omitempty"` // Unique identifier of AWS security group in this access list entry. | |||
AWSIAMRoles []CloudProviderAccessRole `json:"awsIamRoles,omitempty"` // Unique identifier of AWS security group in this access list entry. | |||
AzureServicePrincipals []CloudProviderAccessRole `json:"azureServicePrincipals,omitempty"` // Unique identifier of Azure security group in this access list entry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Example of a response from the get
{
"awsIamRoles": [
{
"atlasAWSAccountArn": "arn:aws:iam::299602853325:root",
"atlasAssumedRoleExternalId": "8924b876-7ed6-44bd-bb34-707263a27a6f",
"authorizedDate": "2023-03-24T17:12:15Z",
"createdDate": "2023-03-24T17:05:37Z",
"featureUsages": [],
"iamAssumedRoleArn": "arn:aws:iam::358363220050:role/mongodb-test-cloud-backup-export-bucket-role-EU_WEST_1_test",
"providerName": "AWS",
"roleId": "641dd86151ed5c67923984f1"
}
],
"azureServicePrincipals": [
{
"_id": "64bf8b5d199f4e4af9106580",
"atlasAzureAppId": "6f2deb0d-be72-4524-a403-df531868bac0",
"createdDate": "2023-07-25T08:44:13Z",
"featureUsages": [],
"lastUpdatedDate": "2023-07-25T08:44:13Z",
"providerName": "AZURE",
"servicePrincipalId": "48f1d2a6-d0e9-482a-83a4-b8dd7dddc5c1",
"tenantId": "91405384-d71e-47f5-92dd-759e272cdc1c"
}
]
}
wtrocki
approved these changes
Jul 26, 2023
Aligns with the sdkv2. LGTM |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Ticket: INTMDB-545
This PR updates
CloudProviderAccessService
to support Azure.Type of change:
Required Checklist:
make fmt
and formatted my codeFurther comments