Skip to content
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

Add a backwards compatible layer for Azure creds #321

Merged
merged 1 commit into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package bio.terra.landingzone.common.utils;

import bio.terra.landingzone.db.LandingZoneDao;
import bio.terra.landingzone.library.AzureCredentialsProvider;
import bio.terra.landingzone.library.LandingZoneManagerProvider;
import bio.terra.landingzone.library.configuration.AzureCustomerUsageConfiguration;
import bio.terra.landingzone.library.configuration.LandingZoneProtectedDataConfiguration;
Expand All @@ -24,6 +25,7 @@ public class LandingZoneFlightBeanBag {
private final ObjectMapper objectMapper;
private final LandingZoneProtectedDataConfiguration landingZoneProtectedDataConfiguration;
private final AzureCustomerUsageConfiguration azureCustomerUsageConfiguration;
private final AzureCredentialsProvider azureCredentialsProvider;

@Lazy
@Autowired
Expand All @@ -36,6 +38,7 @@ public LandingZoneFlightBeanBag(
LandingZoneBillingProfileManagerService bpmService,
LandingZoneProtectedDataConfiguration landingZoneProtectedDataConfiguration,
AzureCustomerUsageConfiguration azureCustomerUsageConfiguration,
AzureCredentialsProvider azureCredentialsProvider,
ObjectMapper objectMapper) {
this.landingZoneService = landingZoneService;
this.landingZoneDao = landingZoneDao;
Expand All @@ -45,6 +48,7 @@ public LandingZoneFlightBeanBag(
this.bpmService = bpmService;
this.landingZoneProtectedDataConfiguration = landingZoneProtectedDataConfiguration;
this.azureCustomerUsageConfiguration = azureCustomerUsageConfiguration;
this.azureCredentialsProvider = azureCredentialsProvider;
this.objectMapper = objectMapper;
}

Expand Down Expand Up @@ -87,4 +91,8 @@ public LandingZoneProtectedDataConfiguration getLandingZoneProtectedDataConfigur
public AzureCustomerUsageConfiguration getAzureCustomerUsageConfiguration() {
return azureCustomerUsageConfiguration;
}

public AzureCredentialsProvider getAzureCredentialsProvider() {
return azureCredentialsProvider;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
package bio.terra.landingzone.library;

import bio.terra.landingzone.library.configuration.LandingZoneAzureConfiguration;
import com.azure.core.credential.TokenCredential;
import com.azure.identity.ClientSecretCredentialBuilder;
import com.azure.identity.DefaultAzureCredentialBuilder;
import java.util.Objects;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

/**
* This class will attempt to get Azure credentials, starting with our legacy spring configuration
* and falling back to the `DefaultAzureCredentialsBuilder`.
*
* <p>It is intended as a backwards compatibility layer for WSM as it does not wire up the
* credentials needed by DefaultAzureCredentialsBuilder in CI scenarios where landing zones are
* involved.
*
* <p>This class should be removed upon full de-amalgamation from WSM.
*/
@Component
public class AzureCredentialsProvider {

private final LandingZoneAzureConfiguration azureConfiguration;

@Autowired
public AzureCredentialsProvider(LandingZoneAzureConfiguration azureConfiguration) {
this.azureConfiguration = azureConfiguration;
}

public TokenCredential getTokenCredential() {
if (Objects.nonNull(azureConfiguration.getManagedAppTenantId())
&& Objects.nonNull(azureConfiguration.getManagedAppClientSecret())
&& Objects.nonNull(azureConfiguration.getManagedAppClientId())) {
return new ClientSecretCredentialBuilder()
.clientId(azureConfiguration.getManagedAppClientId())
.clientSecret(azureConfiguration.getManagedAppClientSecret())
.tenantId(azureConfiguration.getManagedAppTenantId())
.build();
}

return new DefaultAzureCredentialBuilder().build();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import com.azure.core.credential.TokenCredential;
import com.azure.core.management.AzureEnvironment;
import com.azure.core.management.profile.AzureProfile;
import com.azure.identity.DefaultAzureCredentialBuilder;
import com.azure.resourcemanager.AzureResourceManager;
import org.jetbrains.annotations.NotNull;
import org.springframework.beans.factory.annotation.Autowired;
Expand All @@ -15,11 +14,14 @@
@Component
public class LandingZoneManagerProvider {
private AzureCustomerUsageConfiguration azureCustomerUsageConfiguration;
private final AzureCredentialsProvider azureCredentialsProvider;

@Autowired
public LandingZoneManagerProvider(
AzureCustomerUsageConfiguration azureCustomerUsageConfiguration) {
AzureCustomerUsageConfiguration azureCustomerUsageConfiguration,
AzureCredentialsProvider azureCredentialsProvider) {
this.azureCustomerUsageConfiguration = azureCustomerUsageConfiguration;
this.azureCredentialsProvider = azureCredentialsProvider;
}

public LandingZoneManager createLandingZoneManager(LandingZoneTarget landingZoneTarget) {
Expand Down Expand Up @@ -47,6 +49,6 @@ public AzureResourceManager createAzureResourceManagerClient(
}

public TokenCredential buildTokenCredential() {
return new DefaultAzureCredentialBuilder().build();
return azureCredentialsProvider.getTokenCredential();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
package bio.terra.landingzone.library.configuration;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;

@Configuration
@ConfigurationProperties(prefix = "workspace.azure")
public class LandingZoneAzureConfiguration {
// Managed app authentication
private String managedAppClientId;
private String managedAppClientSecret;
private String managedAppTenantId;

public String getManagedAppClientId() {
return managedAppClientId;
}

public void setManagedAppClientId(String managedAppClientId) {
this.managedAppClientId = managedAppClientId;
}

public String getManagedAppClientSecret() {
return managedAppClientSecret;
}

public void setManagedAppClientSecret(String managedAppClientSecret) {
this.managedAppClientSecret = managedAppClientSecret;
}

public String getManagedAppTenantId() {
return managedAppTenantId;
}

public void setManagedAppTenantId(String managedAppTenantId) {
this.managedAppTenantId = managedAppTenantId;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import bio.terra.landingzone.common.utils.LandingZoneFlightBeanBag;
import bio.terra.landingzone.common.utils.RetryRules;
import bio.terra.landingzone.library.AzureCredentialsProvider;
import bio.terra.landingzone.library.configuration.AzureCustomerUsageConfiguration;
import bio.terra.landingzone.library.configuration.LandingZoneProtectedDataConfiguration;
import bio.terra.landingzone.library.landingzones.definition.ArmManagers;
Expand All @@ -22,7 +23,6 @@
import bio.terra.stairway.FlightMap;
import com.azure.core.management.AzureEnvironment;
import com.azure.core.management.profile.AzureProfile;
import com.azure.identity.DefaultAzureCredentialBuilder;
import java.util.UUID;

public class CreateLandingZoneResourcesFlight extends Flight {
Expand All @@ -33,6 +33,7 @@ public class CreateLandingZoneResourcesFlight extends Flight {
private final ResourceNameProvider resourceNameProvider;
private final ParametersResolver parametersResolver;
private final LandingZoneProtectedDataConfiguration landingZoneProtectedDataConfiguration;
private final AzureCredentialsProvider azureCredentialsProvider;

/**
* All subclasses must provide a constructor with this signature.
Expand All @@ -46,6 +47,8 @@ public CreateLandingZoneResourcesFlight(FlightMap inputParameters, Object applic
final LandingZoneFlightBeanBag flightBeanBag =
LandingZoneFlightBeanBag.getFromObject(applicationContext);

azureCredentialsProvider = flightBeanBag.getAzureCredentialsProvider();

landingZoneRequest =
inputParameters.get(
LandingZoneFlightMapKeys.LANDING_ZONE_CREATE_PARAMS, LandingZoneRequest.class);
Expand Down Expand Up @@ -93,7 +96,7 @@ private ArmManagers initializeArmManagers(
landingZoneTarget.azureTenantId(),
landingZoneTarget.azureSubscriptionId(),
AzureEnvironment.AZURE);
var tokenCredentials = new DefaultAzureCredentialBuilder().build();
var tokenCredentials = azureCredentialsProvider.getTokenCredential();
return LandingZoneManager.createArmManagers(
tokenCredentials, azureProfile, azureCustomerUsageConfiguration.getUsageAttribute());
}
Expand Down