Skip to main content

Create Azure Relay

In this section, we will demonstrate how you can create a Relay instance in Microsoft Azure using Fractal Cloud.

Relay SDK

AzureResourceGroup azureResourceGroup = AzureResourceGroup
.builder()
.withName("rg-relay")
.withRegion(EUROPE_WEST)
.build();

AzureRelay relay = AzureRelay.builder()
.withId("relay")
.withName("relay")
.withRegion(AzureRegion.EUROPE_WEST)
.withAzureResourceGroup(azureResourceGroup)
.build();