azure-native.app.ConnectedEnvironment
Explore with Pulumi AI
An environment for Kubernetes cluster specialized for web workloads by Azure App Service Azure REST API version: 2022-10-01.
Other available API versions: 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01.
Example Usage
Create kube environments
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var connectedEnvironment = new AzureNative.App.ConnectedEnvironment("connectedEnvironment", new()
{
ConnectedEnvironmentName = "testenv",
CustomDomainConfiguration = new AzureNative.App.Inputs.CustomDomainConfigurationArgs
{
CertificatePassword = "private key password",
CertificateValue = "Y2VydA==",
DnsSuffix = "www.my-name.com",
},
DaprAIConnectionString = "InstrumentationKey=00000000-0000-0000-0000-000000000000;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/",
ExtendedLocation = new AzureNative.App.Inputs.ExtendedLocationArgs
{
Name = "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation",
Type = AzureNative.App.ExtendedLocationTypes.CustomLocation,
},
Location = "East US",
ResourceGroupName = "examplerg",
StaticIp = "1.2.3.4",
});
});
package main
import (
app "github.com/pulumi/pulumi-azure-native-sdk/app/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := app.NewConnectedEnvironment(ctx, "connectedEnvironment", &app.ConnectedEnvironmentArgs{
ConnectedEnvironmentName: pulumi.String("testenv"),
CustomDomainConfiguration: &app.CustomDomainConfigurationArgs{
CertificatePassword: pulumi.String("private key password"),
CertificateValue: pulumi.String("Y2VydA=="),
DnsSuffix: pulumi.String("www.my-name.com"),
},
DaprAIConnectionString: pulumi.String("InstrumentationKey=00000000-0000-0000-0000-000000000000;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/"),
ExtendedLocation: &app.ExtendedLocationArgs{
Name: pulumi.String("/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation"),
Type: pulumi.String(app.ExtendedLocationTypesCustomLocation),
},
Location: pulumi.String("East US"),
ResourceGroupName: pulumi.String("examplerg"),
StaticIp: pulumi.String("1.2.3.4"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.app.ConnectedEnvironment;
import com.pulumi.azurenative.app.ConnectedEnvironmentArgs;
import com.pulumi.azurenative.app.inputs.CustomDomainConfigurationArgs;
import com.pulumi.azurenative.app.inputs.ExtendedLocationArgs;
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 connectedEnvironment = new ConnectedEnvironment("connectedEnvironment", ConnectedEnvironmentArgs.builder()
.connectedEnvironmentName("testenv")
.customDomainConfiguration(CustomDomainConfigurationArgs.builder()
.certificatePassword("private key password")
.certificateValue("Y2VydA==")
.dnsSuffix("www.my-name.com")
.build())
.daprAIConnectionString("InstrumentationKey=00000000-0000-0000-0000-000000000000;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/")
.extendedLocation(ExtendedLocationArgs.builder()
.name("/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation")
.type("CustomLocation")
.build())
.location("East US")
.resourceGroupName("examplerg")
.staticIp("1.2.3.4")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
connected_environment = azure_native.app.ConnectedEnvironment("connectedEnvironment",
connected_environment_name="testenv",
custom_domain_configuration={
"certificate_password": "private key password",
"certificate_value": "Y2VydA==",
"dns_suffix": "www.my-name.com",
},
dapr_ai_connection_string="InstrumentationKey=00000000-0000-0000-0000-000000000000;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/",
extended_location={
"name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation",
"type": azure_native.app.ExtendedLocationTypes.CUSTOM_LOCATION,
},
location="East US",
resource_group_name="examplerg",
static_ip="1.2.3.4")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const connectedEnvironment = new azure_native.app.ConnectedEnvironment("connectedEnvironment", {
connectedEnvironmentName: "testenv",
customDomainConfiguration: {
certificatePassword: "private key password",
certificateValue: "Y2VydA==",
dnsSuffix: "www.my-name.com",
},
daprAIConnectionString: "InstrumentationKey=00000000-0000-0000-0000-000000000000;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/",
extendedLocation: {
name: "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation",
type: azure_native.app.ExtendedLocationTypes.CustomLocation,
},
location: "East US",
resourceGroupName: "examplerg",
staticIp: "1.2.3.4",
});
resources:
connectedEnvironment:
type: azure-native:app:ConnectedEnvironment
properties:
connectedEnvironmentName: testenv
customDomainConfiguration:
certificatePassword: private key password
certificateValue: Y2VydA==
dnsSuffix: www.my-name.com
daprAIConnectionString: InstrumentationKey=00000000-0000-0000-0000-000000000000;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/
extendedLocation:
name: /subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation
type: CustomLocation
location: East US
resourceGroupName: examplerg
staticIp: 1.2.3.4
Create ConnectedEnvironment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ConnectedEnvironment(name: string, args: ConnectedEnvironmentArgs, opts?: CustomResourceOptions);
@overload
def ConnectedEnvironment(resource_name: str,
args: ConnectedEnvironmentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ConnectedEnvironment(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
connected_environment_name: Optional[str] = None,
custom_domain_configuration: Optional[CustomDomainConfigurationArgs] = None,
dapr_ai_connection_string: Optional[str] = None,
extended_location: Optional[ExtendedLocationArgs] = None,
location: Optional[str] = None,
static_ip: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewConnectedEnvironment(ctx *Context, name string, args ConnectedEnvironmentArgs, opts ...ResourceOption) (*ConnectedEnvironment, error)
public ConnectedEnvironment(string name, ConnectedEnvironmentArgs args, CustomResourceOptions? opts = null)
public ConnectedEnvironment(String name, ConnectedEnvironmentArgs args)
public ConnectedEnvironment(String name, ConnectedEnvironmentArgs args, CustomResourceOptions options)
type: azure-native:app:ConnectedEnvironment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ConnectedEnvironmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ConnectedEnvironmentArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ConnectedEnvironmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConnectedEnvironmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConnectedEnvironmentArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var connectedEnvironmentResource = new AzureNative.App.ConnectedEnvironment("connectedEnvironmentResource", new()
{
ResourceGroupName = "string",
ConnectedEnvironmentName = "string",
CustomDomainConfiguration = new AzureNative.App.Inputs.CustomDomainConfigurationArgs
{
CertificatePassword = "string",
CertificateValue = "string",
DnsSuffix = "string",
},
DaprAIConnectionString = "string",
ExtendedLocation = new AzureNative.App.Inputs.ExtendedLocationArgs
{
Name = "string",
Type = "string",
},
Location = "string",
StaticIp = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := app.NewConnectedEnvironment(ctx, "connectedEnvironmentResource", &app.ConnectedEnvironmentArgs{
ResourceGroupName: pulumi.String("string"),
ConnectedEnvironmentName: pulumi.String("string"),
CustomDomainConfiguration: &app.CustomDomainConfigurationArgs{
CertificatePassword: pulumi.String("string"),
CertificateValue: pulumi.String("string"),
DnsSuffix: pulumi.String("string"),
},
DaprAIConnectionString: pulumi.String("string"),
ExtendedLocation: &app.ExtendedLocationArgs{
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
Location: pulumi.String("string"),
StaticIp: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var connectedEnvironmentResource = new ConnectedEnvironment("connectedEnvironmentResource", ConnectedEnvironmentArgs.builder()
.resourceGroupName("string")
.connectedEnvironmentName("string")
.customDomainConfiguration(CustomDomainConfigurationArgs.builder()
.certificatePassword("string")
.certificateValue("string")
.dnsSuffix("string")
.build())
.daprAIConnectionString("string")
.extendedLocation(ExtendedLocationArgs.builder()
.name("string")
.type("string")
.build())
.location("string")
.staticIp("string")
.tags(Map.of("string", "string"))
.build());
connected_environment_resource = azure_native.app.ConnectedEnvironment("connectedEnvironmentResource",
resource_group_name="string",
connected_environment_name="string",
custom_domain_configuration={
"certificatePassword": "string",
"certificateValue": "string",
"dnsSuffix": "string",
},
dapr_ai_connection_string="string",
extended_location={
"name": "string",
"type": "string",
},
location="string",
static_ip="string",
tags={
"string": "string",
})
const connectedEnvironmentResource = new azure_native.app.ConnectedEnvironment("connectedEnvironmentResource", {
resourceGroupName: "string",
connectedEnvironmentName: "string",
customDomainConfiguration: {
certificatePassword: "string",
certificateValue: "string",
dnsSuffix: "string",
},
daprAIConnectionString: "string",
extendedLocation: {
name: "string",
type: "string",
},
location: "string",
staticIp: "string",
tags: {
string: "string",
},
});
type: azure-native:app:ConnectedEnvironment
properties:
connectedEnvironmentName: string
customDomainConfiguration:
certificatePassword: string
certificateValue: string
dnsSuffix: string
daprAIConnectionString: string
extendedLocation:
name: string
type: string
location: string
resourceGroupName: string
staticIp: string
tags:
string: string
ConnectedEnvironment Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ConnectedEnvironment resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Connected
Environment stringName - Name of the connectedEnvironment.
- Custom
Domain Pulumi.Configuration Azure Native. App. Inputs. Custom Domain Configuration - Custom domain configuration for the environment
- Dapr
AIConnection stringString - Application Insights connection string used by Dapr to export Service to Service communication telemetry
- Extended
Location Pulumi.Azure Native. App. Inputs. Extended Location - The complex type of the extended location.
- Location string
- The geo-location where the resource lives
- Static
Ip string - Static IP of the connectedEnvironment
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Connected
Environment stringName - Name of the connectedEnvironment.
- Custom
Domain CustomConfiguration Domain Configuration Args - Custom domain configuration for the environment
- Dapr
AIConnection stringString - Application Insights connection string used by Dapr to export Service to Service communication telemetry
- Extended
Location ExtendedLocation Args - The complex type of the extended location.
- Location string
- The geo-location where the resource lives
- Static
Ip string - Static IP of the connectedEnvironment
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- connected
Environment StringName - Name of the connectedEnvironment.
- custom
Domain CustomConfiguration Domain Configuration - Custom domain configuration for the environment
- dapr
AIConnection StringString - Application Insights connection string used by Dapr to export Service to Service communication telemetry
- extended
Location ExtendedLocation - The complex type of the extended location.
- location String
- The geo-location where the resource lives
- static
Ip String - Static IP of the connectedEnvironment
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- connected
Environment stringName - Name of the connectedEnvironment.
- custom
Domain CustomConfiguration Domain Configuration - Custom domain configuration for the environment
- dapr
AIConnection stringString - Application Insights connection string used by Dapr to export Service to Service communication telemetry
- extended
Location ExtendedLocation - The complex type of the extended location.
- location string
- The geo-location where the resource lives
- static
Ip string - Static IP of the connectedEnvironment
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- connected_
environment_ strname - Name of the connectedEnvironment.
- custom_
domain_ Customconfiguration Domain Configuration Args - Custom domain configuration for the environment
- dapr_
ai_ strconnection_ string - Application Insights connection string used by Dapr to export Service to Service communication telemetry
- extended_
location ExtendedLocation Args - The complex type of the extended location.
- location str
- The geo-location where the resource lives
- static_
ip str - Static IP of the connectedEnvironment
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- connected
Environment StringName - Name of the connectedEnvironment.
- custom
Domain Property MapConfiguration - Custom domain configuration for the environment
- dapr
AIConnection StringString - Application Insights connection string used by Dapr to export Service to Service communication telemetry
- extended
Location Property Map - The complex type of the extended location.
- location String
- The geo-location where the resource lives
- static
Ip String - Static IP of the connectedEnvironment
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the ConnectedEnvironment resource produces the following output properties:
- Default
Domain string - Default Domain Name for the cluster
- Deployment
Errors string - Any errors that occurred during deployment or deployment validation
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning state of the Kubernetes Environment.
- System
Data Pulumi.Azure Native. App. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Default
Domain string - Default Domain Name for the cluster
- Deployment
Errors string - Any errors that occurred during deployment or deployment validation
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning state of the Kubernetes Environment.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- default
Domain String - Default Domain Name for the cluster
- deployment
Errors String - Any errors that occurred during deployment or deployment validation
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Provisioning state of the Kubernetes Environment.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- default
Domain string - Default Domain Name for the cluster
- deployment
Errors string - Any errors that occurred during deployment or deployment validation
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - Provisioning state of the Kubernetes Environment.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- default_
domain str - Default Domain Name for the cluster
- deployment_
errors str - Any errors that occurred during deployment or deployment validation
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_
state str - Provisioning state of the Kubernetes Environment.
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- default
Domain String - Default Domain Name for the cluster
- deployment
Errors String - Any errors that occurred during deployment or deployment validation
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Provisioning state of the Kubernetes Environment.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
CustomDomainConfiguration, CustomDomainConfigurationArgs
- Certificate
Password string - Certificate password
- Certificate
Value string - PFX or PEM blob
- Dns
Suffix string - Dns suffix for the environment domain
- Certificate
Password string - Certificate password
- Certificate
Value string - PFX or PEM blob
- Dns
Suffix string - Dns suffix for the environment domain
- certificate
Password String - Certificate password
- certificate
Value String - PFX or PEM blob
- dns
Suffix String - Dns suffix for the environment domain
- certificate
Password string - Certificate password
- certificate
Value string - PFX or PEM blob
- dns
Suffix string - Dns suffix for the environment domain
- certificate_
password str - Certificate password
- certificate_
value str - PFX or PEM blob
- dns_
suffix str - Dns suffix for the environment domain
- certificate
Password String - Certificate password
- certificate
Value String - PFX or PEM blob
- dns
Suffix String - Dns suffix for the environment domain
CustomDomainConfigurationResponse, CustomDomainConfigurationResponseArgs
- Custom
Domain stringVerification Id - Id used to verify domain name ownership
- Expiration
Date string - Certificate expiration date.
- Subject
Name string - Subject name of the certificate.
- Thumbprint string
- Certificate thumbprint.
- Certificate
Password string - Certificate password
- Certificate
Value string - PFX or PEM blob
- Dns
Suffix string - Dns suffix for the environment domain
- Custom
Domain stringVerification Id - Id used to verify domain name ownership
- Expiration
Date string - Certificate expiration date.
- Subject
Name string - Subject name of the certificate.
- Thumbprint string
- Certificate thumbprint.
- Certificate
Password string - Certificate password
- Certificate
Value string - PFX or PEM blob
- Dns
Suffix string - Dns suffix for the environment domain
- custom
Domain StringVerification Id - Id used to verify domain name ownership
- expiration
Date String - Certificate expiration date.
- subject
Name String - Subject name of the certificate.
- thumbprint String
- Certificate thumbprint.
- certificate
Password String - Certificate password
- certificate
Value String - PFX or PEM blob
- dns
Suffix String - Dns suffix for the environment domain
- custom
Domain stringVerification Id - Id used to verify domain name ownership
- expiration
Date string - Certificate expiration date.
- subject
Name string - Subject name of the certificate.
- thumbprint string
- Certificate thumbprint.
- certificate
Password string - Certificate password
- certificate
Value string - PFX or PEM blob
- dns
Suffix string - Dns suffix for the environment domain
- custom_
domain_ strverification_ id - Id used to verify domain name ownership
- expiration_
date str - Certificate expiration date.
- subject_
name str - Subject name of the certificate.
- thumbprint str
- Certificate thumbprint.
- certificate_
password str - Certificate password
- certificate_
value str - PFX or PEM blob
- dns_
suffix str - Dns suffix for the environment domain
- custom
Domain StringVerification Id - Id used to verify domain name ownership
- expiration
Date String - Certificate expiration date.
- subject
Name String - Subject name of the certificate.
- thumbprint String
- Certificate thumbprint.
- certificate
Password String - Certificate password
- certificate
Value String - PFX or PEM blob
- dns
Suffix String - Dns suffix for the environment domain
ExtendedLocation, ExtendedLocationArgs
- Name string
- The name of the extended location.
- Type
string | Pulumi.
Azure Native. App. Extended Location Types - The type of the extended location.
- Name string
- The name of the extended location.
- Type
string | Extended
Location Types - The type of the extended location.
- name String
- The name of the extended location.
- type
String | Extended
Location Types - The type of the extended location.
- name string
- The name of the extended location.
- type
string | Extended
Location Types - The type of the extended location.
- name str
- The name of the extended location.
- type
str | Extended
Location Types - The type of the extended location.
- name String
- The name of the extended location.
- type
String | "Custom
Location" - The type of the extended location.
ExtendedLocationResponse, ExtendedLocationResponseArgs
ExtendedLocationTypes, ExtendedLocationTypesArgs
- Custom
Location - CustomLocation
- Extended
Location Types Custom Location - CustomLocation
- Custom
Location - CustomLocation
- Custom
Location - CustomLocation
- CUSTOM_LOCATION
- CustomLocation
- "Custom
Location" - CustomLocation
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:app:ConnectedEnvironment testenv /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.App/connectedEnvironments/{connectedEnvironmentName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0