SpringCloudApp

class SpringCloudApp : KotlinCustomResource

Manage an Azure Spring Cloud Application.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.appplatform.SpringCloudService;
import com.pulumi.azure.appplatform.SpringCloudServiceArgs;
import com.pulumi.azure.appplatform.SpringCloudApp;
import com.pulumi.azure.appplatform.SpringCloudAppArgs;
import com.pulumi.azure.appplatform.inputs.SpringCloudAppIdentityArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("West Europe")
.build());
var exampleSpringCloudService = new SpringCloudService("exampleSpringCloudService", SpringCloudServiceArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.location(exampleResourceGroup.location())
.build());
var exampleSpringCloudApp = new SpringCloudApp("exampleSpringCloudApp", SpringCloudAppArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.serviceName(exampleSpringCloudService.name())
.identity(SpringCloudAppIdentityArgs.builder()
.type("SystemAssigned")
.build())
.build());
}
}

Import

Spring Cloud Application can be imported using the resource id, e.g.

$ pulumi import azure:appplatform/springCloudApp:SpringCloudApp example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.AppPlatform/spring/myservice/apps/myapp

Properties

Link copied to clipboard
val addonJson: Output<String>

A JSON object that contains the addon configurations of the Spring Cloud Service.

Link copied to clipboard

A custom_persistent_disk block as defined below.

Link copied to clipboard
val fqdn: Output<String>

The Fully Qualified DNS Name of the Spring Application in the service.

Link copied to clipboard
val httpsOnly: Output<Boolean>?

Is only HTTPS allowed? Defaults to false.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

An identity block as defined below.

Link copied to clipboard

An ingress_settings block as defined below.

Link copied to clipboard
val isPublic: Output<Boolean>?

Does the Spring Cloud Application have public endpoint? Defaults to false.

Link copied to clipboard
val name: Output<String>

Specifies the name of the Spring Cloud Application. Changing this forces a new resource to be created.

Link copied to clipboard

An persistent_disk block as defined below.

Link copied to clipboard

Should the App in vnet injection instance exposes endpoint which could be accessed from Internet?

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Specifies the name of the resource group in which to create the Spring Cloud Application. Changing this forces a new resource to be created.

Link copied to clipboard
val serviceName: Output<String>

Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.

Link copied to clipboard
val tlsEnabled: Output<Boolean>?

Is End to End TLS Enabled? Defaults to false.

Link copied to clipboard
val url: Output<String>

The public endpoint of the Spring Cloud Application.

Link copied to clipboard
val urn: Output<String>